gitextract_egipgnrv/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ ├── config.yml │ │ ├── enhancement.md │ │ └── question.md │ ├── stale.yml │ └── workflows/ │ ├── build_and_test.yml │ ├── releases.yml │ ├── semantic-pr.yml │ └── spell-check-lint.yml ├── .gitignore ├── .glf ├── .mocharc.yml ├── .nycrc ├── .prettierignore ├── .prettierrc.js ├── .versionrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-THIRD-PARTY.txt ├── README.md ├── UPGRADE.md ├── VERSIONS.md ├── bin/ │ ├── run │ └── run.cmd ├── docs/ │ ├── Bulk actions/ │ │ ├── README.md │ │ ├── collaborations/ │ │ │ ├── collaborations-add.csv │ │ │ ├── collaborations-delete.csv │ │ │ ├── collaborations-update.csv │ │ │ └── collaborations.md │ │ ├── files/ │ │ │ ├── files-download.csv │ │ │ ├── files-update.csv │ │ │ ├── files-upload.csv │ │ │ └── files.md │ │ ├── folders/ │ │ │ ├── folders-create.csv │ │ │ ├── folders-metadata-add.csv │ │ │ ├── folders-update.csv │ │ │ └── folders.md │ │ ├── groups/ │ │ │ ├── groups-create.csv │ │ │ ├── groups-memberships-add.csv │ │ │ └── groups.md │ │ ├── metadata-templates/ │ │ │ ├── metadata-templates-cascade.csv │ │ │ ├── metadata-templates-create.csv │ │ │ └── metadata-templates.md │ │ ├── shared-links/ │ │ │ ├── shared-links-delete.csv │ │ │ └── shared-links.md │ │ ├── sign-requests/ │ │ │ ├── sign-requests-create.csv │ │ │ └── sign-requests.md │ │ ├── users/ │ │ │ ├── create-users.csv │ │ │ ├── transfer-content.csv │ │ │ ├── update-users.csv │ │ │ └── users.md │ │ └── webhooks/ │ │ ├── webhooks-delete.csv │ │ └── webhooks.md │ ├── ai.md │ ├── authentication.md │ ├── autocomplete.md │ ├── collaboration-allowlist.md │ ├── collaboration-whitelist.md │ ├── collaborations.md │ ├── collections.md │ ├── comments.md │ ├── configuration.md │ ├── configure.md │ ├── device-pins.md │ ├── events.md │ ├── file-requests.md │ ├── files.md │ ├── folders.md │ ├── groups.md │ ├── help.md │ ├── hubs.md │ ├── integration-mappings.md │ ├── legal-hold-policies.md │ ├── login.md │ ├── logout.md │ ├── metadata-cascade-policies.md │ ├── metadata-query.md │ ├── metadata-templates.md │ ├── oss.md │ ├── recent-items.md │ ├── request.md │ ├── retention-policies.md │ ├── search.md │ ├── shared-links.md │ ├── sign-requests.md │ ├── sign-templates.md │ ├── storage-policies.md │ ├── tasks.md │ ├── terms-of-service.md │ ├── tokens.md │ ├── trash.md │ ├── update.md │ ├── users.md │ ├── version.md │ ├── watermarking.md │ ├── web-links.md │ └── webhooks.md ├── eslint.config.cjs ├── examples/ │ ├── Inactive Users Report/ │ │ ├── InactiveUsers.csv │ │ ├── Inactive_Users_Report.ps1 │ │ └── README.md │ ├── Integration Mappings/ │ │ ├── Integration-mappings.ps1 │ │ ├── README.md │ │ ├── mapping_create_example.csv │ │ └── mapping_update_example.csv │ ├── Mass Groups & Collaborations Update/ │ │ ├── Collaborations_Creation.csv │ │ ├── Mass_Groups_Collabs_Update.ps1 │ │ ├── README.md │ │ └── User_Group_Addition.csv │ ├── Mass Update User Zones/ │ │ ├── Mass_Update_User_Zones.ps1 │ │ ├── README.md │ │ └── User_Zones_Update.csv │ ├── Metadata Extraction/ │ │ ├── Metadata-extraction.ps1 │ │ └── README.md │ ├── README.md │ ├── User Creation & Provisioning/ │ │ ├── Employees_1.csv │ │ ├── Employees_10.csv │ │ ├── Employees_5.csv │ │ ├── Folder_Structure.json │ │ ├── README.md │ │ └── Users_Create_Provision.ps1 │ └── User Deprovisioning/ │ ├── Employees_to_delete.csv │ ├── README.md │ └── Users_Deprovision.ps1 ├── package.json ├── src/ │ ├── box-command.js │ ├── cli-error.js │ ├── commands/ │ │ ├── .eslintrc.yml │ │ ├── ai/ │ │ │ ├── ask.js │ │ │ ├── extract-structured.js │ │ │ ├── extract.js │ │ │ └── text-gen.js │ │ ├── collaboration-allowlist/ │ │ │ ├── add.js │ │ │ ├── delete.js │ │ │ ├── exemptions/ │ │ │ │ ├── create.js │ │ │ │ ├── delete.js │ │ │ │ ├── get.js │ │ │ │ └── index.js │ │ │ ├── get.js │ │ │ └── index.js │ │ ├── collaboration-whitelist/ │ │ │ └── index.js │ │ ├── collaborations/ │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── pending.js │ │ │ └── update.js │ │ ├── collections/ │ │ │ ├── add.js │ │ │ ├── index.js │ │ │ ├── items.js │ │ │ └── remove.js │ │ ├── comments/ │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── reply.js │ │ │ └── update.js │ │ ├── configure/ │ │ │ ├── environments/ │ │ │ │ ├── add.js │ │ │ │ ├── delete.js │ │ │ │ ├── get.js │ │ │ │ ├── set-current.js │ │ │ │ ├── switch-user.js │ │ │ │ └── update.js │ │ │ └── settings.js │ │ ├── device-pins/ │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── index.js │ │ ├── events/ │ │ │ ├── index.js │ │ │ └── poll.js │ │ ├── file-requests/ │ │ │ ├── copy.js │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── update.js │ │ ├── files/ │ │ │ ├── collaborations/ │ │ │ │ ├── add.js │ │ │ │ └── index.js │ │ │ ├── comments.js │ │ │ ├── copy.js │ │ │ ├── delete.js │ │ │ ├── download.js │ │ │ ├── get.js │ │ │ ├── lock.js │ │ │ ├── metadata/ │ │ │ │ ├── add.js │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ ├── remove.js │ │ │ │ ├── set.js │ │ │ │ └── update.js │ │ │ ├── move.js │ │ │ ├── rename.js │ │ │ ├── share.js │ │ │ ├── tasks/ │ │ │ │ └── index.js │ │ │ ├── unlock.js │ │ │ ├── unshare.js │ │ │ ├── update.js │ │ │ ├── upload.js │ │ │ ├── versions/ │ │ │ │ ├── delete.js │ │ │ │ ├── download.js │ │ │ │ ├── index.js │ │ │ │ ├── promote.js │ │ │ │ └── upload.js │ │ │ └── zip.js │ │ ├── folders/ │ │ │ ├── collaborations/ │ │ │ │ ├── add.js │ │ │ │ └── index.js │ │ │ ├── copy.js │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── download.js │ │ │ ├── get.js │ │ │ ├── items.js │ │ │ ├── locks/ │ │ │ │ ├── create.js │ │ │ │ ├── delete.js │ │ │ │ └── index.js │ │ │ ├── metadata/ │ │ │ │ ├── add.js │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ ├── remove.js │ │ │ │ ├── set.js │ │ │ │ └── update.js │ │ │ ├── move.js │ │ │ ├── rename.js │ │ │ ├── share.js │ │ │ ├── unshare.js │ │ │ ├── update.js │ │ │ └── upload.js │ │ ├── groups/ │ │ │ ├── collaborations.js │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ ├── memberships/ │ │ │ │ ├── add.js │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ ├── remove.js │ │ │ │ └── update.js │ │ │ ├── terminate-session.js │ │ │ └── update.js │ │ ├── hubs/ │ │ │ ├── collaborations/ │ │ │ │ ├── create.js │ │ │ │ ├── delete.js │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ └── update.js │ │ │ ├── copy.js │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── document/ │ │ │ │ ├── blocks.js │ │ │ │ └── pages.js │ │ │ ├── enterprise.js │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ ├── items/ │ │ │ │ ├── index.js │ │ │ │ └── manage.js │ │ │ └── update.js │ │ ├── integration-mappings/ │ │ │ ├── slack/ │ │ │ │ ├── create.js │ │ │ │ ├── delete.js │ │ │ │ ├── index.js │ │ │ │ └── update.js │ │ │ └── teams/ │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── legal-hold-policies/ │ │ │ ├── assign.js │ │ │ ├── assignments/ │ │ │ │ ├── delete.js │ │ │ │ ├── get.js │ │ │ │ └── index.js │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── file-version-holds/ │ │ │ │ ├── get.js │ │ │ │ └── index.js │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── login.js │ │ ├── logout.js │ │ ├── metadata-cascade-policies/ │ │ │ ├── delete.js │ │ │ ├── force-apply.js │ │ │ ├── get.js │ │ │ └── index.js │ │ ├── metadata-query.js │ │ ├── metadata-templates/ │ │ │ ├── cascade.js │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── oss.js │ │ ├── recent-items.js │ │ ├── request.js │ │ ├── retention-policies/ │ │ │ ├── assign.js │ │ │ ├── assignments/ │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ └── remove.js │ │ │ ├── create.js │ │ │ ├── file-version-retentions/ │ │ │ │ ├── get.js │ │ │ │ └── index.js │ │ │ ├── file-versions-under-retention/ │ │ │ │ └── get.js │ │ │ ├── files-under-retention/ │ │ │ │ └── get.js │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ └── update.js │ │ ├── search.js │ │ ├── shared-links/ │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ └── get.js │ │ ├── sign-requests/ │ │ │ ├── cancel.js │ │ │ ├── create.js │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ └── resend.js │ │ ├── sign-templates/ │ │ │ ├── get.js │ │ │ └── index.js │ │ ├── storage-policies/ │ │ │ ├── assign.js │ │ │ ├── assignments/ │ │ │ │ ├── get.js │ │ │ │ ├── lookup.js │ │ │ │ └── remove.js │ │ │ ├── get.js │ │ │ └── index.js │ │ ├── tasks/ │ │ │ ├── assign.js │ │ │ ├── assignments/ │ │ │ │ ├── delete.js │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ └── update.js │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ └── update.js │ │ ├── terms-of-service/ │ │ │ ├── create.js │ │ │ ├── get-user-status.js │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ ├── set-user-status.js │ │ │ └── update.js │ │ ├── tokens/ │ │ │ ├── exchange.js │ │ │ ├── get.js │ │ │ └── revoke.js │ │ ├── trash/ │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── index.js │ │ │ └── restore.js │ │ ├── update.js │ │ ├── users/ │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── email-aliases/ │ │ │ │ ├── add.js │ │ │ │ ├── index.js │ │ │ │ └── remove.js │ │ │ ├── get.js │ │ │ ├── groups.js │ │ │ ├── index.js │ │ │ ├── invite.js │ │ │ ├── search.js │ │ │ ├── terminate-session.js │ │ │ ├── transfer-content.js │ │ │ └── update.js │ │ ├── watermarking/ │ │ │ ├── apply.js │ │ │ ├── get.js │ │ │ └── remove.js │ │ ├── web-links/ │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── move.js │ │ │ └── update.js │ │ └── webhooks/ │ │ ├── create.js │ │ ├── delete.js │ │ ├── get.js │ │ ├── index.js │ │ └── update.js │ ├── debug.js │ ├── github-updater.js │ ├── hooks/ │ │ └── init/ │ │ └── verbose.js │ ├── index.js │ ├── inquirer.js │ ├── logged-in.html │ ├── login-helper.js │ ├── modules/ │ │ ├── collaboration.js │ │ ├── shared-links.js │ │ ├── upload.js │ │ └── user.js │ ├── pagination-utils.js │ ├── pkce-support.js │ ├── secure-storage.js │ ├── token-cache.js │ └── util.js ├── test/ │ ├── .eslintrc.yml │ ├── box-command.test.js │ ├── commands/ │ │ ├── ai.test.js │ │ ├── bulk.test.js │ │ ├── collaboration-allowlist.test.js │ │ ├── collaborations.test.js │ │ ├── collections.test.js │ │ ├── comments.test.js │ │ ├── configure-environments.test.js │ │ ├── device-pins.test.js │ │ ├── events.test.js │ │ ├── file-requests.test.js │ │ ├── files.test.js │ │ ├── folders.test.js │ │ ├── groups.test.js │ │ ├── hubs.test.js │ │ ├── integration-mappings.test.js │ │ ├── legal-hold-policies.test.js │ │ ├── login.test.js │ │ ├── logout.test.js │ │ ├── metadata-cascade-policies.test.js │ │ ├── metadata-query.test.js │ │ ├── metadata-templates.test.js │ │ ├── recent-items.test.js │ │ ├── request.test.js │ │ ├── retention-policies.test.js │ │ ├── search.test.js │ │ ├── shared-links.test.js │ │ ├── sign-requests.test.js │ │ ├── sign-templates.test.js │ │ ├── storage-policies.test.js │ │ ├── tasks.test.js │ │ ├── terms-of-service.test.js │ │ ├── tokens.test.js │ │ ├── trash.test.js │ │ ├── update.test.js │ │ ├── users.test.js │ │ ├── watermarking.test.js │ │ ├── web-links.test.js │ │ └── webhooks.test.js │ ├── fixtures/ │ │ ├── ai/ │ │ │ ├── post_ai_ask_response.json │ │ │ ├── post_ai_ask_response_yaml.txt │ │ │ ├── post_ai_extract_response.json │ │ │ ├── post_ai_extract_response_yaml.txt │ │ │ ├── post_ai_extract_structured_response.json │ │ │ ├── post_ai_extract_structured_response_yaml.txt │ │ │ ├── post_ai_text_gen_response.json │ │ │ └── post_ai_text_gen_response_yaml.txt │ │ ├── bulk/ │ │ │ ├── bulk_files_tasks_list_input.json │ │ │ ├── folder_collab_input.csv │ │ │ ├── folder_collab_input_no_header.csv │ │ │ ├── folder_collab_input_no_header_multiple.csv │ │ │ ├── input.csv │ │ │ ├── input.txt │ │ │ ├── input_array.json │ │ │ ├── input_asuser_flag_multiple.csv │ │ │ ├── input_asuser_flag_single.csv │ │ │ ├── input_bogus_keys.csv │ │ │ ├── input_bogus_keys.json │ │ │ ├── input_entries.json │ │ │ ├── input_groups_terminate_sessions.csv │ │ │ ├── input_invalid.json │ │ │ ├── input_key_casing.csv │ │ │ ├── input_key_casing.json │ │ │ ├── input_manual_request_folder_lock.csv │ │ │ ├── input_metadata_update.csv │ │ │ ├── input_metadata_update.json │ │ │ ├── input_multiple_same_flag.csv │ │ │ ├── input_multiple_same_flag.json │ │ │ ├── input_nested_keys.json │ │ │ ├── input_object.json │ │ │ ├── input_sign_request_create.csv │ │ │ ├── input_users_terminate_sessions.csv │ │ │ ├── input_with_empty_string.csv │ │ │ ├── post_collaborations_csv.csv │ │ │ ├── post_collaborations_table.txt │ │ │ ├── post_collaborations_user_1.json │ │ │ ├── post_collaborations_user_2.json │ │ │ ├── post_collaborations_user_3.json │ │ │ ├── post_folders_lock.json │ │ │ ├── post_sign_requests.json │ │ │ ├── post_terminate_sessions.json │ │ │ └── saveTest.txt │ │ ├── collaboration-allowlist/ │ │ │ ├── get_collaboration_whitelist_entries_id.json │ │ │ ├── get_collaboration_whitelist_entries_page_1.json │ │ │ ├── get_collaboration_whitelist_entries_page_2.json │ │ │ ├── get_collaboration_whitelist_exempt_targets_id.json │ │ │ ├── get_collaboration_whitelist_exempt_targets_page_1.json │ │ │ ├── get_collaboration_whitelist_exempt_targets_page_2.json │ │ │ ├── post_collaboration_exempt_targets.json │ │ │ └── post_collaboration_whitelists.json │ │ ├── collaborations/ │ │ │ ├── get_collaborations_id.json │ │ │ ├── get_collaborations_pending_page_1.json │ │ │ ├── get_collaborations_pending_page_2.json │ │ │ ├── get_groups_id_collaborations_page_1.json │ │ │ ├── get_groups_id_collaborations_page_2.json │ │ │ ├── post_collaborations_user.json │ │ │ └── put_collaborations_id.json │ │ ├── collections/ │ │ │ ├── get_collections.json │ │ │ ├── get_collections_id_items_page_1.json │ │ │ ├── get_collections_id_items_page_2.json │ │ │ ├── get_files_id.json │ │ │ └── put_files_id.json │ │ ├── comments/ │ │ │ ├── get_comments_id.json │ │ │ ├── get_files_id_comments_page_1.json │ │ │ ├── get_files_id_comments_page_2.json │ │ │ ├── post_comments.json │ │ │ ├── post_comments_reply.json │ │ │ └── put_comments_id.json │ │ ├── device-pins/ │ │ │ ├── get_device_pinners_id.json │ │ │ ├── get_device_pinners_page_1.json │ │ │ ├── get_device_pinners_page_2.json │ │ │ └── get_users_me.json │ │ ├── events/ │ │ │ ├── get_events.json │ │ │ ├── get_events_end.json │ │ │ └── get_events_second_page.json │ │ ├── file-requests/ │ │ │ ├── get_file_requests_id.json │ │ │ ├── post_file_requests_id_copy.json │ │ │ └── put_file_requests_id.json │ │ ├── files/ │ │ │ ├── epic-poem.txt │ │ │ ├── get_files_id.json │ │ │ ├── get_files_id_collaborations_page_1.json │ │ │ ├── get_files_id_collaborations_page_2.json │ │ │ ├── get_files_id_metadata.json │ │ │ ├── get_files_id_metadata_scope_template.json │ │ │ ├── get_files_id_tasks_page_1.json │ │ │ ├── get_files_id_tasks_page_2.json │ │ │ ├── get_files_id_versions_page_1.json │ │ │ ├── get_files_id_versions_page_2.json │ │ │ ├── get_zip_downloads_status.json │ │ │ ├── post_collaborations_user.json │ │ │ ├── post_files_content.json │ │ │ ├── post_files_id_copy.json │ │ │ ├── post_files_id_metadata_scope_template.json │ │ │ ├── post_files_id_versions_current.json │ │ │ ├── post_zip_downloads.json │ │ │ ├── put_collaborations_id.json │ │ │ ├── put_files_id.json │ │ │ ├── put_files_id_lock.json │ │ │ ├── put_files_id_shared_link.json │ │ │ └── test_file.txt │ │ ├── folders/ │ │ │ ├── get_folder_locks.json │ │ │ ├── get_folders_id.json │ │ │ ├── get_folders_id_collaborations.json │ │ │ ├── get_folders_id_folder_download.json │ │ │ ├── get_folders_id_items.json │ │ │ ├── get_folders_id_items_page_1.json │ │ │ ├── get_folders_id_items_page_1_folder_download.json │ │ │ ├── get_folders_id_items_page_2.json │ │ │ ├── get_folders_id_items_page_2_folder_download.json │ │ │ ├── get_folders_id_large_folder.json │ │ │ ├── get_folders_id_metadata.json │ │ │ ├── get_folders_id_metadata_scope_template.json │ │ │ ├── get_folders_id_subfolder_download.json │ │ │ ├── post_collaborations_user.json │ │ │ ├── post_files_content.json │ │ │ ├── post_folder_locks.json │ │ │ ├── post_folders.json │ │ │ ├── post_folders_id_copy.json │ │ │ ├── post_folders_id_metadata_scope_template.json │ │ │ ├── put_collaborations_id.json │ │ │ ├── put_folders_id.json │ │ │ ├── put_folders_id_shared_link.json │ │ │ └── test_folder/ │ │ │ ├── nested_folder/ │ │ │ │ └── test_file.txt │ │ │ └── test_file.txt │ │ ├── github/ │ │ │ └── releases-v4.4.1.json │ │ ├── groups/ │ │ │ ├── get_group_memberships_id.json │ │ │ ├── get_groups_id.json │ │ │ ├── get_groups_id_collaborations_page_1.json │ │ │ ├── get_groups_id_collaborations_page_2.json │ │ │ ├── get_groups_id_memberships_page_1.json │ │ │ ├── get_groups_id_memberships_page_2.json │ │ │ ├── get_groups_page_1.json │ │ │ ├── get_groups_page_2.json │ │ │ ├── post_group_memberships.json │ │ │ ├── post_groups.json │ │ │ ├── post_groups_terminate_sessions.json │ │ │ └── put_groups_id.json │ │ ├── hubs/ │ │ │ ├── get_hub_collaborations.json │ │ │ ├── get_hub_collaborations_id.json │ │ │ ├── get_hub_document_blocks.json │ │ │ ├── get_hub_document_pages.json │ │ │ ├── get_hub_items.json │ │ │ ├── get_hubs_id.json │ │ │ ├── post_hub_collaborations.json │ │ │ ├── post_hubs_id_manage_items.json │ │ │ ├── put_hub_collaborations_id.json │ │ │ └── put_hubs_id.json │ │ ├── integration-mappings/ │ │ │ ├── get_integration_mappings_slack_page_1.json │ │ │ ├── get_integration_mappings_slack_page_2.json │ │ │ ├── get_integration_mappings_teams.json │ │ │ ├── post_integration_mappings_slack.json │ │ │ ├── post_integration_mappings_teams.json │ │ │ ├── put_integration_mappings_slack_id.json │ │ │ └── put_integration_mappings_teams_id.json │ │ ├── legal-hold-policies/ │ │ │ ├── get_file_version_legal_holds_id.json │ │ │ ├── get_file_version_legal_holds_page_1.json │ │ │ ├── get_file_version_legal_holds_page_2.json │ │ │ ├── get_legal_hold_policies.json │ │ │ ├── get_legal_hold_policies_id.json │ │ │ ├── get_legal_hold_policy_assignments_id.json │ │ │ ├── get_legal_hold_policy_assignments_policy_id_page_1.json │ │ │ ├── get_legal_hold_policy_assignments_policy_id_page_2.json │ │ │ ├── post_legal_hold_policies.json │ │ │ ├── post_legal_hold_policy_assignments.json │ │ │ └── put_legal_hold_policies_id.json │ │ ├── metadata-cascade-policies/ │ │ │ ├── get_metadata_cascade_policies_folder_id_200.json │ │ │ ├── get_metadata_cascade_policies_id_200.json │ │ │ └── post_metadata_cascade_policies_201.json │ │ ├── metadata-query/ │ │ │ └── post_metadata_queries_execute_read.json │ │ ├── metadata-templates/ │ │ │ ├── get_metadata_templates_scope_page_1.json │ │ │ ├── get_metadata_templates_scope_page_2.json │ │ │ ├── get_metadata_templates_scope_template_schema.json │ │ │ ├── post_metadata_templates_schema.json │ │ │ └── put_metadata_templates_scope_key_schema_200.json │ │ ├── output/ │ │ │ ├── bulk_collection_output_csv.txt │ │ │ ├── bulk_collection_output_json.txt │ │ │ ├── bulk_collection_output_table.txt │ │ │ ├── bulk_items_output_csv.txt │ │ │ ├── bulk_output_json.txt │ │ │ ├── collaboration_whitelist_add_yaml.txt │ │ │ ├── collaboration_whitelist_create_exemption_yaml.txt │ │ │ ├── collaboration_whitelist_get_exemption_yaml.txt │ │ │ ├── collaboration_whitelist_get_yaml.txt │ │ │ ├── collaboration_whitelist_list_exemptions_json.txt │ │ │ ├── collaboration_whitelist_list_json.txt │ │ │ ├── collaborations_add_login_yaml.txt │ │ │ ├── collaborations_get_pending_json.txt │ │ │ ├── collaborations_get_yaml.txt │ │ │ ├── collaborations_update_yaml.txt │ │ │ ├── collections_get_json.txt │ │ │ ├── collections_get_table.txt │ │ │ ├── collections_list_items_json.txt │ │ │ ├── comments_create_yaml.txt │ │ │ ├── comments_get_yaml.txt │ │ │ ├── comments_list_json.txt │ │ │ ├── comments_reply_yaml.txt │ │ │ ├── comments_update_yaml.txt │ │ │ ├── device_pins_get_yaml.txt │ │ │ ├── device_pins_list_json.txt │ │ │ ├── events_get_json.txt │ │ │ ├── file_requests_copy_yaml.txt │ │ │ ├── file_requests_get_yaml.txt │ │ │ ├── file_requests_update_yaml.txt │ │ │ ├── files_collaborations_add_yaml.txt │ │ │ ├── files_collaborations_list_json.txt │ │ │ ├── files_copy_yaml.txt │ │ │ ├── files_get_yaml.txt │ │ │ ├── files_lock_yaml.txt │ │ │ ├── files_metadata_create_yaml.txt │ │ │ ├── files_metadata_get_all_json.txt │ │ │ ├── files_metadata_get_yaml.txt │ │ │ ├── files_metadata_update_yaml.txt │ │ │ ├── files_move_yaml.txt │ │ │ ├── files_rename_yaml.txt │ │ │ ├── files_share_json.txt │ │ │ ├── files_share_yaml.txt │ │ │ ├── files_tasks_list_json.txt │ │ │ ├── files_unlock_yaml.txt │ │ │ ├── files_upload_json.txt │ │ │ ├── files_upload_yaml.txt │ │ │ ├── files_versions_list_json.txt │ │ │ ├── files_versions_list_pagination_json.txt │ │ │ ├── files_versions_promote_yaml.txt │ │ │ ├── files_versions_upload_json.txt │ │ │ ├── files_versions_upload_yaml.txt │ │ │ ├── folders_collaborations_add_yaml.txt │ │ │ ├── folders_collaborations_list_json.txt │ │ │ ├── folders_copy_yaml.txt │ │ │ ├── folders_create_yaml.txt │ │ │ ├── folders_get_yaml.txt │ │ │ ├── folders_list_items_json.txt │ │ │ ├── folders_list_items_pagination_json.txt │ │ │ ├── folders_list_items_pagination_one_item_json.txt │ │ │ ├── folders_locks_list_json.txt │ │ │ ├── folders_metadata_create_yaml.txt │ │ │ ├── folders_metadata_get_all_json.txt │ │ │ ├── folders_metadata_get_yaml.txt │ │ │ ├── folders_metadata_update_yaml.txt │ │ │ ├── folders_move_yaml.txt │ │ │ ├── folders_rename_yaml.txt │ │ │ ├── folders_share_json.txt │ │ │ ├── folders_share_yaml.txt │ │ │ ├── folders_update_yaml.txt │ │ │ ├── folders_upload_yaml.txt │ │ │ ├── groups_create_yaml.txt │ │ │ ├── groups_get_yaml.txt │ │ │ ├── groups_list_collaborations_json.txt │ │ │ ├── groups_list_json.txt │ │ │ ├── groups_membership_add_yaml.txt │ │ │ ├── groups_membership_get_yaml.txt │ │ │ ├── groups_membership_list_json.txt │ │ │ ├── groups_membership_update_yaml.txt │ │ │ ├── groups_update_yaml.txt │ │ │ ├── integration_mappings_slack_get_json.txt │ │ │ ├── legal_hold_policies_assign_yaml.txt │ │ │ ├── legal_hold_policies_create_yaml.txt │ │ │ ├── legal_hold_policies_get_assignment_yaml.txt │ │ │ ├── legal_hold_policies_get_version_hold_yaml.txt │ │ │ ├── legal_hold_policies_get_yaml.txt │ │ │ ├── legal_hold_policies_list_assignments_json.txt │ │ │ ├── legal_hold_policies_list_json.txt │ │ │ ├── legal_hold_policies_list_table.txt │ │ │ ├── legal_hold_policies_list_version_holds_json.txt │ │ │ ├── legal_hold_policies_list_yaml.txt │ │ │ ├── legal_hold_policies_update_yaml.txt │ │ │ ├── metadata_cascade_policies_create_yaml.txt │ │ │ ├── metadata_cascade_policies_get_yaml.txt │ │ │ ├── metadata_cascade_policies_list_json.txt │ │ │ ├── metadata_cascade_policies_list_table.txt │ │ │ ├── metadata_templates_create_yaml.txt │ │ │ ├── metadata_templates_get_yaml.txt │ │ │ ├── metadata_templates_list_json.txt │ │ │ ├── recent_items_json.txt │ │ │ ├── retention_policies_assign_yaml.txt │ │ │ ├── retention_policies_create_yaml.txt │ │ │ ├── retention_policies_get_assignment_yaml.txt │ │ │ ├── retention_policies_get_file_versions_under_retention_json.txt │ │ │ ├── retention_policies_get_files_under_retention_json.txt │ │ │ ├── retention_policies_get_version_retention_yaml.txt │ │ │ ├── retention_policies_get_yaml.txt │ │ │ ├── retention_policies_list_assignments_json.txt │ │ │ ├── retention_policies_list_json.txt │ │ │ ├── retention_policies_list_version_retentions_json.txt │ │ │ ├── retention_policies_update_yaml.txt │ │ │ ├── search_json.txt │ │ │ ├── search_json_limit_5.txt │ │ │ ├── shared_links_get_yaml.txt │ │ │ ├── sign_templates_json.txt │ │ │ ├── storage_policies_assign_yaml.txt │ │ │ ├── storage_policies_get_assignment_yaml.txt │ │ │ ├── storage_policies_get_yaml.txt │ │ │ ├── storage_policies_list_json.txt │ │ │ ├── storage_policies_lookup_assignment_yaml.txt │ │ │ ├── task_assignments_create_yaml.txt │ │ │ ├── task_assignments_get_yaml.txt │ │ │ ├── task_assignments_list_json.txt │ │ │ ├── task_assignments_update_yaml.txt │ │ │ ├── tasks_create_yaml.txt │ │ │ ├── tasks_get_yaml.txt │ │ │ ├── tasks_update_yaml.txt │ │ │ ├── terms_of_service_create_yaml.txt │ │ │ ├── terms_of_service_get_collaboration_yaml.txt │ │ │ ├── terms_of_service_get_user_status_yaml.txt │ │ │ ├── terms_of_service_get_yaml.txt │ │ │ ├── terms_of_service_list_json.txt │ │ │ ├── terms_of_service_set_user_status_yaml.txt │ │ │ ├── terms_of_service_update_yaml.txt │ │ │ ├── trash_list_json.txt │ │ │ ├── users_add_email_alias_yaml.txt │ │ │ ├── users_create_yaml.txt │ │ │ ├── users_get_email_aliases_json.txt │ │ │ ├── users_get_email_aliases_table.txt │ │ │ ├── users_get_yaml.txt │ │ │ ├── users_invite_user_yaml.txt │ │ │ ├── users_list_groups_json.txt │ │ │ ├── users_list_json.txt │ │ │ ├── users_move_root_content_yaml.txt │ │ │ ├── users_search_fields_json.txt │ │ │ ├── users_search_json.txt │ │ │ ├── users_update_yaml.txt │ │ │ ├── watermarking_apply_yaml.txt │ │ │ ├── watermarking_get_yaml.txt │ │ │ ├── web_links_create_yaml.txt │ │ │ ├── web_links_get_yaml.txt │ │ │ ├── web_links_move_yaml.txt │ │ │ ├── web_links_update_yaml.txt │ │ │ ├── webhooks_create_yaml.txt │ │ │ ├── webhooks_get_yaml.txt │ │ │ ├── webhooks_list_json.txt │ │ │ └── webhooks_update_yaml.txt │ │ ├── pagination/ │ │ │ ├── get_files_id_versions_marker.json │ │ │ └── get_folders_id_items_marker.json │ │ ├── recent-items/ │ │ │ ├── get_recent_items_page_1.json │ │ │ └── get_recent_items_page_2.json │ │ ├── retention-policies/ │ │ │ ├── get_file_version_retentions_id.json │ │ │ ├── get_file_version_retentions_page_1.json │ │ │ ├── get_file_version_retentions_page_2.json │ │ │ ├── get_file_versions_under_retention_page_1.json │ │ │ ├── get_file_versions_under_retention_page_2.json │ │ │ ├── get_files_under_retention_page_1.json │ │ │ ├── get_files_under_retention_page_2.json │ │ │ ├── get_retention_policies_id.json │ │ │ ├── get_retention_policies_id_assignments_page_1.json │ │ │ ├── get_retention_policies_id_assignments_page_2.json │ │ │ ├── get_retention_policies_page_1.json │ │ │ ├── get_retention_policies_page_2.json │ │ │ ├── get_retention_policy_assignments_id.json │ │ │ ├── post_retention_policies.json │ │ │ ├── post_retention_policy_assignments.json │ │ │ └── put_retention_policies_id.json │ │ ├── search/ │ │ │ ├── bulk/ │ │ │ │ └── bulk_get_search_query_input.csv │ │ │ ├── get_search_query_page_1.json │ │ │ └── get_search_query_page_2.json │ │ ├── shared-links/ │ │ │ ├── get_folders_id.json │ │ │ ├── get_shared_items.json │ │ │ └── put_folders_id_shared_link.json │ │ ├── sign-requests/ │ │ │ ├── get_sign_request_by_id.json │ │ │ ├── get_sign_requests.json │ │ │ ├── post_sign_requests.json │ │ │ └── post_sign_requests_id_cancel.json │ │ ├── sign-templates/ │ │ │ ├── get_sign_template_by_id.json │ │ │ └── get_sign_templates.json │ │ ├── storage-policies/ │ │ │ ├── get_storage_policies_id.json │ │ │ ├── get_storage_policies_page_1.json │ │ │ ├── get_storage_policies_page_2.json │ │ │ ├── get_storage_policy_assignments_id.json │ │ │ ├── get_storage_policy_assignments_resolved_for_enterprise.json │ │ │ ├── post_storage_policy_assignments.json │ │ │ └── put_storage_policy_assignments_id.json │ │ ├── task-assignments/ │ │ │ ├── get_tasks_id_assignments.json │ │ │ ├── post_task_assignments.json │ │ │ └── put_task_assignments_id.json │ │ ├── tasks/ │ │ │ ├── get_tasks_id.json │ │ │ ├── post_tasks.json │ │ │ └── put_tasks_id.json │ │ ├── terms-of-service/ │ │ │ ├── get_collaborations_id_acceptance_requirements.json │ │ │ ├── get_terms_of_service_id.json │ │ │ ├── get_terms_of_service_user_statuses.json │ │ │ ├── get_terms_of_services.json │ │ │ ├── post_terms_of_service_id.json │ │ │ ├── post_terms_of_service_user_statuses.json │ │ │ ├── post_terms_of_service_user_statuses_409.json │ │ │ ├── put_terms_of_service_id.json │ │ │ └── put_terms_of_service_user_statuses.json │ │ ├── trash/ │ │ │ ├── get_files_id_trash.json │ │ │ ├── get_folders_id_trash.json │ │ │ ├── get_trashed_items_page_1.json │ │ │ ├── get_trashed_items_page_2.json │ │ │ ├── get_web_links_id_trash.json │ │ │ ├── post_files_id.json │ │ │ ├── post_folders_id.json │ │ │ └── post_web_links_id.json │ │ ├── users/ │ │ │ ├── get_users_id.json │ │ │ ├── get_users_id_email_aliases.json │ │ │ ├── get_users_id_memberships_page_1.json │ │ │ ├── get_users_id_memberships_page_2.json │ │ │ ├── get_users_page_1.json │ │ │ ├── get_users_page_2.json │ │ │ ├── post_users.json │ │ │ ├── post_users_id_email_aliases.json │ │ │ ├── post_users_terminate_sessions.json │ │ │ ├── put_users_id.json │ │ │ └── put_users_id_folder.json │ │ ├── watermarking/ │ │ │ ├── get_files_id_watermark.json │ │ │ └── put_files_id_watermark.json │ │ ├── web-links/ │ │ │ ├── get_web_links_id.json │ │ │ ├── post_web_links.json │ │ │ └── put_web_links_id.json │ │ └── webhooks/ │ │ ├── get_webhooks_id.json │ │ ├── get_webhooks_page_1.json │ │ ├── get_webhooks_page_2.json │ │ ├── post_webhooks.json │ │ └── put_webhooks_id.json │ ├── github-updater.test.js │ ├── helpers/ │ │ └── test-helper.js │ ├── inquirer.test.js │ ├── pagination-utils.test.js │ ├── pkce-support.test.js │ ├── secure-storage.test.js │ ├── token-cache.test.js │ └── util.test.js └── tsconfig.esm.json