├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── README.md ├── packages ├── config │ ├── .npmignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── add.ts │ │ ├── index.ts │ │ └── remove.ts │ └── tsconfig.json └── core │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ ├── index.ts │ ├── lib.ts │ └── types.ts │ └── tsconfig.json └── servers ├── adyen-account-v6 ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── post_checkaccountholder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_closeaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_closeaccountholder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_closestores │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_createaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── post_createaccountholder │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── accountHolderDetails.json │ │ │ │ └── accountHolderDetails │ │ │ │ │ └── properties │ │ │ │ │ ├── address.json │ │ │ │ │ ├── businessDetails.json │ │ │ │ │ ├── individualDetails.json │ │ │ │ │ ├── individualDetails │ │ │ │ │ └── properties │ │ │ │ │ │ ├── name.json │ │ │ │ │ │ └── personalData.json │ │ │ │ │ ├── metadata.json │ │ │ │ │ ├── phoneNumber.json │ │ │ │ │ └── principalBusinessAddress.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── accountHolderDetails.ts │ │ │ └── accountHolderDetails │ │ │ │ └── properties │ │ │ │ ├── address.ts │ │ │ │ ├── businessDetails.ts │ │ │ │ ├── individualDetails.ts │ │ │ │ ├── individualDetails │ │ │ │ └── properties │ │ │ │ │ ├── name.ts │ │ │ │ │ └── personalData.ts │ │ │ │ ├── metadata.ts │ │ │ │ ├── phoneNumber.ts │ │ │ │ └── principalBusinessAddress.ts │ │ │ └── root.ts │ │ ├── post_deletebankaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_deletelegalarrangements │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_deletepayoutmethods │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_deleteshareholders │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_deletesignatories │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_getaccountholder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_gettaxform │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_getuploadeddocuments │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_suspendaccountholder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_unsuspendaccountholder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_updateaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── metadata.json │ │ │ │ └── payoutSchedule.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── metadata.ts │ │ │ └── payoutSchedule.ts │ │ │ └── root.ts │ │ ├── post_updateaccountholder │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── accountHolderDetails.json │ │ │ │ └── accountHolderDetails │ │ │ │ │ └── properties │ │ │ │ │ ├── address.json │ │ │ │ │ ├── businessDetails.json │ │ │ │ │ ├── individualDetails.json │ │ │ │ │ ├── individualDetails │ │ │ │ │ └── properties │ │ │ │ │ │ ├── name.json │ │ │ │ │ │ └── personalData.json │ │ │ │ │ ├── metadata.json │ │ │ │ │ ├── phoneNumber.json │ │ │ │ │ └── principalBusinessAddress.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── accountHolderDetails.ts │ │ │ └── accountHolderDetails │ │ │ │ └── properties │ │ │ │ ├── address.ts │ │ │ │ ├── businessDetails.ts │ │ │ │ ├── individualDetails.ts │ │ │ │ ├── individualDetails │ │ │ │ └── properties │ │ │ │ │ ├── name.ts │ │ │ │ │ └── personalData.ts │ │ │ │ ├── metadata.ts │ │ │ │ ├── phoneNumber.ts │ │ │ │ └── principalBusinessAddress.ts │ │ │ └── root.ts │ │ ├── post_updateaccountholderstate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── post_uploaddocument │ │ ├── index.ts │ │ ├── schema-json │ │ ├── properties │ │ │ └── documentDetail.json │ │ └── root.json │ │ └── schema │ │ ├── properties │ │ └── documentDetail.ts │ │ └── root.ts └── tsconfig.json ├── agenta-ai ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── accept_invitation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── add_variant_from_base_and_config │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── parameters.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── parameters.ts │ │ │ └── root.ts │ │ ├── add_variant_from_key │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── add_variant_from_url │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── admin_cancel_subscription │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── admin_create_checkout │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── admin_create_portal │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── admin_report_usage │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── admin_switch_plans │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── assign_role_to_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── cancel_plan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── configs_add │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── application_ref.json │ │ │ │ └── variant_ref.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── application_ref.ts │ │ │ └── variant_ref.ts │ │ │ └── root.ts │ │ ├── configs_commit │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── config.json │ │ │ │ └── config │ │ │ │ │ └── properties │ │ │ │ │ └── params.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── config.ts │ │ │ └── config │ │ │ │ └── properties │ │ │ │ └── params.ts │ │ │ └── root.ts │ │ ├── configs_delete │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── variant_ref.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── variant_ref.ts │ │ │ └── root.ts │ │ ├── configs_deploy │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── environment_ref.json │ │ │ │ └── variant_ref.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── environment_ref.ts │ │ │ └── variant_ref.ts │ │ │ └── root.ts │ │ ├── configs_fetch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── configs_fork │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── configs_history │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── variant_ref.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── variant_ref.ts │ │ │ └── root.ts │ │ ├── configs_list │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── application_ref.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── application_ref.ts │ │ │ └── root.ts │ │ ├── container_templates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── create_account │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── scope.json │ │ │ │ └── user.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── scope.ts │ │ │ └── user.ts │ │ │ └── root.ts │ │ ├── create_accounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── organization_memberships.json │ │ │ │ ├── organizations.json │ │ │ │ ├── project_memberships.json │ │ │ │ ├── projects.json │ │ │ │ ├── users.json │ │ │ │ ├── workspace_memberships.json │ │ │ │ └── workspaces.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── organization_memberships.ts │ │ │ ├── organizations.ts │ │ │ ├── project_memberships.ts │ │ │ ├── projects.ts │ │ │ ├── users.ts │ │ │ ├── workspace_memberships.ts │ │ │ └── workspaces.ts │ │ │ └── root.ts │ │ ├── create_api_key │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── create_app │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── create_checkout │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── create_evaluation │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── rate_limit.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── rate_limit.ts │ │ │ └── root.ts │ │ ├── create_human_evaluation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── create_new_evaluator_config_evaluators_configs_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── settings_values.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── settings_values.ts │ │ │ └── root.ts │ │ ├── create_portal │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── create_secret │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── header.json │ │ │ │ └── secret.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── header.ts │ │ │ └── secret.ts │ │ │ └── root.ts │ │ ├── create_testset │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── create_workspace │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_api_key │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_evaluations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_evaluations_human_evaluations_delete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_evaluator_config_evaluators_configs_evaluator_config_id_d │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_secret │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_testsets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_traces │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deploy_to_environment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── environment_revisions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── evaluator_data_map_evaluators_map_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── inputs.json │ │ │ │ └── mapping.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── inputs.ts │ │ │ └── mapping.ts │ │ │ └── root.ts │ │ ├── evaluator_run_evaluators_evaluator_key_run_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── inputs.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── inputs.ts │ │ │ └── root.ts │ │ ├── fetch_evaluation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_evaluation_ids_evaluations_by_resource_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_evaluation_results │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_evaluation_scenarios │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_evaluation_scenarios_evaluations_evaluation_scenarios_comp │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_evaluation_status │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_human_evaluation_human_evaluations_evaluation_id_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_human_evaluation_scenarios │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_list_evaluations_evaluations_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_list_human_evaluations_human_evaluations_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_organization_details │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_plans │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_results │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_subscription │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_trace_by_id │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_usage │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fetch_user_profile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_all_workspace_permissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_all_workspace_roles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_config │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_config_deployment_revision │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_evaluation_scenario_score_router_human_evaluations_evaluatio │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_evaluator_config_evaluators_configs_evaluator_config_id_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_evaluator_configs_evaluators_configs_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_evaluators_endpoint_evaluators_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_own_org │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_projects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_single_testset │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_testsets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_variant │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_variant_by_env │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_variant_revision │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_variant_revisions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_workspace │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── handle_events │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── health_check │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── import_testset │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── invite_user_to_workspace │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_api_keys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_app_variants │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_apps │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_bases │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_environments │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_organizations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_secrets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── mark_variant_as_hidden │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── mark_variant_revision_as_hidden │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── otlp_receiver │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── otlp_status │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── otlp_v1_traces │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── query_analytics │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── query_traces │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── read_secret │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── remove_app │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── remove_user_from_workspace │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── resend_invitation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── reset_user_password │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── revert_deployment_revision │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── switch_plans │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── unassign_role_from_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_app │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_evaluation_scenario_router_human_evaluations_evaluation_i │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_evaluation_scenario_score_router_human_evaluations_evalua │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_evaluator_config_evaluators_configs_evaluator_config_id_p │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_human_evaluation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_organization │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_secret │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_testset │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_variant_parameters │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── parameters.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── parameters.ts │ │ │ └── root.ts │ │ ├── update_variant_url │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── update_workspace │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── upload_file │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── verify_permissions │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── autobahn ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── get_charging_station │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_closure │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_parking_lorry │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_roadwork │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_warning │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_webcam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_autobahnen │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_charging_stations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_closures │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_parking_lorries │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_roadworks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── list_warnings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── list_webcams │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── backstage-catalog ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── analyzelocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── location.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── location.ts │ │ │ └── root.ts │ │ ├── createlocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteentitybyuid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletelocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentities │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentitiesbyquery │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentitiesbyrefs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentityancestrybyname │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentitybyname │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentitybyuid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentityfacets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlocationbyentity │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlocations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── refreshentity │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── validateentity │ │ ├── index.ts │ │ ├── schema-json │ │ ├── properties │ │ │ └── entity.json │ │ └── root.json │ │ └── schema │ │ ├── properties │ │ └── entity.ts │ │ └── root.ts └── tsconfig.json ├── epa-lew ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── calculaterfactorget │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── healthcheck │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── figma ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── deletecomment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecommentreaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletedevresource │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletewebhook │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getactivitylogs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcommentreactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcomments │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcomponent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcomponentset │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdevresources │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfilecomponents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfilecomponentsets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfilenodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfilestyles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfileversions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getimagefills │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getimages │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlibraryanalyticscomponentactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlibraryanalyticscomponentusages │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlibraryanalyticsstyleactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlibraryanalyticsstyleusages │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlibraryanalyticsvariableactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlibraryanalyticsvariableusages │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlocalvariables │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpayments │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectfiles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpublishedvariables │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getstyle │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getteamcomponents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getteamcomponentsets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getteamprojects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getteamstyles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getteamwebhooks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getwebhook │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getwebhookrequests │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcomment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcommentreaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postdevresources │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postvariables │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postwebhook │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── putdevresources │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── putwebhook │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── google-maps ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── autocomplete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── directions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── distancematrix │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── elevation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findplacefromtext │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── geocode │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── geolocate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── nearbysearch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── nearestroads │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── placedetails │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── placephoto │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── queryautocomplete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── snaptoroads │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── streetview │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── streetviewmetadata │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── textsearch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── timezone │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── jira ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── addactorusers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addatlassianteam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addattachment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addcomment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addfieldtodefaultscreen │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addgadget │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addissuetypestocontext │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addissuetypestoissuetypescheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addnotifications │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addonpropertiesresource_deleteaddonproperty_delete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addonpropertiesresource_getaddonproperties_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addonpropertiesresource_getaddonproperty_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addonpropertiesresource_putaddonproperty_put │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addprojectroleactorstorole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addscreentab │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addscreentabfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addsecuritylevel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addsecuritylevelmembers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addsharepermission │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addusertogroup │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addvote │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addwatcher │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addworklog │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── analyseexpression │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── contextVariables.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── contextVariables.ts │ │ │ └── root.ts │ │ ├── appendmappingsforissuetypescreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── appissuefieldvalueupdateresource_updateissuefields_put │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── archiveissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── archiveissuesasync │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── archiveplan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── archiveproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── assignfieldconfigurationschemetoproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── assignissue │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── assignissuetypeschemetoproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── assignissuetypescreenschemetoproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── assignpermissionscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── assignprojectstocustomfieldcontext │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── assignschemetoproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── associateschemestoprojects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulkdeleteissueproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulkdeleteworklogs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulkeditdashboards │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulkfetchissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulkgetgroups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulkgetusers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulkgetusersmigration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulkmoveworklogs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulksetissuepropertiesbyissue │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulksetissueproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── bulksetissuespropertieslist │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── properties.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── properties.ts │ │ │ └── root.ts │ │ ├── canceltask │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── changefilterowner │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── copydashboard │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── countissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createassociations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createcomponent │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── createcustomfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createcustomfieldcontext │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createcustomfieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createdashboard │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createfieldconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createfieldconfigurationscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createfilter │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── creategroup │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createissue │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── fields.json │ │ │ │ └── update.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── fields.ts │ │ │ └── update.ts │ │ │ └── root.ts │ │ ├── createissuefieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── config.json │ │ │ │ └── properties.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── config.ts │ │ │ └── properties.ts │ │ │ └── root.ts │ │ ├── createissuelinktype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createissuesecurityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createissuetypeavatar │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createissuetypescheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createissuetypescreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createnotificationscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createorupdateremoteissuelink │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createpermissiongrant │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createpermissionscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createplan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createplanonlyteam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createpriority │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createpriorityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createprojectavatar │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createprojectcategory │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createprojectrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createprojectwithcustomtemplate │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── details.json │ │ │ │ ├── details │ │ │ │ │ └── properties │ │ │ │ │ │ └── additionalProperties.json │ │ │ │ ├── template.json │ │ │ │ └── template │ │ │ │ │ └── properties │ │ │ │ │ ├── boards.json │ │ │ │ │ ├── field.json │ │ │ │ │ ├── field │ │ │ │ │ └── properties │ │ │ │ │ │ ├── fieldLayoutScheme.json │ │ │ │ │ │ ├── fieldLayoutScheme │ │ │ │ │ │ └── properties │ │ │ │ │ │ │ ├── defaultFieldLayout.json │ │ │ │ │ │ │ ├── explicitMappings.json │ │ │ │ │ │ │ └── pcri.json │ │ │ │ │ │ ├── issueTypeScreenScheme.json │ │ │ │ │ │ └── issueTypeScreenScheme │ │ │ │ │ │ └── properties │ │ │ │ │ │ ├── defaultScreenScheme.json │ │ │ │ │ │ ├── explicitMappings.json │ │ │ │ │ │ └── pcri.json │ │ │ │ │ ├── issueType.json │ │ │ │ │ ├── issueType │ │ │ │ │ └── properties │ │ │ │ │ │ ├── issueTypeScheme.json │ │ │ │ │ │ └── issueTypeScheme │ │ │ │ │ │ └── properties │ │ │ │ │ │ ├── defaultIssueTypeId.json │ │ │ │ │ │ └── pcri.json │ │ │ │ │ ├── notification.json │ │ │ │ │ ├── notification │ │ │ │ │ └── properties │ │ │ │ │ │ └── pcri.json │ │ │ │ │ ├── permissionScheme.json │ │ │ │ │ ├── permissionScheme │ │ │ │ │ └── properties │ │ │ │ │ │ └── pcri.json │ │ │ │ │ ├── project.json │ │ │ │ │ ├── project │ │ │ │ │ └── properties │ │ │ │ │ │ ├── fieldLayoutSchemeId.json │ │ │ │ │ │ ├── issueSecuritySchemeId.json │ │ │ │ │ │ ├── issueTypeSchemeId.json │ │ │ │ │ │ ├── issueTypeScreenSchemeId.json │ │ │ │ │ │ ├── notificationSchemeId.json │ │ │ │ │ │ ├── pcri.json │ │ │ │ │ │ ├── permissionSchemeId.json │ │ │ │ │ │ └── workflowSchemeId.json │ │ │ │ │ ├── role.json │ │ │ │ │ ├── role │ │ │ │ │ └── properties │ │ │ │ │ │ └── roleToProjectActors.json │ │ │ │ │ ├── scope.json │ │ │ │ │ ├── security.json │ │ │ │ │ ├── security │ │ │ │ │ └── properties │ │ │ │ │ │ └── pcri.json │ │ │ │ │ ├── workflow.json │ │ │ │ │ └── workflow │ │ │ │ │ └── properties │ │ │ │ │ ├── workflowScheme.json │ │ │ │ │ └── workflowScheme │ │ │ │ │ └── properties │ │ │ │ │ ├── defaultWorkflow.json │ │ │ │ │ ├── explicitMappings.json │ │ │ │ │ └── pcri.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── details.ts │ │ │ ├── details │ │ │ │ └── properties │ │ │ │ │ └── additionalProperties.ts │ │ │ ├── template.ts │ │ │ └── template │ │ │ │ └── properties │ │ │ │ ├── boards.ts │ │ │ │ ├── field.ts │ │ │ │ ├── field │ │ │ │ └── properties │ │ │ │ │ ├── fieldLayoutScheme.ts │ │ │ │ │ ├── fieldLayoutScheme │ │ │ │ │ └── properties │ │ │ │ │ │ ├── defaultFieldLayout.ts │ │ │ │ │ │ ├── explicitMappings.ts │ │ │ │ │ │ └── pcri.ts │ │ │ │ │ ├── issueTypeScreenScheme.ts │ │ │ │ │ └── issueTypeScreenScheme │ │ │ │ │ └── properties │ │ │ │ │ ├── defaultScreenScheme.ts │ │ │ │ │ ├── explicitMappings.ts │ │ │ │ │ └── pcri.ts │ │ │ │ ├── issueType.ts │ │ │ │ ├── issueType │ │ │ │ └── properties │ │ │ │ │ ├── issueTypeScheme.ts │ │ │ │ │ └── issueTypeScheme │ │ │ │ │ └── properties │ │ │ │ │ ├── defaultIssueTypeId.ts │ │ │ │ │ └── pcri.ts │ │ │ │ ├── notification.ts │ │ │ │ ├── notification │ │ │ │ └── properties │ │ │ │ │ └── pcri.ts │ │ │ │ ├── permissionScheme.ts │ │ │ │ ├── permissionScheme │ │ │ │ └── properties │ │ │ │ │ └── pcri.ts │ │ │ │ ├── project.ts │ │ │ │ ├── project │ │ │ │ └── properties │ │ │ │ │ ├── fieldLayoutSchemeId.ts │ │ │ │ │ ├── issueSecuritySchemeId.ts │ │ │ │ │ ├── issueTypeSchemeId.ts │ │ │ │ │ ├── issueTypeScreenSchemeId.ts │ │ │ │ │ ├── notificationSchemeId.ts │ │ │ │ │ ├── pcri.ts │ │ │ │ │ ├── permissionSchemeId.ts │ │ │ │ │ └── workflowSchemeId.ts │ │ │ │ ├── role.ts │ │ │ │ ├── role │ │ │ │ └── properties │ │ │ │ │ └── roleToProjectActors.ts │ │ │ │ ├── scope.ts │ │ │ │ ├── security.ts │ │ │ │ ├── security │ │ │ │ └── properties │ │ │ │ │ └── pcri.ts │ │ │ │ ├── workflow.ts │ │ │ │ └── workflow │ │ │ │ └── properties │ │ │ │ ├── workflowScheme.ts │ │ │ │ └── workflowScheme │ │ │ │ └── properties │ │ │ │ ├── defaultWorkflow.ts │ │ │ │ ├── explicitMappings.ts │ │ │ │ └── pcri.ts │ │ │ └── root.ts │ │ ├── createrelatedwork │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createresolution │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createscreen │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createscreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createstatuses │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── scope.json │ │ │ │ └── scope │ │ │ │ │ └── properties │ │ │ │ │ └── project.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── scope.ts │ │ │ └── scope │ │ │ │ └── properties │ │ │ │ └── project.ts │ │ │ └── root.ts │ │ ├── createuimodification │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createversion │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createworkflows │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── scope.json │ │ │ │ └── scope │ │ │ │ │ └── properties │ │ │ │ │ └── project.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── scope.ts │ │ │ └── scope │ │ │ │ └── properties │ │ │ │ └── project.ts │ │ │ └── root.ts │ │ ├── createworkflowscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── issueTypeMappings.json │ │ │ │ ├── issueTypes.json │ │ │ │ └── originalIssueTypeMappings.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── issueTypeMappings.ts │ │ │ ├── issueTypes.ts │ │ │ └── originalIssueTypeMappings.ts │ │ │ └── root.ts │ │ ├── createworkflowschemedraftfromparent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createworkflowtransitionproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteactor │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteandreplaceversion │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteavatar │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecomment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecommentproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecomponent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomfieldcontext │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomfieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletedashboard │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletedashboarditemproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletedefaultworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletedraftdefaultworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletedraftworkflowmapping │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletefavouriteforfilter │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletefieldconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletefieldconfigurationscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletefilter │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteforgeappproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteinactiveworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteissue │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteissuefieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteissuelink │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteissuelinktype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteissueproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteissuetypeproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteissuetypescheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteissuetypescreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletelocale │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletenotificationscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletepermissionscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletepermissionschemeentity │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteplanonlyteam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletepriority │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletepriorityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteprojectasynchronously │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteprojectavatar │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteprojectproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteprojectrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteprojectroleactorsfromrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleterelatedwork │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteremoteissuelinkbyglobalid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteremoteissuelinkbyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteresolution │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletescreen │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletescreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletescreentab │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletesecurityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletesharepermission │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletestatusesbyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteuimodification │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteuserproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteversion │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletewebhookbyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteworkflowmapping │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteworkflowscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteworkflowschemedraft │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteworkflowschemedraftissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteworkflowschemeissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteworkflowtransitionproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteworkflowtransitionruleconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteworklog │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteworklogproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── dotransition │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── fields.json │ │ │ │ └── update.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── fields.ts │ │ │ └── update.ts │ │ │ └── root.ts │ │ ├── duplicateplan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── dynamicmodulesresource_getmodules_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── dynamicmodulesresource_registermodules_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── dynamicmodulesresource_removemodules_delete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── editissue │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── fields.json │ │ │ │ └── update.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── fields.ts │ │ │ └── update.ts │ │ │ └── root.ts │ │ ├── evaluatejiraexpression │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── evaluatejsisjiraexpression │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── expandattachmentforhumans │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── expandattachmentformachines │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── exportarchivedissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── archivedDateRange.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── archivedDateRange.ts │ │ │ └── root.ts │ │ ├── findassignableusers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findbulkassignableusers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findcomponentsforprojects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findgroups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── finduserkeysbyquery │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findusers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findusersandgroups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findusersbyquery │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findusersforpicker │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── finduserswithallpermissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── finduserswithbrowsepermission │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── fullyupdateprojectrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccessibleprojecttypebykey │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getadvancedsettings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallaccessibleprojecttypes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallapplicationroles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallavailabledashboardgadgets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getalldashboards │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallfieldconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallfieldconfigurationschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallgadgets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallissuefieldoptions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallissuetypeschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getalllabels │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallpermissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallpermissionschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallprojectavatars │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallprojectcategories │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallprojectroles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallprojects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallprojecttypes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallscreentabfields │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallscreentabs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallstatuses │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallsystemavatars │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getalluserdataclassificationlevels │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallusers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallusersdefault │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallworkflows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getallworkflowschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getalternativeissuetypes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapplicationproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapplicationrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapproximateapplicationlicensecount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapproximatelicensecount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getassignedpermissionscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getatlassianteam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getattachment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getattachmentcontent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getattachmentmeta │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getattachmentthumbnail │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getauditrecords │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getautocomplete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getautocompletepost │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getavailableprioritiesbypriorityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getavailablescreenfields │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getavailabletimetrackingimplementations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getavailabletransitions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getavatarimagebyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getavatarimagebyowner │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getavatarimagebytype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getavatars │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbanner │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbulkchangelogs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbulkeditablefields │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbulkoperationprogress │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbulkpermissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbulkscreentabs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getchangelogs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getchangelogsbyids │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcolumns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcomment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcommentproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcommentpropertykeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcomments │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcommentsbyids │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcomponent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcomponentrelatedissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcontextsforfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcontextsforfielddeprecated │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcreateissuemeta │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcreateissuemetaissuetypeid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcreateissuemetaissuetypes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcurrentuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomfieldconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomfieldcontextsforprojectsandissuetypes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomfieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomfieldsconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdashboard │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdashboarditemproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdashboarditempropertykeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdashboardspaginated │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdefaultprojectclassification │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdefaultsharescope │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdefaultvalues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdefaultworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdraftdefaultworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdraftworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdynamicwebhooksforapp │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── geteditissuemeta │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getevents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfailedwebhooks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfavouritefilters │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfeaturesforproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfieldautocompleteforquerystring │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfieldconfigurationitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfieldconfigurationschememappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfieldconfigurationschemeprojectmapping │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfields │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfieldspaginated │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfilter │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfilterspaginated │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getgroup │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gethierarchy │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getidsofworklogsdeletedsince │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getidsofworklogsmodifiedsince │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissue │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuealltypes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuefieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuelimitreport │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuelink │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuelinktype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuelinktypes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuenavigatordefaultcolumns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuepickerresource │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissueproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuepropertykeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuesecuritylevel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuesecuritylevelmembers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuesecurityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuesecurityschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetypemappingsforcontexts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetypeproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetypepropertykeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetypeschemeforprojects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetypeschemesmapping │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetypescreenschememappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetypescreenschemeprojectassociations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetypescreenschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuetypesforproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuewatchers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissueworklog │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getiswatchingissuebulk │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlicense │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlocale │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getmyfilters │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getmypermissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getnotificationscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getnotificationschemeforproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getnotificationschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getnotificationschemetoprojectmappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getoptionsforcontext │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpermissionscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpermissionschemegrant │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpermissionschemegrants │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpermittedprojects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getplan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getplanonlyteam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getplans │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpolicies │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpolicy │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprecomputations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprecomputationsbyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpreference │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpriorities │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprioritiesbypriorityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpriority │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpriorityschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectcategorybyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectcomponents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectcomponentspaginated │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectcontextmapping │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectemail │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectissuesecurityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectissuetypeusagesforstatus │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectpropertykeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectroleactorsforrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectrolebyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectroledetails │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectroles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectsbypriorityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectsforissuetypescreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojecttypebykey │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectusagesforstatus │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectusagesforworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectusagesforworkflowscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectversions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprojectversionspaginated │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrecent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrelatedwork │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getremoteissuelinkbyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getremoteissuelinks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getresolution │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getresolutions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getscreens │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getscreenschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getscreensforfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsecuritylevelmembers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsecuritylevels │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsecuritylevelsforproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getselectableissuefieldoptions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getselectedtimetrackingimplementation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getserverinfo │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsharedtimetrackingconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsharepermission │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsharepermissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getstatus │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getstatuscategories │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getstatuscategory │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getstatuses │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getstatusesbyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettask │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getteams │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettransitions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettrashedfieldspaginated │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuimodifications │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuserdefaultcolumns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuseremail │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuseremailbulk │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getusergroups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getusernavproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuserproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuserpropertykeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getusersfromgroup │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getvalidprojectkey │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getvalidprojectname │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getversion │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getversionrelatedissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getversionunresolvedissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getvisibleissuefieldoptions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getvotes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowprojectissuetypeusages │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowschemedraft │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowschemedraftissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowschemeissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowschemeprojectassociations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowschemeusagesforworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowspaginated │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowtransitionproperties │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowtransitionruleconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworkflowusagesforstatus │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworklog │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworklogproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworklogpropertykeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getworklogsforids │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── linkissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── comment.json │ │ │ │ ├── inwardIssue.json │ │ │ │ ├── outwardIssue.json │ │ │ │ └── type.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── comment.ts │ │ │ ├── inwardIssue.ts │ │ │ ├── outwardIssue.ts │ │ │ └── type.ts │ │ │ └── root.ts │ │ ├── matchissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── mergeversions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── migratequeries │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── migrationresource_updateentitypropertiesvalue_put │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── migrationresource_workflowrulesearch_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── movepriorities │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── moveresolutions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── movescreentab │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── movescreentabfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── moveversion │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── notify │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parsejqlqueries │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── partialupdateprojectrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── publishdraftworkflowscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── putforgeappproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── readworkflows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── readworkflowschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── refreshwebhooks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── registerdynamicwebhooks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeassociations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeatlassianteam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeattachment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removecustomfieldcontextfromprojects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removedefaultprojectclassification │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removegadget │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removegroup │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeissuetypefromissuetypescheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeissuetypesfromcontext │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeissuetypesfromglobalfieldconfigurationscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removelevel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removemappingsfromissuetypescreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removememberfromsecuritylevel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removenotificationfromnotificationscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removepreference │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeprojectcategory │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removescreentabfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeuserfromgroup │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removevote │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removewatcher │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── renamescreentab │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── reordercustomfieldoptions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── reorderissuetypesinissuetypescheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── replacecustomfieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── replaceissuefieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── resetcolumns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── resetusercolumns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── restore │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── restorecustomfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── sanitisejqlqueries │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── search │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchandreconsileissuesusingjql │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchandreconsileissuesusingjqlpost │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchforissuesids │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchforissuesusingjql │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchforissuesusingjqlpost │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchpriorities │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchprojects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchprojectsusingsecurityschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchresolutions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchsecurityschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── searchworkflows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── selecttimetrackingimplementation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── serviceregistryresource_services_get │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setactors │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── categorisedActors.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── categorisedActors.ts │ │ │ └── root.ts │ │ ├── setapplicationproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setbanner │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setcolumns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setcommentproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setdashboarditemproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setdefaultlevels │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setdefaultpriority │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setdefaultresolution │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setdefaultsharescope │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setdefaultvalues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setfavouriteforfilter │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setfieldconfigurationschememapping │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setissuenavigatordefaultcolumns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setissueproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setissuetypeproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setlocale │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setpreference │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setprojectproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setsharedtimetrackingconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setusercolumns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setusernavproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setuserproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setworkflowschemedraftissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setworkflowschemeissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── setworklogproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── storeavatar │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── submitbulkdelete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── submitbulkedit │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── submitbulkmove │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── targetToSourcesMapping.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── targetToSourcesMapping.ts │ │ │ └── root.ts │ │ ├── submitbulktransition │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── submitbulkunwatch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── submitbulkwatch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── suggestedprioritiesformappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── togglefeatureforproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── trashcustomfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── trashplan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── unarchiveissues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateatlassianteam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatecomment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatecomponent │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── updatecustomfield │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatecustomfieldconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatecustomfieldcontext │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatecustomfieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatecustomfieldvalue │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatedashboard │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatedefaultprojectclassification │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatedefaultscreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatedefaultworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatedraftdefaultworkflow │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatedraftworkflowmapping │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatefieldconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatefieldconfigurationitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatefieldconfigurationscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatefilter │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updategadget │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateissuefieldoption │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── config.json │ │ │ │ └── properties.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── config.ts │ │ │ └── properties.ts │ │ │ └── root.ts │ │ ├── updateissuelinktype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateissuesecurityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateissuetype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateissuetypescheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateissuetypescreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatemultiplecustomfieldvalues │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatenotificationscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatepermissionscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateplan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateplanonlyteam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateprecomputations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatepriority │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatepriorityscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateprojectavatar │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── urls.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── urls.ts │ │ │ └── root.ts │ │ ├── updateprojectcategory │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateprojectemail │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updaterelatedwork │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateremoteissuelink │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateresolution │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateschemes │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── version.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── version.ts │ │ │ └── root.ts │ │ ├── updatescreen │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatescreenscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatesecuritylevel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatestatuses │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateuimodification │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateversion │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateworkflowmapping │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateworkflows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateworkflowscheme │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── issueTypeMappings.json │ │ │ │ ├── issueTypes.json │ │ │ │ └── originalIssueTypeMappings.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── issueTypeMappings.ts │ │ │ ├── issueTypes.ts │ │ │ └── originalIssueTypeMappings.ts │ │ │ └── root.ts │ │ ├── updateworkflowschemedraft │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── issueTypeMappings.json │ │ │ │ ├── issueTypes.json │ │ │ │ └── originalIssueTypeMappings.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── issueTypeMappings.ts │ │ │ ├── issueTypes.ts │ │ │ └── originalIssueTypeMappings.ts │ │ │ └── root.ts │ │ ├── updateworkflowschememappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateworkflowtransitionproperty │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateworkflowtransitionruleconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateworklog │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── validatecreateworkflows │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── payload.json │ │ │ │ ├── payload │ │ │ │ │ └── properties │ │ │ │ │ │ ├── scope.json │ │ │ │ │ │ └── scope │ │ │ │ │ │ └── properties │ │ │ │ │ │ └── project.json │ │ │ │ └── validationOptions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── payload.ts │ │ │ ├── payload │ │ │ │ └── properties │ │ │ │ │ ├── scope.ts │ │ │ │ │ └── scope │ │ │ │ │ └── properties │ │ │ │ │ └── project.ts │ │ │ └── validationOptions.ts │ │ │ └── root.ts │ │ ├── validateprojectkey │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── validateupdateworkflows │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── payload.json │ │ │ │ └── validationOptions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── payload.ts │ │ │ └── validationOptions.ts │ │ │ └── root.ts │ │ └── workflowcapabilities │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── keycloak ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── delete_admin_realms_realm_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_admin_events │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_attack_detection_brute_force_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_attack_detection_brute_force_users_use │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_authentication_config_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_authentication_executions_executionid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_authentication_flows_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_authentication_required_actions_alias_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_client_scopes_client_scope_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_client_scopes_client_scope_id_protocol │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_client_scopes_client_scope_id_scope_ma │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_client_templates_client_scope_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_client_templates_client_scope_id_proto │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_client_templates_client_scope_id_scope │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_authz_resource_ser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_client_secret_rota │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_default_client_sco │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_nodes_node_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_optional_client_sc │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_protocol_mappers_m │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_roles_role_name_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_roles_role_name_co │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_scope_mappings_cli │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_client_uuid_scope_mappings_rea │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_clients_initial_access_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_components_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_default_default_client_scopes_clientsc │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_default_groups_groupid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_default_optional_client_scopes_clients │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_events │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_groups_group_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_groups_group_id_role_mappings_clients_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_groups_group_id_role_mappings_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_identity_provider_instances_alias_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_identity_provider_instances_alias_mapp │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_localization_locale_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_localization_locale_key_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_organizations_org_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_organizations_org_id_identity_provider │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_organizations_org_id_members_member_id │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_roles_by_id_role_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_roles_by_id_role_id_composites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_roles_role_name_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_roles_role_name_composites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_sessions_session_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_users_user_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_users_user_id_consents_client_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_users_user_id_credentials_credentialid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_users_user_id_federated_identity_provi │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_users_user_id_groups_groupid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_users_user_id_role_mappings_clients_cl │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_realms_realm_users_user_id_role_mappings_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_admin_events │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_attack_detection_brute_force_users_userid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_authenticator_providers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_client_authenticator_provi │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_config_description_provide │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_config_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_executions_executionid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_executions_executionid_con │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_flows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_flows_flowalias_executions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_flows_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_form_action_providers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_form_providers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_per_client_config_descript │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_required_actions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_required_actions_alias_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_required_actions_alias_con │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_authentication_unregistered_required_acti │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_policies_policies │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_policies_profiles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_registration_policy_providers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_scopes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_scopes_client_scope_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_scopes_client_scope_id_protocol_ma │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_scopes_client_scope_id_scope_mappi │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_session_stats │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_templates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_templates_client_scope_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_templates_client_scope_id_protocol │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_templates_client_scope_id_scope_ma │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_client_types │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_authz_resource_server │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_certificates_attr_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_client_secret │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_client_secret_rotated │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_default_client_scopes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_evaluate_scopes_gener │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_evaluate_scopes_proto │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_evaluate_scopes_scope │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_installation_provider │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_management_permission │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_offline_session_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_offline_sessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_optional_client_scope │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_protocol_mappers_mode │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_protocol_mappers_prot │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_roles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_roles_role_name_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_roles_role_name_compo │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_roles_role_name_group │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_roles_role_name_manag │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_roles_role_name_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_scope_mappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_scope_mappings_client │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_scope_mappings_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_scope_mappings_realm_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_service_account_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_session_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_test_nodes_available │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_client_uuid_user_sessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_clients_initial_access │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_components │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_components_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_components_id_sub_component_types │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_credential_registrators │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_default_default_client_scopes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_default_groups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_default_optional_client_scopes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_events │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_events_config │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_group_by_path_path_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_group_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_group_id_children │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_group_id_management_permissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_group_id_members │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_group_id_role_mappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_group_id_role_mappings_clients_cli │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_group_id_role_mappings_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_group_id_role_mappings_realm_avail │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_groups_group_id_role_mappings_realm_compo │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_identity_provider_instances │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_identity_provider_instances_alias_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_identity_provider_instances_alias_export │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_identity_provider_instances_alias_managem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_identity_provider_instances_alias_mapper_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_identity_provider_instances_alias_mappers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_identity_provider_instances_alias_reload_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_identity_provider_providers_provider_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_keys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_localization │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_localization_locale_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_localization_locale_key_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_organizations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_organizations_members_member_id_organizat │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_organizations_org_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_organizations_org_id_identity_providers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_organizations_org_id_identity_providers_a │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_organizations_org_id_members │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_organizations_org_id_members_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_organizations_org_id_members_member_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_organizations_org_id_members_member_id_or │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_by_id_role_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_by_id_role_id_composites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_by_id_role_id_composites_clients_cl │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_by_id_role_id_composites_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_by_id_role_id_management_permission │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_role_name_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_role_name_composites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_role_name_composites_clients_client │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_role_name_composites_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_role_name_groups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_role_name_management_permissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_roles_role_name_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_management_permissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_profile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_profile_metadata │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_configured_user_storage_cre │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_consents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_credentials │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_federated_identity │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_groups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_groups_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_offline_sessions_clientuuid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_role_mappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_role_mappings_clients_clien │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_role_mappings_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_role_mappings_realm_availab │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_role_mappings_realm_composi │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_sessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_realms_realm_users_user_id_unmanagedattributes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_admin_events │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_attack_detection_brute_force_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_authenticator_provi │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_client_authenticato │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_config │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_config_description_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_config_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_executions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_executions_executio │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_flows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_flows_flowalias_cop │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_flows_flowalias_exe │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_flows_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_form_action_provide │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_form_providers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_per_client_config_d │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_register_required_a │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_required_actions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_required_actions_al │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_authentication_unregistered_requir │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_description_converter │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_policies_policies │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_policies_profiles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_registration_policy_provide │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_scopes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_scopes_client_scope_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_scopes_client_scope_id_prot │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_scopes_client_scope_id_scop │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_session_stats │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_templates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_templates_client_scope_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_templates_client_scope_id_p │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_templates_client_scope_id_s │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_client_types │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_authz_resource │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_certificates_a │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_client_secret │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_client_secret_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_default_client │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_evaluate_scope │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_installation_p │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_management_per │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_nodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_nodes_node_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_offline_sessio │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_optional_clien │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_protocol_mappe │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_push_revocatio │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_registration_a │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_roles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_roles_role_nam │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_scope_mappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_service_accoun │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_session_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_test_nodes_ava │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_client_uuid_user_sessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_initial_access │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_clients_initial_access_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_components │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_components_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_components_id_sub_component_types │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_credential_registrators │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_default_default_client_scopes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_default_default_client_scopes_clie │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_default_groups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_default_groups_groupid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_default_optional_client_scopes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_default_optional_client_scopes_cli │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_events │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_events_config │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_group_by_path_path_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_groups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_groups_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_groups_group_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_groups_group_id_children │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_groups_group_id_management_permiss │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_groups_group_id_members │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_groups_group_id_role_mappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_groups_group_id_role_mappings_clie │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_groups_group_id_role_mappings_real │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_identity_provider_import_config │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_identity_provider_instances │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_identity_provider_instances_alias_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_identity_provider_providers_provid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_keys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_localization │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_localization_locale_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_localization_locale_key_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_logout_all │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_organizations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_organizations_members_member_id_or │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_organizations_org_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_organizations_org_id_identity_prov │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_organizations_org_id_members │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_organizations_org_id_members_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_organizations_org_id_members_invit │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_organizations_org_id_members_membe │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_partial_export │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_partialimport │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_push_revocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_by_id_role_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_by_id_role_id_composites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_by_id_role_id_composites_cli │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_by_id_role_id_composites_rea │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_by_id_role_id_management_per │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_role_name_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_role_name_composites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_role_name_composites_clients │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_role_name_composites_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_role_name_groups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_role_name_management_permiss │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_roles_role_name_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_sessions_session_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_testsmtpconnection │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_management_permissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_profile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_profile_metadata │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_configured_user_stor │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_consents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_consents_client_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_credentials │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_credentials_credenti │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_disable_credential_t │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_execute_actions_emai │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_federated_identity │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_federated_identity_p │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_groups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_groups_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_groups_groupid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_impersonation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_logout │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_offline_sessions_cli │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_reset_password │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_reset_password_email │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_role_mappings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_role_mappings_client │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_role_mappings_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_role_mappings_realm_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_send_verify_email │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_sessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_admin_realms_realm_users_user_id_unmanagedattributes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_config │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_executions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_executions_executionid_co │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_executions_executionid_lo │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_executions_executionid_ra │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_flows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_flows_flowalias_copy │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_flows_flowalias_execution │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_register_required_action │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_required_actions_alias_lo │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_authentication_required_actions_alias_ra │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_client_description_converter │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_client_scopes │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── attributes.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── attributes.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_client_scopes_client_scope_id_protocol_m │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_client_scopes_client_scope_id_scope_mapp │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_client_templates │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── attributes.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── attributes.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_client_templates_client_scope_id_protoco │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_client_templates_client_scope_id_scope_m │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── access.json │ │ │ │ ├── attributes.json │ │ │ │ ├── authenticationFlowBindingOverrides.json │ │ │ │ ├── authorizationSettings.json │ │ │ │ ├── authorizationSettings │ │ │ │ │ └── properties │ │ │ │ │ │ ├── authorizationSchema.json │ │ │ │ │ │ └── authorizationSchema │ │ │ │ │ │ └── properties │ │ │ │ │ │ └── resourceTypes.json │ │ │ │ └── registeredNodes.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── access.ts │ │ │ ├── attributes.ts │ │ │ ├── authenticationFlowBindingOverrides.ts │ │ │ ├── authorizationSettings.ts │ │ │ ├── authorizationSettings │ │ │ │ └── properties │ │ │ │ │ ├── authorizationSchema.ts │ │ │ │ │ └── authorizationSchema │ │ │ │ │ └── properties │ │ │ │ │ └── resourceTypes.ts │ │ │ └── registeredNodes.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_authz_resource_serve │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_certificates_attr_do │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_certificates_attr_ge │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_certificates_attr_up │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_client_secret │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_nodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_protocol_mappers_add │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_protocol_mappers_mod │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_push_revocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_registration_access_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_roles │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── attributes.json │ │ │ │ ├── composites.json │ │ │ │ └── composites │ │ │ │ │ └── properties │ │ │ │ │ └── client.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── attributes.ts │ │ │ ├── composites.ts │ │ │ └── composites │ │ │ │ └── properties │ │ │ │ └── client.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_roles_role_name_comp │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_scope_mappings_clien │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_client_uuid_scope_mappings_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_clients_initial_access │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_components │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_groups │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── access.json │ │ │ │ ├── attributes.json │ │ │ │ └── clientRoles.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── access.ts │ │ │ ├── attributes.ts │ │ │ └── clientRoles.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_groups_group_id_children │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── access.json │ │ │ │ ├── attributes.json │ │ │ │ └── clientRoles.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── access.ts │ │ │ ├── attributes.ts │ │ │ └── clientRoles.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_groups_group_id_role_mappings_clients_cl │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_groups_group_id_role_mappings_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_identity_provider_import_config │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_identity_provider_instances │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_identity_provider_instances_alias_mapper │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_localization_locale_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_logout_all │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_organizations │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── attributes.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── attributes.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_organizations_org_id_identity_providers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_organizations_org_id_members │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_organizations_org_id_members_invite_exis │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_organizations_org_id_members_invite_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_partial_export │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_partialimport │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_push_revocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_roles │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── attributes.json │ │ │ │ ├── composites.json │ │ │ │ └── composites │ │ │ │ │ └── properties │ │ │ │ │ └── client.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── attributes.ts │ │ │ ├── composites.ts │ │ │ └── composites │ │ │ │ └── properties │ │ │ │ └── client.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_roles_by_id_role_id_composites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_roles_role_name_composites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_testsmtpconnection │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── access.json │ │ │ │ ├── attributes.json │ │ │ │ ├── clientRoles.json │ │ │ │ └── userProfileMetadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── access.ts │ │ │ ├── attributes.ts │ │ │ ├── clientRoles.ts │ │ │ └── userProfileMetadata.ts │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_users_user_id_credentials_credentialid_m │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_users_user_id_federated_identity_provide │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_users_user_id_impersonation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_users_user_id_logout │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_users_user_id_role_mappings_clients_clie │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_realms_realm_users_user_id_role_mappings_realm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── adminPermissionsClient.json │ │ │ │ ├── adminPermissionsClient │ │ │ │ │ └── properties │ │ │ │ │ │ ├── access.json │ │ │ │ │ │ ├── attributes.json │ │ │ │ │ │ ├── authenticationFlowBindingOverrides.json │ │ │ │ │ │ ├── authorizationSettings.json │ │ │ │ │ │ ├── authorizationSettings │ │ │ │ │ │ └── properties │ │ │ │ │ │ │ ├── authorizationSchema.json │ │ │ │ │ │ │ └── authorizationSchema │ │ │ │ │ │ │ └── properties │ │ │ │ │ │ │ └── resourceTypes.json │ │ │ │ │ │ └── registeredNodes.json │ │ │ │ ├── attributes.json │ │ │ │ ├── browserSecurityHeaders.json │ │ │ │ ├── clientPolicies.json │ │ │ │ ├── clientProfiles.json │ │ │ │ ├── clientScopeMappings.json │ │ │ │ ├── components.json │ │ │ │ ├── defaultRole.json │ │ │ │ ├── defaultRole │ │ │ │ │ └── properties │ │ │ │ │ │ ├── attributes.json │ │ │ │ │ │ ├── composites.json │ │ │ │ │ │ └── composites │ │ │ │ │ │ └── properties │ │ │ │ │ │ └── client.json │ │ │ │ ├── localizationTexts.json │ │ │ │ ├── roles.json │ │ │ │ ├── roles │ │ │ │ │ └── properties │ │ │ │ │ │ └── client.json │ │ │ │ └── smtpServer.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── adminPermissionsClient.ts │ │ │ ├── adminPermissionsClient │ │ │ │ └── properties │ │ │ │ │ ├── access.ts │ │ │ │ │ ├── attributes.ts │ │ │ │ │ ├── authenticationFlowBindingOverrides.ts │ │ │ │ │ ├── authorizationSettings.ts │ │ │ │ │ ├── authorizationSettings │ │ │ │ │ └── properties │ │ │ │ │ │ ├── authorizationSchema.ts │ │ │ │ │ │ └── authorizationSchema │ │ │ │ │ │ └── properties │ │ │ │ │ │ └── resourceTypes.ts │ │ │ │ │ └── registeredNodes.ts │ │ │ ├── attributes.ts │ │ │ ├── browserSecurityHeaders.ts │ │ │ ├── clientPolicies.ts │ │ │ ├── clientProfiles.ts │ │ │ ├── clientScopeMappings.ts │ │ │ ├── components.ts │ │ │ ├── defaultRole.ts │ │ │ ├── defaultRole │ │ │ │ └── properties │ │ │ │ │ ├── attributes.ts │ │ │ │ │ ├── composites.ts │ │ │ │ │ └── composites │ │ │ │ │ └── properties │ │ │ │ │ └── client.ts │ │ │ ├── localizationTexts.ts │ │ │ ├── roles.ts │ │ │ ├── roles │ │ │ │ └── properties │ │ │ │ │ └── client.ts │ │ │ └── smtpServer.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_authentication_config_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_authentication_flows_flowalias_executions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_authentication_flows_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_authentication_required_actions_alias_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_authentication_required_actions_alias_con │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_client_policies_policies │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_client_policies_profiles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_client_scopes_client_scope_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── attributes.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── attributes.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_client_scopes_client_scope_id_protocol_ma │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_client_templates_client_scope_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── attributes.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── attributes.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_client_templates_client_scope_id_protocol │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_client_types │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_clients_client_uuid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── access.json │ │ │ │ ├── attributes.json │ │ │ │ ├── authenticationFlowBindingOverrides.json │ │ │ │ ├── authorizationSettings.json │ │ │ │ ├── authorizationSettings │ │ │ │ │ └── properties │ │ │ │ │ │ ├── authorizationSchema.json │ │ │ │ │ │ └── authorizationSchema │ │ │ │ │ │ └── properties │ │ │ │ │ │ └── resourceTypes.json │ │ │ │ └── registeredNodes.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── access.ts │ │ │ ├── attributes.ts │ │ │ ├── authenticationFlowBindingOverrides.ts │ │ │ ├── authorizationSettings.ts │ │ │ ├── authorizationSettings │ │ │ │ └── properties │ │ │ │ │ ├── authorizationSchema.ts │ │ │ │ │ └── authorizationSchema │ │ │ │ │ └── properties │ │ │ │ │ └── resourceTypes.ts │ │ │ └── registeredNodes.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_clients_client_uuid_authz_resource_server │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_clients_client_uuid_default_client_scopes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_clients_client_uuid_management_permission │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── scopePermissions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── scopePermissions.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_clients_client_uuid_optional_client_scope │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_clients_client_uuid_protocol_mappers_mode │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_clients_client_uuid_roles_role_name_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── attributes.json │ │ │ │ ├── composites.json │ │ │ │ └── composites │ │ │ │ │ └── properties │ │ │ │ │ └── client.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── attributes.ts │ │ │ ├── composites.ts │ │ │ └── composites │ │ │ │ └── properties │ │ │ │ └── client.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_clients_client_uuid_roles_role_name_manag │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── scopePermissions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── scopePermissions.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_components_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_default_default_client_scopes_clientscope │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_default_groups_groupid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_default_optional_client_scopes_clientscop │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_events_config │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_groups_group_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── access.json │ │ │ │ ├── attributes.json │ │ │ │ └── clientRoles.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── access.ts │ │ │ ├── attributes.ts │ │ │ └── clientRoles.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_groups_group_id_management_permissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── scopePermissions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── scopePermissions.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_identity_provider_instances_alias_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_identity_provider_instances_alias_managem │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── scopePermissions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── scopePermissions.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_identity_provider_instances_alias_mappers │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_localization_locale_key_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_organizations_org_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── attributes.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── attributes.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_roles_by_id_role_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── attributes.json │ │ │ │ ├── composites.json │ │ │ │ └── composites │ │ │ │ │ └── properties │ │ │ │ │ └── client.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── attributes.ts │ │ │ ├── composites.ts │ │ │ └── composites │ │ │ │ └── properties │ │ │ │ └── client.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_roles_by_id_role_id_management_permission │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── scopePermissions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── scopePermissions.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_roles_role_name_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── attributes.json │ │ │ │ ├── composites.json │ │ │ │ └── composites │ │ │ │ │ └── properties │ │ │ │ │ └── client.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── attributes.ts │ │ │ ├── composites.ts │ │ │ └── composites │ │ │ │ └── properties │ │ │ │ └── client.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_roles_role_name_management_permissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── scopePermissions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── scopePermissions.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_users_management_permissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── scopePermissions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── scopePermissions.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_users_profile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_users_user_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── access.json │ │ │ │ ├── attributes.json │ │ │ │ ├── clientRoles.json │ │ │ │ └── userProfileMetadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── access.ts │ │ │ ├── attributes.ts │ │ │ ├── clientRoles.ts │ │ │ └── userProfileMetadata.ts │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_users_user_id_credentials_credentialid_us │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_users_user_id_disable_credential_types │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_users_user_id_execute_actions_email │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_users_user_id_groups_groupid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_users_user_id_reset_password │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_realms_realm_users_user_id_reset_password_email │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── put_admin_realms_realm_users_user_id_send_verify_email │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── korea-weather ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── tool_get_air_quality_by_station_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── tool_get_air_quality_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── tool_get_current_weather_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── tool_get_nearest_station_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── tool_get_weather_forecast_post │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── tool_list_weather_stations_post │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── lambda-ai ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── addsshkey │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createfilesystem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletesshkey │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── filesystemdelete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── firewallruleslist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── firewallrulesset │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinstance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── launchinstance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listfilesystems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listimages │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listinstances │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listinstancetypes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listsshkeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinstance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── restartinstance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── terminateinstance │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── mintlify ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── delete_plants_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_plants │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── post_plants │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── open-weather ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ └── getweatherdata │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── portkey-ai ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── cancelbatch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── cancelfinetuningjob │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── cancelrun │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── cancelvectorstorefilebatch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createassistant │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── metadata.json │ │ │ │ ├── tool_resources.json │ │ │ │ └── tool_resources │ │ │ │ │ └── properties │ │ │ │ │ ├── code_interpreter.json │ │ │ │ │ └── file_search.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── metadata.ts │ │ │ ├── tool_resources.ts │ │ │ └── tool_resources │ │ │ │ └── properties │ │ │ │ ├── code_interpreter.ts │ │ │ │ └── file_search.ts │ │ │ └── root.ts │ │ ├── createbatch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createchatcompletion │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── logit_bias.json │ │ │ │ ├── response_format.json │ │ │ │ ├── stream_options.json │ │ │ │ ├── thinking.json │ │ │ │ └── x-portkey-metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── logit_bias.ts │ │ │ ├── response_format.ts │ │ │ ├── stream_options.ts │ │ │ ├── thinking.ts │ │ │ └── x-portkey-metadata.ts │ │ │ └── root.ts │ │ ├── createcompletion │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── logit_bias.json │ │ │ │ └── stream_options.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── logit_bias.ts │ │ │ └── stream_options.ts │ │ │ └── root.ts │ │ ├── createconfig │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── createembedding │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createfeedback │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── createfile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createfinetuningjob │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createimage │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createimageedit │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createimagevariation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createlabel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createmessage │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── createmoderation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createprompt │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── parameters.json │ │ │ │ ├── template_metadata.json │ │ │ │ └── tool_choice.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── parameters.ts │ │ │ ├── template_metadata.ts │ │ │ └── tool_choice.ts │ │ │ └── root.ts │ │ ├── createpromptcompletion │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createpromptpartial │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createpromptrender │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createresponse │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createrun │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── metadata.json │ │ │ │ └── truncation_strategy.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── metadata.ts │ │ │ └── truncation_strategy.ts │ │ │ └── root.ts │ │ ├── createspeech │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createthread │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── metadata.json │ │ │ │ ├── tool_resources.json │ │ │ │ └── tool_resources │ │ │ │ │ └── properties │ │ │ │ │ ├── code_interpreter.json │ │ │ │ │ └── file_search.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── metadata.ts │ │ │ ├── tool_resources.ts │ │ │ └── tool_resources │ │ │ │ └── properties │ │ │ │ ├── code_interpreter.ts │ │ │ │ └── file_search.ts │ │ │ └── root.ts │ │ ├── createthreadandrun │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── metadata.json │ │ │ │ ├── thread.json │ │ │ │ ├── thread │ │ │ │ │ └── properties │ │ │ │ │ │ ├── metadata.json │ │ │ │ │ │ ├── tool_resources.json │ │ │ │ │ │ └── tool_resources │ │ │ │ │ │ └── properties │ │ │ │ │ │ ├── code_interpreter.json │ │ │ │ │ │ └── file_search.json │ │ │ │ ├── tool_resources.json │ │ │ │ ├── tool_resources │ │ │ │ │ └── properties │ │ │ │ │ │ ├── code_interpreter.json │ │ │ │ │ │ └── file_search.json │ │ │ │ └── truncation_strategy.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── metadata.ts │ │ │ ├── thread.ts │ │ │ ├── thread │ │ │ │ └── properties │ │ │ │ │ ├── metadata.ts │ │ │ │ │ ├── tool_resources.ts │ │ │ │ │ └── tool_resources │ │ │ │ │ └── properties │ │ │ │ │ ├── code_interpreter.ts │ │ │ │ │ └── file_search.ts │ │ │ ├── tool_resources.ts │ │ │ ├── tool_resources │ │ │ │ └── properties │ │ │ │ │ ├── code_interpreter.ts │ │ │ │ │ └── file_search.ts │ │ │ └── truncation_strategy.ts │ │ │ └── root.ts │ │ ├── createtranscription │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createtranslation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createvectorstore │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── chunking_strategy.json │ │ │ │ ├── expires_after.json │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── chunking_strategy.ts │ │ │ ├── expires_after.ts │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── createvectorstorefile │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── chunking_strategy.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── chunking_strategy.ts │ │ │ └── root.ts │ │ ├── createvectorstorefilebatch │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── chunking_strategy.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── chunking_strategy.ts │ │ │ └── root.ts │ │ ├── delete_admin_users_invites_inviteid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_users_userid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_workspaces_workspaceid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_admin_workspaces_workspaceid_users_userid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_api_keys_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_collections_collectionid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── delete_virtual_keys_slug_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteassistant │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteconfig │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletefile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletelabel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletemessage │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletemodel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteprompt │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletepromptpartial │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteresponse │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletethread │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletevectorstore │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletevectorstorefile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── downloadfile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_users_invites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_users_invites_inviteid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_users_userid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_workspaces │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_workspaces_workspaceid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_workspaces_workspaceid_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_admin_workspaces_workspaceid_users_userid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_cache_hit_rate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_cache_latency │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_cost │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_errors │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_errors_rate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_errors_stacks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_errors_status_codes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_feedbacks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_feedbacks_ai_models │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_feedbacks_scores │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_feedbacks_weighted │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_latency │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_requests │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_requests_rescued │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_tokens │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_graphs_users_requests │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_groups_ai_models │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_groups_metadata_metadatakey_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_groups_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_analytics_summary_cache │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_api_keys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_api_keys_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_audit_logs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_collections │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_collections_collectionid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_logs_exports │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_logs_exports_exportid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_logs_exports_exportid_download │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_virtual_keys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_virtual_keys_slug_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getassistant │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getconfig │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlabel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getmessage │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprompt │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpromptbyversion │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpromptpartial │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpromptpartialversions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpromptversions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getresponse │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrun │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrunstep │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getthread │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getvectorstore │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getvectorstorefile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getvectorstorefilebatch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── invites_create │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── workspace_api_key_details.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── workspace_api_key_details.ts │ │ │ └── root.ts │ │ ├── listassistants │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listbatches │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listconfigs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listfiles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listfilesinvectorstorebatch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listfinetuningevents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listfinetuningjobcheckpoints │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listinputitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listlabels │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listmessages │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listmodels │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listpaginatedfinetuningjobs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listpromptpartials │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listprompts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listruns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listrunsteps │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listvectorstorefiles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listvectorstores │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── modifyassistant │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── metadata.json │ │ │ │ ├── tool_resources.json │ │ │ │ └── tool_resources │ │ │ │ │ └── properties │ │ │ │ │ ├── code_interpreter.json │ │ │ │ │ └── file_search.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── metadata.ts │ │ │ ├── tool_resources.ts │ │ │ └── tool_resources │ │ │ │ └── properties │ │ │ │ ├── code_interpreter.ts │ │ │ │ └── file_search.ts │ │ │ └── root.ts │ │ ├── modifymessage │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── modifyrun │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── modifythread │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── metadata.json │ │ │ │ ├── tool_resources.json │ │ │ │ └── tool_resources │ │ │ │ │ └── properties │ │ │ │ │ ├── code_interpreter.json │ │ │ │ │ └── file_search.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── metadata.ts │ │ │ ├── tool_resources.ts │ │ │ └── tool_resources │ │ │ │ └── properties │ │ │ │ ├── code_interpreter.ts │ │ │ │ └── file_search.ts │ │ │ └── root.ts │ │ ├── modifyvectorstore │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── expires_after.json │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── expires_after.ts │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── parameters_collections_collectionid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_users_invites_inviteid_resend │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_admin_workspaces │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── defaults.json │ │ │ │ └── defaults │ │ │ │ │ └── properties │ │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── defaults.ts │ │ │ └── defaults │ │ │ │ └── properties │ │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── post_admin_workspaces_workspaceid_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_api_keys_type_sub_type_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── defaults.json │ │ │ │ ├── defaults │ │ │ │ │ └── properties │ │ │ │ │ │ └── metadata.json │ │ │ │ └── usage_limits.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── defaults.ts │ │ │ ├── defaults │ │ │ │ └── properties │ │ │ │ │ └── metadata.ts │ │ │ └── usage_limits.ts │ │ │ └── root.ts │ │ ├── post_collections │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_logs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_logs_exports │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── filters.json │ │ │ │ └── filters │ │ │ │ │ └── properties │ │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── filters.ts │ │ │ └── filters │ │ │ │ └── properties │ │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── post_logs_exports_exportid_cancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_logs_exports_exportid_start │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_virtual_keys │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── rate_limits.json │ │ │ │ └── usage_limits.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── rate_limits.ts │ │ │ └── usage_limits.ts │ │ │ └── root.ts │ │ ├── put_admin_users_userid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_admin_workspaces_workspaceid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── defaults.json │ │ │ │ └── defaults │ │ │ │ │ └── properties │ │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── defaults.ts │ │ │ └── defaults │ │ │ │ └── properties │ │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── put_admin_workspaces_workspaceid_users_userid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_api_keys_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── defaults.json │ │ │ │ ├── defaults │ │ │ │ │ └── properties │ │ │ │ │ │ └── metadata.json │ │ │ │ └── usage_limits.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── defaults.ts │ │ │ ├── defaults │ │ │ │ └── properties │ │ │ │ │ └── metadata.ts │ │ │ └── usage_limits.ts │ │ │ └── root.ts │ │ ├── put_collections_collectionid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── put_logs_exports_exportid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── filters.json │ │ │ │ └── filters │ │ │ │ │ └── properties │ │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── filters.ts │ │ │ └── filters │ │ │ │ └── properties │ │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── put_virtual_keys_slug_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── usage_limits.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── usage_limits.ts │ │ │ └── root.ts │ │ ├── retrievebatch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── retrievefile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── retrievefinetuningjob │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── retrievemodel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_admin_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_admin_users_invites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_admin_users_invites_inviteid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_admin_users_invites_inviteid_resend │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_admin_users_userid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_admin_workspaces │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_admin_workspaces_workspaceid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_admin_workspaces_workspaceid_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_admin_workspaces_workspaceid_users_userid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_cache_hit_rate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_cache_latency │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_cost │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_errors │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_errors_rate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_errors_stacks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_errors_status_codes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_feedbacks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_feedbacks_ai_models │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_feedbacks_scores │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_feedbacks_weighted │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_latency │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_requests │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_requests_rescued │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_tokens │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_graphs_users_requests │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_groups_ai_models │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_groups_metadata_metadatakey_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_groups_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_analytics_summary_cache │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_api_keys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_api_keys_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_api_keys_type_sub_type_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_assistants │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_assistants_assistant_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_audio_speech │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_audio_transcriptions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_audio_translations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_audit_logs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_batches │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_batches_batch_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_batches_batch_id_cancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_chat_completions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_collections │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_collections_collectionid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_completions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_configs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_configs_slug_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_embeddings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_feedback │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_feedback_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_files │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_files_file_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_files_file_id_content │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_fine_tuning_jobs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_fine_tuning_jobs_fine_tuning_job_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_fine_tuning_jobs_fine_tuning_job_id_cancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_fine_tuning_jobs_fine_tuning_job_id_checkpoints │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_fine_tuning_jobs_fine_tuning_job_id_events │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_images_edits │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_images_generations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_images_variations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_labels │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_labels_labelid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_logs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_logs_exports │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_logs_exports_exportid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_logs_exports_exportid_cancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_logs_exports_exportid_download │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_logs_exports_exportid_start │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_moderations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_partials │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_partials_promptpartialid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_partials_promptpartialid_makedefault │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_partials_promptpartialid_versions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_promptid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_promptid_completions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_promptid_makedefault │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_promptid_render │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_promptid_versions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_prompts_promptid_versions_versionid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_responses │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_responses_response_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_responses_response_id_input_items │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_runs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_thread_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_thread_id_messages │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_thread_id_messages_message_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_thread_id_runs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_thread_id_runs_run_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_thread_id_runs_run_id_cancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_thread_id_runs_run_id_steps │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_thread_id_runs_run_id_steps_step_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_threads_thread_id_runs_run_id_submit_tool_outputs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_virtual_keys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── servers_virtual_keys_slug_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── submittoolouputstorun │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateconfig │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── updatefeedback │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── metadata.ts │ │ │ └── root.ts │ │ ├── updatelabel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateprompt │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── parameters.json │ │ │ │ ├── prompt_metadata.json │ │ │ │ └── tool_choice.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── parameters.ts │ │ │ ├── prompt_metadata.ts │ │ │ └── tool_choice.ts │ │ │ └── root.ts │ │ ├── updatepromptdefault │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatepromptpartial │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatepromptpartialdefault │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── updatepromptversion │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── sanity ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── acceptinvite │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── acceptrequest │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── adddefaultroletousers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── addroletouser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── checkuserpermissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createinvite │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createpermission │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ ├── createrequest │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createrobot │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── declinerequest │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletepermission │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleterobot │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleterole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvitebytoken │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvites │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getmypermissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getmyrequests │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpermission │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpermissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrequests │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrobot │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrobots │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrole │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getroles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuserpermissions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getusers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removerolefromuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── removeuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── revokeinvite │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatepermission │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── config.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── config.ts │ │ │ └── root.ts │ │ └── updaterole │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── scarf ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── exportentityaggregates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpackagebyname │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── getuserinformation │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── spotify ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── add_to_queue │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── add_tracks_to_playlist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── change_playlist_details │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── check_current_user_follows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── check_if_user_follows_playlist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── check_users_saved_albums │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── check_users_saved_audiobooks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── check_users_saved_episodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── check_users_saved_shows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── check_users_saved_tracks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── create_playlist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── follow_artists_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── follow_playlist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_a_categories_playlists │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_a_category │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_a_chapter │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_a_list_of_current_users_playlists │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_a_show │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_a_shows_episodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_a_users_available_devices │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_an_album │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_an_albums_tracks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_an_artist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_an_artists_albums │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_an_artists_related_artists │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_an_artists_top_tracks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_an_audiobook │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_an_episode │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_audio_analysis │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_audio_features │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_audiobook_chapters │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_available_markets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_categories │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_current_users_profile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_featured_playlists │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_followed │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_information_about_the_users_current_playback │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_list_users_playlists │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_multiple_albums │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_multiple_artists │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_multiple_audiobooks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_multiple_episodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_multiple_shows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_new_releases │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_playlist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_playlist_cover │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_playlists_tracks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_queue │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_recently_played │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_recommendation_genres │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_recommendations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_several_audio_features │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_several_chapters │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_several_tracks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_the_users_currently_playing_track │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_track │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_users_profile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_users_saved_albums │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_users_saved_audiobooks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_users_saved_episodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_users_saved_shows │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_users_saved_tracks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_users_top_artists │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_users_top_tracks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── pause_a_users_playback │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── remove_albums_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── remove_audiobooks_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── remove_episodes_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── remove_shows_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── remove_tracks_playlist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── remove_tracks_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── reorder_or_replace_playlists_tracks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── save_albums_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── save_audiobooks_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── save_episodes_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── save_shows_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── save_tracks_user │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── search │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── seek_to_position_in_currently_playing_track │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── set_repeat_mode_on_users_playback │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── set_volume_for_users_playback │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── skip_users_playback_to_next_track │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── skip_users_playback_to_previous_track │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── start_a_users_playback │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── offset.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── offset.ts │ │ │ └── root.ts │ │ ├── toggle_shuffle_for_users_playback │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── transfer_a_users_playback │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── unfollow_artists_users │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── unfollow_playlist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── upload_custom_playlist_cover │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── stripe ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── deleteaccountsaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteaccountsaccountbankaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteaccountsaccountexternalaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteaccountsaccountpeopleperson │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteaccountsaccountpersonsperson │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteapplepaydomainsdomain │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecouponscoupon │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomerscustomer │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomerscustomerbankaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomerscustomercardsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomerscustomerdiscount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomerscustomersourcesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomerscustomersubscriptionssubscriptionexposedid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomerscustomersubscriptionssubscriptionexposediddiscoun │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletecustomerscustomertaxidsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteephemeralkeyskey │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteinvoiceitemsinvoiceitem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteinvoicesinvoice │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteplansplan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteproductsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteproductsproductfeaturesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteradarvaluelistitemsitem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteradarvaluelistsvaluelist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletesubscriptionitemsitem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletesubscriptionssubscriptionexposedid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletesubscriptionssubscriptionexposediddiscount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletetaxidsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteterminalconfigurationsconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteterminallocationslocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteterminalreadersreader │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletetesthelperstestclockstestclock │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletewebhookendpointswebhookendpoint │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccountsaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccountsaccountbankaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccountsaccountcapabilities │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccountsaccountcapabilitiescapability │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccountsaccountexternalaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccountsaccountexternalaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccountsaccountpeople │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── relationship.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── relationship.ts │ │ │ └── root.ts │ │ ├── getaccountsaccountpeopleperson │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getaccountsaccountpersons │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── relationship.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── relationship.ts │ │ │ └── root.ts │ │ ├── getaccountsaccountpersonsperson │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapplepaydomains │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapplepaydomainsdomain │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapplicationfees │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapplicationfeesfeerefundsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapplicationfeesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapplicationfeesidrefunds │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getappssecrets │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── scope.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── scope.ts │ │ │ └── root.ts │ │ ├── getappssecretsfind │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── scope.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── scope.ts │ │ │ └── root.ts │ │ ├── getbalance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbalancehistory │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbalancehistoryid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbalancetransactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbalancetransactionsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingalerts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingalertsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingcreditbalancesummary │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── filter.json │ │ │ │ └── filter │ │ │ │ │ └── properties │ │ │ │ │ └── applicability_scope.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── filter.ts │ │ │ └── filter │ │ │ │ └── properties │ │ │ │ └── applicability_scope.ts │ │ │ └── root.ts │ │ ├── getbillingcreditbalancetransactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingcreditbalancetransactionsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingcreditgrants │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingcreditgrantsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingmeters │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingmetersid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingmetersideventsummaries │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingportalconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingportalconfigurationsconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcharges │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getchargescharge │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getchargeschargedispute │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getchargeschargerefunds │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getchargeschargerefundsrefund │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getchargessearch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcheckoutsessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── customer_details.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── customer_details.ts │ │ │ └── root.ts │ │ ├── getcheckoutsessionssession │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcheckoutsessionssessionlineitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getclimateorders │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getclimateordersorder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getclimateproducts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getclimateproductsproduct │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getclimatesuppliers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getclimatesupplierssupplier │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getconfirmationtokensconfirmationtoken │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcountryspecs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcountryspecscountry │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcoupons │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcouponscoupon │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcreditnotes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcreditnotescreditnotelines │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcreditnotesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcreditnotespreview │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── metadata.json │ │ │ │ └── shipping_cost.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── metadata.ts │ │ │ └── shipping_cost.ts │ │ │ └── root.ts │ │ ├── getcreditnotespreviewlines │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── metadata.json │ │ │ │ └── shipping_cost.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── metadata.ts │ │ │ └── shipping_cost.ts │ │ │ └── root.ts │ │ ├── getcustomers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomer │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomerbalancetransactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomerbalancetransactionstransaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomerbankaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomerbankaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomercards │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomercardsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomercashbalance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomercashbalancetransactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomercashbalancetransactionstransaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomerdiscount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomerpaymentmethods │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomerpaymentmethodspaymentmethod │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomersources │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomersourcesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomersubscriptions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomersubscriptionssubscriptionexposedid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomersubscriptionssubscriptionexposediddiscount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomertaxids │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerscustomertaxidsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getcustomerssearch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdisputes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getdisputesdispute │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentitlementsactiveentitlements │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentitlementsactiveentitlementsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentitlementsfeatures │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getentitlementsfeaturesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getevents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── geteventsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getexchangerates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getexchangeratesrateid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfilelinks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfilelinkslink │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfiles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfilesfile │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfinancialconnectionsaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── account_holder.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── account_holder.ts │ │ │ └── root.ts │ │ ├── getfinancialconnectionsaccountsaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfinancialconnectionsaccountsaccountowners │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfinancialconnectionssessionssession │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getfinancialconnectionstransactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── transaction_refresh.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── transaction_refresh.ts │ │ │ └── root.ts │ │ ├── getfinancialconnectionstransactionstransaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getforwardingrequests │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── created.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── created.ts │ │ │ └── root.ts │ │ ├── getforwardingrequestsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getidentityverificationreports │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getidentityverificationreportsreport │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getidentityverificationsessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getidentityverificationsessionssession │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvoiceitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvoiceitemsinvoiceitem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvoicepayments │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── payment.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── payment.ts │ │ │ └── root.ts │ │ ├── getinvoicepaymentsinvoicepayment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvoicerenderingtemplates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvoicerenderingtemplatestemplate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvoices │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvoicesinvoice │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvoicesinvoicelines │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinvoicessearch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingauthorizations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingauthorizationsauthorization │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingcardholders │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingcardholderscardholder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingcards │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingcardscard │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingdisputes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingdisputesdispute │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingpersonalizationdesigns │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── preferences.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── preferences.ts │ │ │ └── root.ts │ │ ├── getissuingpersonalizationdesignspersonalizationdesign │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingphysicalbundles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingphysicalbundlesphysicalbundle │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingsettlementssettlement │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingtokens │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingtokenstoken │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingtransactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getissuingtransactionstransaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlinkaccountsessionssession │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlinkedaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── account_holder.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── account_holder.ts │ │ │ └── root.ts │ │ ├── getlinkedaccountsaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getlinkedaccountsaccountowners │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getmandatesmandate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentintents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentintentsintent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentintentssearch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentlinks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentlinkspaymentlink │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentlinkspaymentlinklineitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentmethodconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentmethodconfigurationsconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentmethoddomains │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentmethoddomainspaymentmethoddomain │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentmethods │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpaymentmethodspaymentmethod │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpayouts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpayoutspayout │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getplans │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getplansplan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getprices │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── recurring.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── recurring.ts │ │ │ └── root.ts │ │ ├── getpricesprice │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpricessearch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getproducts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getproductsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getproductsproductfeatures │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getproductsproductfeaturesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getproductssearch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpromotioncodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpromotioncodespromotioncode │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getquotes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getquotesquote │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getquotesquotecomputedupfrontlineitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getquotesquotelineitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getquotesquotepdf │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getradarearlyfraudwarnings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getradarearlyfraudwarningsearlyfraudwarning │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getradarvaluelistitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getradarvaluelistitemsitem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getradarvaluelists │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getradarvaluelistsvaluelist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrefunds │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getrefundsrefund │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getreportingreportruns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getreportingreportrunsreportrun │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getreportingreporttypes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getreportingreporttypesreporttype │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getreviews │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getreviewsreview │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsetupattempts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsetupintents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsetupintentsintent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getshippingrates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getshippingratesshippingratetoken │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsigmascheduledqueryruns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsigmascheduledqueryrunsscheduledqueryrun │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsourcessource │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsourcessourcemandatenotificationsmandatenotification │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsourcessourcesourcetransactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsourcessourcesourcetransactionssourcetransaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsubscriptionitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsubscriptionitemsitem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsubscriptions │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── automatic_tax.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── automatic_tax.ts │ │ │ └── root.ts │ │ ├── getsubscriptionschedules │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsubscriptionschedulesschedule │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsubscriptionssearch │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsubscriptionssubscriptionexposedid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxcalculationscalculation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxcalculationscalculationlineitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxcodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxcodesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxids │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── owner.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── owner.ts │ │ │ └── root.ts │ │ ├── gettaxidsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxrates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxratestaxrate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxregistrations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxregistrationsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxsettings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxtransactionstransaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettaxtransactionstransactionlineitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getterminalconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getterminalconfigurationsconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getterminallocations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getterminallocationslocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getterminalreaders │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getterminalreadersreader │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettesthelperstestclocks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettesthelperstestclockstestclock │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettokenstoken │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettopups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettopupstopup │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettransfers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettransfersidreversals │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettransferstransfer │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettransferstransferreversalsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasurycreditreversals │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasurycreditreversalscreditreversal │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasurydebitreversals │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasurydebitreversalsdebitreversal │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryfinancialaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryfinancialaccountsfinancialaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryfinancialaccountsfinancialaccountfeatures │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryinboundtransfers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryinboundtransfersid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryoutboundpayments │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryoutboundpaymentsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryoutboundtransfers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryoutboundtransfersoutboundtransfer │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryreceivedcredits │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── linked_flows.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── linked_flows.ts │ │ │ └── root.ts │ │ ├── gettreasuryreceivedcreditsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryreceiveddebits │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasuryreceiveddebitsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasurytransactionentries │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasurytransactionentriesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettreasurytransactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── status_transitions.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── status_transitions.ts │ │ │ └── root.ts │ │ ├── gettreasurytransactionsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getwebhookendpoints │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getwebhookendpointswebhookendpoint │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountlinks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountbankaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountbankaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountcapabilitiescapability │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountexternalaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountexternalaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountloginlinks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountpeople │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountpeopleperson │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountpersons │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountpersonsperson │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsaccountreject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postaccountsessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postapplepaydomains │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postapplicationfeesfeerefundsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postapplicationfeesidrefund │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postapplicationfeesidrefunds │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postappssecrets │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postappssecretsdelete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingalerts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingalertsidactivate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingalertsidarchive │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingalertsiddeactivate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingcreditgrants │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingcreditgrantsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingcreditgrantsidexpire │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingcreditgrantsidvoid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingmetereventadjustments │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingmeterevents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingmeters │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingmetersid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingmetersiddeactivate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingmetersidreactivate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingportalconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingportalconfigurationsconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postbillingportalsessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcharges │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postchargescharge │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postchargeschargecapture │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postchargeschargedispute │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postchargeschargedisputeclose │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postchargeschargerefund │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postchargeschargerefunds │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postchargeschargerefundsrefund │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcheckoutsessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcheckoutsessionssession │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcheckoutsessionssessionexpire │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postclimateorders │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postclimateordersorder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postclimateordersordercancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcoupons │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcouponscoupon │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcreditnotes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcreditnotesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcreditnotesidvoid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomer │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomerbalancetransactions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomerbalancetransactionstransaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomerbankaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomerbankaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomerbankaccountsidverify │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomercards │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomercardsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomercashbalance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomerfundinginstructions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomersources │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomersourcesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomersourcesidverify │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomersubscriptions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomersubscriptionssubscriptionexposedid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomerscustomertaxids │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postcustomersessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postdisputesdispute │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postdisputesdisputeclose │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postentitlementsfeatures │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postentitlementsfeaturesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postephemeralkeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postexternalaccountsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postfilelinks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postfilelinkslink │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postfiles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postfinancialconnectionsaccountsaccountdisconnect │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postfinancialconnectionsaccountsaccountrefresh │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postfinancialconnectionsaccountsaccountsubscribe │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postfinancialconnectionsaccountsaccountunsubscribe │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postfinancialconnectionssessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postforwardingrequests │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postidentityverificationsessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postidentityverificationsessionssession │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postidentityverificationsessionssessioncancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postidentityverificationsessionssessionredact │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoiceitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoiceitemsinvoiceitem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicerenderingtemplatestemplatearchive │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicerenderingtemplatestemplateunarchive │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoices │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicescreatepreview │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoice │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoiceaddlines │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoicefinalize │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoicelineslineitemid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoicemarkuncollectible │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoicepay │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoiceremovelines │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoicesend │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoiceupdatelines │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postinvoicesinvoicevoid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingauthorizationsauthorization │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingauthorizationsauthorizationapprove │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingauthorizationsauthorizationdecline │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingcardholders │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingcardholderscardholder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingcards │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingcardscard │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingdisputes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingdisputesdispute │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingdisputesdisputesubmit │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingpersonalizationdesigns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingpersonalizationdesignspersonalizationdesign │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingsettlementssettlement │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingtokenstoken │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postissuingtransactionstransaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postlinkaccountsessions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postlinkedaccountsaccountdisconnect │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postlinkedaccountsaccountrefresh │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentintents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentintentsintent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentintentsintentapplycustomerbalance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentintentsintentcancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentintentsintentcapture │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentintentsintentconfirm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentintentsintentincrementauthorization │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentintentsintentverifymicrodeposits │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentlinks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentlinkspaymentlink │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentmethodconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentmethodconfigurationsconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentmethoddomains │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentmethoddomainspaymentmethoddomain │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentmethoddomainspaymentmethoddomainvalidate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentmethods │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentmethodspaymentmethod │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentmethodspaymentmethodattach │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpaymentmethodspaymentmethoddetach │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpayouts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpayoutspayout │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpayoutspayoutcancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpayoutspayoutreverse │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postplans │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postplansplan │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postprices │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpricesprice │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postproducts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postproductsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postproductsproductfeatures │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpromotioncodes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postpromotioncodespromotioncode │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postquotes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postquotesquote │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postquotesquoteaccept │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postquotesquotecancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postquotesquotefinalize │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postradarvaluelistitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postradarvaluelists │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postradarvaluelistsvaluelist │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postrefunds │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postrefundsrefund │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postrefundsrefundcancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postreportingreportruns │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postreviewsreviewapprove │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsetupintents │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsetupintentsintent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsetupintentsintentcancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsetupintentsintentconfirm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsetupintentsintentverifymicrodeposits │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postshippingrates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postshippingratesshippingratetoken │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsigmasavedqueriesid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsources │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsourcessource │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsourcessourceverify │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsubscriptionitems │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsubscriptionitemsitem │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsubscriptions │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsubscriptionschedules │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsubscriptionschedulesschedule │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsubscriptionschedulesschedulecancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsubscriptionschedulesschedulerelease │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsubscriptionssubscriptionexposedid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postsubscriptionssubscriptionresume │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttaxcalculations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttaxids │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttaxrates │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttaxratestaxrate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttaxregistrations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttaxregistrationsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttaxsettings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttaxtransactionscreatefromcalculation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttaxtransactionscreatereversal │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalconfigurations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalconfigurationsconfiguration │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalconnectiontokens │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminallocations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminallocationslocation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalreaders │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalreadersreader │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalreadersreadercancelaction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalreadersreaderprocesspaymentintent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalreadersreaderprocesssetupintent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalreadersreaderrefundpayment │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postterminalreadersreadersetreaderdisplay │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersconfirmationtokens │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperscustomerscustomerfundcashbalance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingauthorizations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingauthorizationsauthorizationcapture │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingauthorizationsauthorizationexpire │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingauthorizationsauthorizationfinalizeamount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingauthorizationsauthorizationfraudchallenges │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingauthorizationsauthorizationincrement │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingauthorizationsauthorizationreverse │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingcardscardshippingdeliver │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingcardscardshippingfail │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingcardscardshippingreturn │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingcardscardshippingship │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingcardscardshippingsubmit │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingpersonalizationdesignspersonalizationdesig │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingsettlements │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingsettlementssettlementcomplete │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingtransactionscreateforcecapture │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingtransactionscreateunlinkedrefund │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersissuingtransactionstransactionrefund │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersrefundsrefundexpire │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelpersterminalreadersreaderpresentpaymentmethod │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstestclocks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstestclockstestclockadvance │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryinboundtransfersidfail │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryinboundtransfersidreturn │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryinboundtransfersidsucceed │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryoutboundpaymentsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryoutboundpaymentsidfail │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryoutboundpaymentsidpost │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryoutboundpaymentsidreturn │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryoutboundtransfersoutboundtransfer │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryoutboundtransfersoutboundtransferfail │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryoutboundtransfersoutboundtransferpost │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryoutboundtransfersoutboundtransferreturn │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryreceivedcredits │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttesthelperstreasuryreceiveddebits │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttokens │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttopups │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttopupstopup │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttopupstopupcancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttransfers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttransfersidreversals │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttransferstransfer │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttransferstransferreversalsid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasurycreditreversals │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasurydebitreversals │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryfinancialaccounts │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryfinancialaccountsfinancialaccount │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryfinancialaccountsfinancialaccountclose │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryfinancialaccountsfinancialaccountfeatures │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryinboundtransfers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryinboundtransfersinboundtransfercancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryoutboundpayments │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryoutboundpaymentsidcancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryoutboundtransfers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── posttreasuryoutboundtransfersoutboundtransfercancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postwebhookendpoints │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── postwebhookendpointswebhookendpoint │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── swagger-petstore ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── addpet │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── category.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── category.ts │ │ │ └── root.ts │ │ ├── createuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createuserswithlistinput │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteorder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletepet │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findpetsbystatus │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── findpetsbytags │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getinventory │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getorderbyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpetbyid │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getuserbyname │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── loginuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── logoutuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── placeorder │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updatepet │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── category.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── category.ts │ │ │ └── root.ts │ │ ├── updatepetwithform │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateuser │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── uploadfile │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── thegraph-token-api ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── getbalancesevmbyaddress │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gethealth │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gethistoricalbalancesevmbyaddress │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getholdersevmbycontract │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getnetworks │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getohlcpoolsevmbypool │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getohlcpricesevmbycontract │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getpoolsevm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getswapsevm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettokensevmbycontract │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gettransfersevm │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── getversion │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── together-ai ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── audio_speech │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── chat_completions │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── logit_bias.json │ │ │ │ ├── response_format.json │ │ │ │ └── response_format │ │ │ │ │ └── properties │ │ │ │ │ └── schema.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── logit_bias.ts │ │ │ ├── response_format.ts │ │ │ └── response_format │ │ │ │ └── properties │ │ │ │ └── schema.ts │ │ │ └── root.ts │ │ ├── completions │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── logit_bias.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── logit_bias.ts │ │ │ └── root.ts │ │ ├── createendpoint │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── autoscaling.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── autoscaling.ts │ │ │ └── root.ts │ │ ├── delete_files_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteendpoint │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── embeddings │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_files │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_files_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_files_id_content │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_fine_tunes │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_fine_tunes_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_fine_tunes_id_events │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── get_finetune_download │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getendpoint │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getjob │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listendpoints │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listhardware │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listjobs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── models │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_fine_tunes │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── lr_scheduler.json │ │ │ │ ├── training_method.json │ │ │ │ └── training_type.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── lr_scheduler.ts │ │ │ ├── training_method.ts │ │ │ └── training_type.ts │ │ │ └── root.ts │ │ ├── post_fine_tunes_id_cancel │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── post_images_generations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── rerank │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── sessions_list │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── tci_execute │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── updateendpoint │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── autoscaling.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── autoscaling.ts │ │ │ └── root.ts │ │ └── uploadmodel │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── totoy-ai ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── addknowledgebasesources │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── chatwithknowledgebase │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createclassification │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createexplanation │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createextraction │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createknowledgebase │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createsource │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── custom_metadata.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── custom_metadata.ts │ │ │ └── root.ts │ │ ├── deleteknowledgebase │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteknowledgebasesource │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deletesource │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getknowledgebase │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getknowledgebasesource │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getorganization │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsource │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getsourcecontent │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listknowledgebases │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listknowledgebasesources │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listprojects │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listsources │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── modifyknowledgebase │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── modifyproject │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── modifysource │ │ ├── index.ts │ │ ├── schema-json │ │ ├── properties │ │ │ └── custom_metadata.json │ │ └── root.json │ │ └── schema │ │ ├── properties │ │ └── custom_metadata.ts │ │ └── root.ts └── tsconfig.json ├── us-national-weather-service ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── alerts_active │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── alerts_active_area │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── alerts_active_count │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── alerts_active_region │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── alerts_active_zone │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── alerts_query │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── alerts_single │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── alerts_types │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── cwa │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── cwas │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── cwsu │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── glossary │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gridpoint │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gridpoint_forecast │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gridpoint_forecast_hourly │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── gridpoint_stations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── icons │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── icons_summary │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── iconsdualcondition │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── location_products │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── obs_station │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── obs_stations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── office │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── office_headline │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── office_headlines │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_alerts_active_area_area_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_alerts_active_region_region_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_alerts_active_zone_zoneid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_alerts_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_gridpoints_wfo_x_y_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_gridpoints_wfo_x_y_forecast │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_gridpoints_wfo_x_y_forecast_hourly │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_gridpoints_wfo_x_y_stations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_icons_set_timeofday_first_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_icons_set_timeofday_first_second_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_offices_officeid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_offices_officeid_headlines │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_offices_officeid_headlines_headlineid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_points_point_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_points_point_stations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_products_locations_locationid_types │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_products_productid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_products_types_typeid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_products_types_typeid_locations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_products_types_typeid_locations_locationid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_radar_profilers_stationid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_radar_queues_host_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_radar_servers_id_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_radar_stations_stationid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_radar_stations_stationid_alarms │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_stations_stationid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_stations_stationid_observations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_stations_stationid_observations_latest │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_stations_stationid_observations_time_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_thumbnails_satellite_area_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_zones_forecast_zoneid_observations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_zones_forecast_zoneid_stations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_zones_type_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_zones_type_zoneid_ │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── parameters_zones_type_zoneid_forecast │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── point │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── point_stations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── product │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── product_locations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── product_types │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── products_query │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── products_type │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── products_type_location │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── products_type_locations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── radar_profiler │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── radar_queue │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── radar_server │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── radar_servers │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── radar_station │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── radar_station_alarms │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── radar_stations │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── satellite_thumbnails │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── sigmet │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── sigmetquery │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── sigmetsbyatsu │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── sigmetsbyatsubydate │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── station_observation_latest │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── station_observation_list │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── station_observation_time │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── taf │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── tafs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── zone │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── zone_forecast │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── zone_list │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── zone_list_type │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── zone_obs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── zone_stations │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json ├── venice-ai ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── index.ts │ ├── server.ts │ └── tools │ │ ├── createapikey │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── consumptionLimit.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── consumptionLimit.ts │ │ │ └── root.ts │ │ ├── createchatcompletion │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── stream_options.json │ │ │ │ └── venice_parameters.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── stream_options.ts │ │ │ └── venice_parameters.ts │ │ │ └── root.ts │ │ ├── createembedding │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── createspeech │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── deleteapikey │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── generateimage │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ ├── inpaint.json │ │ │ │ └── inpaint │ │ │ │ │ └── properties │ │ │ │ │ └── mask.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ ├── inpaint.ts │ │ │ └── inpaint │ │ │ │ └── properties │ │ │ │ └── mask.ts │ │ │ └── root.ts │ │ ├── get_image_styles │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapikeygenerateweb3key │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapikeyratelimitlogs │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapikeyratelimits │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getapikeys │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── getbillingusage │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listcharacters │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listmodelcompatibilitymapping │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listmodels │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── listmodeltraits │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ ├── postapikeygenerateweb3key │ │ ├── index.ts │ │ ├── schema-json │ │ │ ├── properties │ │ │ │ └── consumptionLimit.json │ │ │ └── root.json │ │ └── schema │ │ │ ├── properties │ │ │ └── consumptionLimit.ts │ │ │ └── root.ts │ │ ├── simplegenerateimage │ │ ├── index.ts │ │ ├── schema-json │ │ │ └── root.json │ │ └── schema │ │ │ └── root.ts │ │ └── upscaleimage │ │ ├── index.ts │ │ ├── schema-json │ │ └── root.json │ │ └── schema │ │ └── root.ts └── tsconfig.json └── vercel ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src ├── constants.ts ├── index.ts ├── server.ts └── tools │ ├── acceptprojecttransferrequest │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ └── paidFeatures.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ └── paidFeatures.ts │ │ └── root.ts │ ├── addbypassip │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── addprojectdomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── addprojectmember │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── artifactexists │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── artifactquery │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── assignalias │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── buydomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── canceldeployment │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── checkdomainprice │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── checkdomainstatus │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── create_event │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createaccessgroup │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createaccessgroupproject │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createauthtoken │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createcheck │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createcustomenvironment │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ └── branchMatcher.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ └── branchMatcher.ts │ │ └── root.ts │ ├── createdeployment │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── gitMetadata.json │ │ │ ├── meta.json │ │ │ └── projectSettings.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── gitMetadata.ts │ │ ├── meta.ts │ │ └── projectSettings.ts │ │ └── root.ts │ ├── createedgeconfig │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ └── items.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ └── items.ts │ │ └── root.ts │ ├── createedgeconfigtoken │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createlogdrain │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ └── headers.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ └── headers.ts │ │ └── root.ts │ ├── createortransferdomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createproject │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── gitRepository.json │ │ │ └── oidcTokenConfig.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── gitRepository.ts │ │ └── oidcTokenConfig.ts │ │ └── root.ts │ ├── createprojectenv │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createprojecttransferrequest │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createrecord │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createsecret │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── createteam │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── attribution.json │ │ │ └── attribution │ │ │ │ └── properties │ │ │ │ └── utm.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── attribution.ts │ │ └── attribution │ │ │ └── properties │ │ │ └── utm.ts │ │ └── root.ts │ ├── createwebhook │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── delete_data_cache_purge_all │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── delete_v1_installations_integrationconfigurationid_resources_res │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteaccessgroup │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteaccessgroupproject │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deletealias │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteauthtoken │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteconfigurablelogdrain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteconfiguration │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deletedeployment │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deletedomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteedgeconfig │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteedgeconfigschema │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteedgeconfigtokens │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteintegrationlogdrain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteproject │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deletesecret │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteteam │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deleteteaminvitecode │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── deletewebhook │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── downloadartifact │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── editprojectenv │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── exchange_sso_token │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── filterprojectenvs │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── get_account_info │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── get_certs │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── get_invoice │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── get_member │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── get_v9_projects_idorname_custom_environments │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getactiveattackstatus │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getalias │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getallchecks │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getauthtoken │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getauthuser │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getbypassip │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getcertbyid │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getcheck │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getconfiguration │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getconfigurations │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getcustomenvironment │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getdeployment │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getdeploymentevents │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getdeploymentfilecontents │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getdeployments │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getdomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getdomainconfig │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getdomains │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getdomaintransfer │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getedgeconfig │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getedgeconfigbackup │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getedgeconfigbackups │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getedgeconfigitem │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getedgeconfigitems │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getedgeconfigs │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getedgeconfigschema │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getedgeconfigtoken │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getedgeconfigtokens │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getfirewallconfig │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getintegrationlogdrains │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getproject │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getprojectdomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getprojectdomains │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getprojectenv │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getprojectmembers │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getprojects │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getrecords │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getsecret │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getsecrets │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getteam │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getteamaccessrequest │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getteammembers │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getteams │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getwebhook │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── getwebhooks │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── head_v1_installations_integrationconfigurationid_resources_resou │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── import_resource │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── billingPlan.json │ │ │ ├── metadata.json │ │ │ └── notification.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── billingPlan.ts │ │ ├── metadata.ts │ │ └── notification.ts │ │ └── root.ts │ ├── inviteusertoteam │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── issuecert │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── jointeam │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── listaccessgroupmembers │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── listaccessgroupprojects │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── listaccessgroups │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── listaliases │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── listauthtokens │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── listdeploymentaliases │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── listdeploymentfiles │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── listpromotealiases │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── listuserevents │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── moveprojectdomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── patch_aliases_id_protection_bypass │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── patch_data_cache_billing_settings │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── patch_v1_installations_integrationconfigurationid_resources_reso │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── patchdomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── patchedgeconfigitems │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── patchedgeconfigschema │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── patchteam │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── remoteCaching.json │ │ │ ├── saml.json │ │ │ └── saml │ │ │ │ └── properties │ │ │ │ └── roles.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── remoteCaching.ts │ │ ├── saml.ts │ │ └── saml │ │ │ └── properties │ │ │ └── roles.ts │ │ └── root.ts │ ├── pauseproject │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── post_v1_installations_integrationconfigurationid_resources_resou │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── put_v1_installations_integrationconfigurationid_resources_resour │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ └── data.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ └── data.ts │ │ └── root.ts │ ├── putfirewallconfig │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── crs.json │ │ │ ├── crs │ │ │ │ └── properties │ │ │ │ │ ├── gen.json │ │ │ │ │ ├── java.json │ │ │ │ │ ├── lfi.json │ │ │ │ │ ├── ma.json │ │ │ │ │ ├── php.json │ │ │ │ │ ├── rce.json │ │ │ │ │ ├── rfi.json │ │ │ │ │ ├── sd.json │ │ │ │ │ ├── sf.json │ │ │ │ │ ├── sqli.json │ │ │ │ │ └── xss.json │ │ │ └── managedRules.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── crs.ts │ │ ├── crs │ │ │ └── properties │ │ │ │ ├── gen.ts │ │ │ │ ├── java.ts │ │ │ │ ├── lfi.ts │ │ │ │ ├── ma.ts │ │ │ │ ├── php.ts │ │ │ │ ├── rce.ts │ │ │ │ ├── rfi.ts │ │ │ │ ├── sd.ts │ │ │ │ ├── sf.ts │ │ │ │ ├── sqli.ts │ │ │ │ └── xss.ts │ │ └── managedRules.ts │ │ └── root.ts │ ├── readaccessgroup │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── readaccessgroupproject │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── recordevents │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── removebypassip │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── removecert │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── removecustomenvironment │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── removeprojectdomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── removeprojectenv │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── removeprojectmember │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── removerecord │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── removeteammember │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── renamesecret │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── requestaccesstoteam │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ └── joinedFrom.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ └── joinedFrom.ts │ │ └── root.ts │ ├── requestdelete │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── requestpromote │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── rerequestcheck │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── status │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── submit_billing_data │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ └── period.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ └── period.ts │ │ └── root.ts │ ├── submit_invoice │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── period.json │ │ │ └── test.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── period.ts │ │ └── test.ts │ │ └── root.ts │ ├── submit_prepayment_balances │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── unpauseproject │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── update_integration_deployment_action │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── update_invoice │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── update_resource_secrets │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── update_resource_secrets_by_id │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── updateaccessgroup │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── updateaccessgroupproject │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── updateattackchallengemode │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── updatecheck │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── output.json │ │ │ └── output │ │ │ │ └── properties │ │ │ │ ├── metrics.json │ │ │ │ └── metrics │ │ │ │ └── properties │ │ │ │ ├── CLS.json │ │ │ │ ├── FCP.json │ │ │ │ ├── LCP.json │ │ │ │ ├── TBT.json │ │ │ │ └── virtualExperienceScore.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── output.ts │ │ └── output │ │ │ └── properties │ │ │ ├── metrics.ts │ │ │ └── metrics │ │ │ └── properties │ │ │ ├── CLS.ts │ │ │ ├── FCP.ts │ │ │ ├── LCP.ts │ │ │ ├── TBT.ts │ │ │ └── virtualExperienceScore.ts │ │ └── root.ts │ ├── updatecustomenvironment │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ └── branchMatcher.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ └── branchMatcher.ts │ │ └── root.ts │ ├── updateedgeconfig │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── updatefirewallconfig │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── updateproject │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── oidcTokenConfig.json │ │ │ ├── optionsAllowlist.json │ │ │ ├── passwordProtection.json │ │ │ ├── ssoProtection.json │ │ │ └── trustedIps.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── oidcTokenConfig.ts │ │ ├── optionsAllowlist.ts │ │ ├── passwordProtection.ts │ │ ├── ssoProtection.ts │ │ └── trustedIps.ts │ │ └── root.ts │ ├── updateprojectdatacache │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── updateprojectdomain │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── updateprojectprotectionbypass │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── generate.json │ │ │ └── revoke.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── generate.ts │ │ └── revoke.ts │ │ └── root.ts │ ├── updaterecord │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ ├── https.json │ │ │ └── srv.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ ├── https.ts │ │ └── srv.ts │ │ └── root.ts │ ├── updateteammember │ ├── index.ts │ ├── schema-json │ │ ├── properties │ │ │ └── joinedFrom.json │ │ └── root.json │ └── schema │ │ ├── properties │ │ └── joinedFrom.ts │ │ └── root.ts │ ├── uploadartifact │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── uploadcert │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ ├── uploadfile │ ├── index.ts │ ├── schema-json │ │ └── root.json │ └── schema │ │ └── root.ts │ └── verifyprojectdomain │ ├── index.ts │ ├── schema-json │ └── root.json │ └── schema │ └── root.ts └── tsconfig.json /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/README.md -------------------------------------------------------------------------------- /packages/config/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /packages/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/config/README.md -------------------------------------------------------------------------------- /packages/config/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/config/package-lock.json -------------------------------------------------------------------------------- /packages/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/config/package.json -------------------------------------------------------------------------------- /packages/config/src/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/config/src/add.ts -------------------------------------------------------------------------------- /packages/config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/config/src/index.ts -------------------------------------------------------------------------------- /packages/config/src/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/config/src/remove.ts -------------------------------------------------------------------------------- /packages/config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/config/tsconfig.json -------------------------------------------------------------------------------- /packages/core/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- 1 | # @open-mcp/core 2 | -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/core/src/lib.ts -------------------------------------------------------------------------------- /packages/core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/core/src/types.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /servers/adyen-account-v6/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/adyen-account-v6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/adyen-account-v6/README.md -------------------------------------------------------------------------------- /servers/adyen-account-v6/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/adyen-account-v6/package-lock.json -------------------------------------------------------------------------------- /servers/adyen-account-v6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/adyen-account-v6/package.json -------------------------------------------------------------------------------- /servers/adyen-account-v6/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/adyen-account-v6/src/constants.ts -------------------------------------------------------------------------------- /servers/adyen-account-v6/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/adyen-account-v6/src/index.ts -------------------------------------------------------------------------------- /servers/adyen-account-v6/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/adyen-account-v6/src/server.ts -------------------------------------------------------------------------------- /servers/adyen-account-v6/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/adyen-account-v6/tsconfig.json -------------------------------------------------------------------------------- /servers/agenta-ai/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/agenta-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/README.md -------------------------------------------------------------------------------- /servers/agenta-ai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/package-lock.json -------------------------------------------------------------------------------- /servers/agenta-ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/package.json -------------------------------------------------------------------------------- /servers/agenta-ai/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/constants.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/server.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/cancel_plan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/cancel_plan/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/configs_add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/configs_add/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/configs_fork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/configs_fork/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/configs_list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/configs_list/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/create_app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/create_app/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/fetch_plans/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/fetch_plans/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/fetch_usage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/fetch_usage/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/get_config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/get_config/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/get_own_org/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/get_own_org/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/get_projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/get_projects/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/get_testsets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/get_testsets/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/get_variant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/get_variant/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/health_check/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/health_check/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/list_apps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/list_apps/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/list_bases/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/list_bases/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/list_secrets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/list_secrets/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/otlp_status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/otlp_status/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/query_traces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/query_traces/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/read_secret/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/read_secret/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/remove_app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/remove_app/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/switch_plans/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/switch_plans/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/update_app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/update_app/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/src/tools/upload_file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/src/tools/upload_file/index.ts -------------------------------------------------------------------------------- /servers/agenta-ai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/agenta-ai/tsconfig.json -------------------------------------------------------------------------------- /servers/autobahn/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/autobahn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/README.md -------------------------------------------------------------------------------- /servers/autobahn/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/package-lock.json -------------------------------------------------------------------------------- /servers/autobahn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/package.json -------------------------------------------------------------------------------- /servers/autobahn/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/constants.ts -------------------------------------------------------------------------------- /servers/autobahn/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/index.ts -------------------------------------------------------------------------------- /servers/autobahn/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/server.ts -------------------------------------------------------------------------------- /servers/autobahn/src/tools/get_closure/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/tools/get_closure/index.ts -------------------------------------------------------------------------------- /servers/autobahn/src/tools/get_roadwork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/tools/get_roadwork/index.ts -------------------------------------------------------------------------------- /servers/autobahn/src/tools/get_warning/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/tools/get_warning/index.ts -------------------------------------------------------------------------------- /servers/autobahn/src/tools/get_webcam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/tools/get_webcam/index.ts -------------------------------------------------------------------------------- /servers/autobahn/src/tools/list_closures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/tools/list_closures/index.ts -------------------------------------------------------------------------------- /servers/autobahn/src/tools/list_warnings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/tools/list_warnings/index.ts -------------------------------------------------------------------------------- /servers/autobahn/src/tools/list_webcams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/src/tools/list_webcams/index.ts -------------------------------------------------------------------------------- /servers/autobahn/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/autobahn/tsconfig.json -------------------------------------------------------------------------------- /servers/backstage-catalog/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/backstage-catalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/backstage-catalog/README.md -------------------------------------------------------------------------------- /servers/backstage-catalog/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/backstage-catalog/package-lock.json -------------------------------------------------------------------------------- /servers/backstage-catalog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/backstage-catalog/package.json -------------------------------------------------------------------------------- /servers/backstage-catalog/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/backstage-catalog/src/constants.ts -------------------------------------------------------------------------------- /servers/backstage-catalog/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/backstage-catalog/src/index.ts -------------------------------------------------------------------------------- /servers/backstage-catalog/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/backstage-catalog/src/server.ts -------------------------------------------------------------------------------- /servers/backstage-catalog/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/backstage-catalog/tsconfig.json -------------------------------------------------------------------------------- /servers/epa-lew/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/epa-lew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/epa-lew/README.md -------------------------------------------------------------------------------- /servers/epa-lew/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/epa-lew/package-lock.json -------------------------------------------------------------------------------- /servers/epa-lew/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/epa-lew/package.json -------------------------------------------------------------------------------- /servers/epa-lew/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/epa-lew/src/constants.ts -------------------------------------------------------------------------------- /servers/epa-lew/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/epa-lew/src/index.ts -------------------------------------------------------------------------------- /servers/epa-lew/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/epa-lew/src/server.ts -------------------------------------------------------------------------------- /servers/epa-lew/src/tools/healthcheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/epa-lew/src/tools/healthcheck/index.ts -------------------------------------------------------------------------------- /servers/epa-lew/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/epa-lew/tsconfig.json -------------------------------------------------------------------------------- /servers/figma/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/figma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/README.md -------------------------------------------------------------------------------- /servers/figma/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/package-lock.json -------------------------------------------------------------------------------- /servers/figma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/package.json -------------------------------------------------------------------------------- /servers/figma/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/constants.ts -------------------------------------------------------------------------------- /servers/figma/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/index.ts -------------------------------------------------------------------------------- /servers/figma/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/server.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/deletecomment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/deletecomment/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/deletewebhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/deletewebhook/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getactivitylogs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getactivitylogs/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getcomments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getcomments/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getcomponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getcomponent/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getcomponentset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getcomponentset/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getdevresources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getdevresources/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getfile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getfile/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getfile/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getfile/schema/root.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getfilenodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getfilenodes/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getfilestyles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getfilestyles/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getfileversions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getfileversions/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getimagefills/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getimagefills/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getimages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getimages/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getimages/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getimages/schema/root.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getme/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getme/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getme/schema/root.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getpayments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getpayments/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getprojectfiles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getprojectfiles/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getstyle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getstyle/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getstyle/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getstyle/schema/root.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getteamprojects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getteamprojects/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getteamstyles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getteamstyles/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getteamwebhooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getteamwebhooks/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getwebhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getwebhook/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/getwebhook/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/getwebhook/schema/root.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/postcomment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/postcomment/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/postdevresources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/postdevresources/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/postvariables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/postvariables/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/postwebhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/postwebhook/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/putdevresources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/putdevresources/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/putwebhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/putwebhook/index.ts -------------------------------------------------------------------------------- /servers/figma/src/tools/putwebhook/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/src/tools/putwebhook/schema/root.ts -------------------------------------------------------------------------------- /servers/figma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/figma/tsconfig.json -------------------------------------------------------------------------------- /servers/google-maps/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/google-maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/README.md -------------------------------------------------------------------------------- /servers/google-maps/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/package-lock.json -------------------------------------------------------------------------------- /servers/google-maps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/package.json -------------------------------------------------------------------------------- /servers/google-maps/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/constants.ts -------------------------------------------------------------------------------- /servers/google-maps/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/index.ts -------------------------------------------------------------------------------- /servers/google-maps/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/server.ts -------------------------------------------------------------------------------- /servers/google-maps/src/tools/directions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/tools/directions/index.ts -------------------------------------------------------------------------------- /servers/google-maps/src/tools/elevation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/tools/elevation/index.ts -------------------------------------------------------------------------------- /servers/google-maps/src/tools/geocode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/tools/geocode/index.ts -------------------------------------------------------------------------------- /servers/google-maps/src/tools/geolocate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/tools/geolocate/index.ts -------------------------------------------------------------------------------- /servers/google-maps/src/tools/placephoto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/tools/placephoto/index.ts -------------------------------------------------------------------------------- /servers/google-maps/src/tools/streetview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/tools/streetview/index.ts -------------------------------------------------------------------------------- /servers/google-maps/src/tools/textsearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/tools/textsearch/index.ts -------------------------------------------------------------------------------- /servers/google-maps/src/tools/timezone/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/src/tools/timezone/index.ts -------------------------------------------------------------------------------- /servers/google-maps/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/google-maps/tsconfig.json -------------------------------------------------------------------------------- /servers/jira/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/jira/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/README.md -------------------------------------------------------------------------------- /servers/jira/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/package-lock.json -------------------------------------------------------------------------------- /servers/jira/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/package.json -------------------------------------------------------------------------------- /servers/jira/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/constants.ts -------------------------------------------------------------------------------- /servers/jira/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/index.ts -------------------------------------------------------------------------------- /servers/jira/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/server.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addactorusers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addactorusers/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addatlassianteam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addatlassianteam/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addattachment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addattachment/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addcomment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addcomment/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addcomment/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addcomment/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addgadget/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addgadget/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addgadget/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addgadget/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addnotifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addnotifications/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addscreentab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addscreentab/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addscreentabfield/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addscreentabfield/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addsecuritylevel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addsecuritylevel/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addusertogroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addusertogroup/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addvote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addvote/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addvote/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addvote/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addwatcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addwatcher/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addwatcher/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addwatcher/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addworklog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addworklog/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/addworklog/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/addworklog/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/analyseexpression/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/analyseexpression/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/archiveissues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/archiveissues/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/archiveplan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/archiveplan/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/archiveplan/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/archiveplan/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/archiveproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/archiveproject/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/assignissue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/assignissue/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/assignissue/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/assignissue/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/bulkfetchissues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/bulkfetchissues/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/bulkgetgroups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/bulkgetgroups/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/bulkgetusers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/bulkgetusers/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/bulkmoveworklogs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/bulkmoveworklogs/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/canceltask/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/canceltask/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/canceltask/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/canceltask/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/changefilterowner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/changefilterowner/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/copydashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/copydashboard/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/countissues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/countissues/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/countissues/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/countissues/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createcomponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createcomponent/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createcustomfield/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createcustomfield/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createdashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createdashboard/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createfilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createfilter/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/creategroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/creategroup/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/creategroup/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/creategroup/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createissue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createissue/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createissue/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createissue/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createissues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createissues/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createissuetype/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createissuetype/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createplan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createplan/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createplan/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createplan/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createpriority/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createpriority/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createproject/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createprojectrole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createprojectrole/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createrelatedwork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createrelatedwork/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createresolution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createresolution/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createscreen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createscreen/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createstatuses/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createstatuses/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createuser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createuser/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createuser/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createuser/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createversion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createversion/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createworkflow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createworkflow/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/createworkflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/createworkflows/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteactor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteactor/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteactor/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteactor/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteavatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteavatar/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletecomment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletecomment/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletecomponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletecomponent/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletecustomfield/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletecustomfield/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletedashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletedashboard/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletefilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletefilter/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteissue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteissue/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteissue/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteissue/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteissuelink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteissuelink/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteissuetype/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteissuetype/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletelocale/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletelocale/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletepriority/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletepriority/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteproject/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteprojectrole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteprojectrole/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleterelatedwork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleterelatedwork/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteresolution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteresolution/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletescreen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletescreen/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletescreentab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletescreentab/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteversion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteversion/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deletewebhookbyid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deletewebhookbyid/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/deleteworklog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/deleteworklog/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/dotransition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/dotransition/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/duplicateplan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/duplicateplan/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/editissue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/editissue/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/editissue/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/editissue/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/findgroups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/findgroups/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/findgroups/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/findgroups/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/findusers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/findusers/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/findusers/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/findusers/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/findusersbyquery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/findusersbyquery/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getalldashboards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getalldashboards/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getallgadgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getallgadgets/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getalllabels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getalllabels/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getallpermissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getallpermissions/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getallprojects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getallprojects/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getallscreentabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getallscreentabs/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getallstatuses/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getallstatuses/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getallusers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getallusers/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getallusers/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getallusers/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getallworkflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getallworkflows/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getatlassianteam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getatlassianteam/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getattachment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getattachment/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getattachmentmeta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getattachmentmeta/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getauditrecords/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getauditrecords/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getautocomplete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getautocomplete/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getavatars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getavatars/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getavatars/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getavatars/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getbanner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getbanner/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getbanner/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getbanner/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getbulkchangelogs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getbulkchangelogs/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getbulkscreentabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getbulkscreentabs/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getchangelogs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getchangelogs/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getcolumns/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getcolumns/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getcolumns/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getcolumns/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getcomment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getcomment/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getcomment/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getcomment/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getcomments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getcomments/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getcomments/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getcomments/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getcommentsbyids/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getcommentsbyids/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getcomponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getcomponent/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getconfiguration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getconfiguration/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getcurrentuser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getcurrentuser/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getdashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getdashboard/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getdefaultvalues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getdefaultvalues/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getdraftworkflow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getdraftworkflow/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/geteditissuemeta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/geteditissuemeta/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getevents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getevents/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getevents/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getevents/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getfailedwebhooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getfailedwebhooks/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getfields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getfields/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getfields/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getfields/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getfilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getfilter/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getfilter/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getfilter/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getgroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getgroup/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getgroup/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getgroup/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/gethierarchy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/gethierarchy/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissue/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissue/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissue/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissuealltypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissuealltypes/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissuelink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissuelink/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissuelinktype/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissuelinktype/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissuelinktypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissuelinktypes/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissueproperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissueproperty/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissuetype/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissuetype/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissuewatchers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissuewatchers/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getissueworklog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getissueworklog/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getlicense/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getlicense/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getlicense/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getlicense/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getlocale/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getlocale/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getlocale/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getlocale/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getmyfilters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getmyfilters/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getmypermissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getmypermissions/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getplan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getplan/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getplan/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getplan/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getplanonlyteam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getplanonlyteam/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getplans/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getplans/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getplans/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getplans/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getpolicies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getpolicies/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getpolicies/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getpolicies/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getpolicy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getpolicy/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getpolicy/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getpolicy/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getpreference/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getpreference/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getpriorities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getpriorities/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getpriority/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getpriority/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getpriority/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getpriority/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getproject/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getproject/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getproject/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getprojectemail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getprojectemail/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getprojectrole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getprojectrole/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getprojectroles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getprojectroles/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getrecent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getrecent/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getrecent/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getrecent/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getrelatedwork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getrelatedwork/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getresolution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getresolution/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getresolutions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getresolutions/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getscreens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getscreens/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getscreens/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getscreens/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getscreenschemes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getscreenschemes/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getsecuritylevels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getsecuritylevels/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getserverinfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getserverinfo/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getstatus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getstatus/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getstatus/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getstatus/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getstatuscategory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getstatuscategory/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getstatuses/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getstatuses/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getstatuses/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getstatuses/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getstatusesbyid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getstatusesbyid/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/gettask/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/gettask/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/gettask/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/gettask/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getteams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getteams/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getteams/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getteams/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/gettransitions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/gettransitions/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getuser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getuser/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getuser/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getuser/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getuseremail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getuseremail/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getuseremailbulk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getuseremailbulk/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getusergroups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getusergroups/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getuserproperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getuserproperty/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getusersfromgroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getusersfromgroup/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getversion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getversion/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getversion/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getversion/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getvotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getvotes/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getvotes/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getvotes/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getworkflow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getworkflow/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getworkflow/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getworkflow/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getworkflowscheme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getworkflowscheme/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getworklog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getworklog/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getworklog/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getworklog/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/getworklogsforids/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/getworklogsforids/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/linkissues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/linkissues/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/linkissues/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/linkissues/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/matchissues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/matchissues/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/matchissues/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/matchissues/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/mergeversions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/mergeversions/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/migratequeries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/migratequeries/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/movepriorities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/movepriorities/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/moveresolutions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/moveresolutions/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/movescreentab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/movescreentab/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/moveversion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/moveversion/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/moveversion/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/moveversion/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/notify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/notify/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/notify/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/notify/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/parsejqlqueries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/parsejqlqueries/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/readworkflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/readworkflows/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/refreshwebhooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/refreshwebhooks/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removeattachment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removeattachment/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removegadget/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removegadget/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removegroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removegroup/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removegroup/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removegroup/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removelevel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removelevel/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removelevel/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removelevel/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removepreference/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removepreference/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removeuser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removeuser/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removeuser/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removeuser/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removevote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removevote/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removevote/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removevote/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/removewatcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/removewatcher/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/renamescreentab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/renamescreentab/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/resetcolumns/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/resetcolumns/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/resetusercolumns/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/resetusercolumns/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/restore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/restore/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/restore/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/restore/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/search/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/search/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/search/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/searchpriorities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/searchpriorities/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/searchprojects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/searchprojects/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/searchresolutions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/searchresolutions/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/searchworkflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/searchworkflows/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setactors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setactors/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setactors/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setactors/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setbanner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setbanner/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setbanner/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setbanner/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setcolumns/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setcolumns/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setcolumns/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setcolumns/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setdefaultlevels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setdefaultlevels/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setdefaultvalues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setdefaultvalues/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setissueproperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setissueproperty/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setlocale/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setlocale/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setlocale/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setlocale/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setpreference/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setpreference/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setusercolumns/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setusercolumns/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/setuserproperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/setuserproperty/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/storeavatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/storeavatar/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/storeavatar/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/storeavatar/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/submitbulkdelete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/submitbulkdelete/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/submitbulkedit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/submitbulkedit/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/submitbulkmove/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/submitbulkmove/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/submitbulkunwatch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/submitbulkunwatch/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/submitbulkwatch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/submitbulkwatch/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/trashcustomfield/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/trashcustomfield/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/trashplan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/trashplan/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/trashplan/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/trashplan/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/unarchiveissues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/unarchiveissues/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updatecomment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updatecomment/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updatecomponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updatecomponent/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updatecustomfield/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updatecustomfield/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updatedashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updatedashboard/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updatefilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updatefilter/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updategadget/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updategadget/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updateissuetype/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updateissuetype/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updateplan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updateplan/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updateplan/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updateplan/schema/root.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updatepriority/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updatepriority/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updateproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updateproject/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updaterelatedwork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updaterelatedwork/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updateresolution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updateresolution/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updateschemes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updateschemes/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updatescreen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updatescreen/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updatestatuses/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updatestatuses/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updateversion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updateversion/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updateworkflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updateworkflows/index.ts -------------------------------------------------------------------------------- /servers/jira/src/tools/updateworklog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/src/tools/updateworklog/index.ts -------------------------------------------------------------------------------- /servers/jira/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/jira/tsconfig.json -------------------------------------------------------------------------------- /servers/keycloak/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/keycloak/README.md -------------------------------------------------------------------------------- /servers/keycloak/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/keycloak/package-lock.json -------------------------------------------------------------------------------- /servers/keycloak/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/keycloak/package.json -------------------------------------------------------------------------------- /servers/keycloak/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/keycloak/src/constants.ts -------------------------------------------------------------------------------- /servers/keycloak/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/keycloak/src/index.ts -------------------------------------------------------------------------------- /servers/keycloak/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/keycloak/src/server.ts -------------------------------------------------------------------------------- /servers/keycloak/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/keycloak/tsconfig.json -------------------------------------------------------------------------------- /servers/korea-weather/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/korea-weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/korea-weather/README.md -------------------------------------------------------------------------------- /servers/korea-weather/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/korea-weather/package-lock.json -------------------------------------------------------------------------------- /servers/korea-weather/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/korea-weather/package.json -------------------------------------------------------------------------------- /servers/korea-weather/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/korea-weather/src/constants.ts -------------------------------------------------------------------------------- /servers/korea-weather/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/korea-weather/src/index.ts -------------------------------------------------------------------------------- /servers/korea-weather/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/korea-weather/src/server.ts -------------------------------------------------------------------------------- /servers/korea-weather/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/korea-weather/tsconfig.json -------------------------------------------------------------------------------- /servers/lambda-ai/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/lambda-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/README.md -------------------------------------------------------------------------------- /servers/lambda-ai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/package-lock.json -------------------------------------------------------------------------------- /servers/lambda-ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/package.json -------------------------------------------------------------------------------- /servers/lambda-ai/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/src/constants.ts -------------------------------------------------------------------------------- /servers/lambda-ai/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/src/index.ts -------------------------------------------------------------------------------- /servers/lambda-ai/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/src/server.ts -------------------------------------------------------------------------------- /servers/lambda-ai/src/tools/addsshkey/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/src/tools/addsshkey/index.ts -------------------------------------------------------------------------------- /servers/lambda-ai/src/tools/deletesshkey/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/src/tools/deletesshkey/index.ts -------------------------------------------------------------------------------- /servers/lambda-ai/src/tools/getinstance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/src/tools/getinstance/index.ts -------------------------------------------------------------------------------- /servers/lambda-ai/src/tools/listimages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/src/tools/listimages/index.ts -------------------------------------------------------------------------------- /servers/lambda-ai/src/tools/listsshkeys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/src/tools/listsshkeys/index.ts -------------------------------------------------------------------------------- /servers/lambda-ai/src/tools/postinstance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/src/tools/postinstance/index.ts -------------------------------------------------------------------------------- /servers/lambda-ai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/lambda-ai/tsconfig.json -------------------------------------------------------------------------------- /servers/mintlify/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/mintlify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/mintlify/README.md -------------------------------------------------------------------------------- /servers/mintlify/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/mintlify/package-lock.json -------------------------------------------------------------------------------- /servers/mintlify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/mintlify/package.json -------------------------------------------------------------------------------- /servers/mintlify/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/mintlify/src/constants.ts -------------------------------------------------------------------------------- /servers/mintlify/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/mintlify/src/index.ts -------------------------------------------------------------------------------- /servers/mintlify/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/mintlify/src/server.ts -------------------------------------------------------------------------------- /servers/mintlify/src/tools/get_plants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/mintlify/src/tools/get_plants/index.ts -------------------------------------------------------------------------------- /servers/mintlify/src/tools/post_plants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/mintlify/src/tools/post_plants/index.ts -------------------------------------------------------------------------------- /servers/mintlify/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/mintlify/tsconfig.json -------------------------------------------------------------------------------- /servers/open-weather/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/open-weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/open-weather/README.md -------------------------------------------------------------------------------- /servers/open-weather/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/open-weather/package-lock.json -------------------------------------------------------------------------------- /servers/open-weather/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/open-weather/package.json -------------------------------------------------------------------------------- /servers/open-weather/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/open-weather/src/constants.ts -------------------------------------------------------------------------------- /servers/open-weather/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/open-weather/src/index.ts -------------------------------------------------------------------------------- /servers/open-weather/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/open-weather/src/server.ts -------------------------------------------------------------------------------- /servers/open-weather/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/open-weather/tsconfig.json -------------------------------------------------------------------------------- /servers/portkey-ai/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/portkey-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/README.md -------------------------------------------------------------------------------- /servers/portkey-ai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/package-lock.json -------------------------------------------------------------------------------- /servers/portkey-ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/package.json -------------------------------------------------------------------------------- /servers/portkey-ai/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/constants.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/server.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/cancelbatch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/cancelbatch/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/cancelrun/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/cancelrun/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/createbatch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/createbatch/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/createfile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/createfile/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/createimage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/createimage/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/createlabel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/createlabel/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/createrun/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/createrun/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/deletefile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/deletefile/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/deletelabel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/deletelabel/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/deletemodel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/deletemodel/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/getconfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/getconfig/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/getlabel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/getlabel/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/getmessage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/getmessage/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/getprompt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/getprompt/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/getresponse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/getresponse/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/getrun/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/getrun/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/getrunstep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/getrunstep/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/getthread/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/getthread/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/listbatches/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/listbatches/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/listconfigs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/listconfigs/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/listfiles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/listfiles/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/listlabels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/listlabels/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/listmodels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/listmodels/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/listprompts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/listprompts/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/listruns/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/listruns/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/modifyrun/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/modifyrun/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/post_logs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/post_logs/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/src/tools/updatelabel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/src/tools/updatelabel/index.ts -------------------------------------------------------------------------------- /servers/portkey-ai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/portkey-ai/tsconfig.json -------------------------------------------------------------------------------- /servers/sanity/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/sanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/README.md -------------------------------------------------------------------------------- /servers/sanity/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/package-lock.json -------------------------------------------------------------------------------- /servers/sanity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/package.json -------------------------------------------------------------------------------- /servers/sanity/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/constants.ts -------------------------------------------------------------------------------- /servers/sanity/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/server.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/acceptinvite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/acceptinvite/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/acceptrequest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/acceptrequest/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/addroletouser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/addroletouser/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/createinvite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/createinvite/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/createrequest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/createrequest/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/createrobot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/createrobot/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/createrole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/createrole/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/declinerequest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/declinerequest/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/deleterobot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/deleterobot/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/deleterole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/deleterole/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getinvites/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getinvites/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getmyrequests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getmyrequests/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getpermission/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getpermission/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getpermissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getpermissions/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getrequests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getrequests/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getrobot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getrobot/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getrobot/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getrobot/schema/root.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getrobots/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getrobots/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getrobots/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getrobots/schema/root.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getrole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getrole/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getrole/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getrole/schema/root.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getroles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getroles/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getroles/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getroles/schema/root.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getuser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getuser/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getuser/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getuser/schema/root.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getusers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getusers/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/getusers/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/getusers/schema/root.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/removeuser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/removeuser/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/revokeinvite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/revokeinvite/index.ts -------------------------------------------------------------------------------- /servers/sanity/src/tools/updaterole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/src/tools/updaterole/index.ts -------------------------------------------------------------------------------- /servers/sanity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/sanity/tsconfig.json -------------------------------------------------------------------------------- /servers/scarf/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/scarf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/scarf/README.md -------------------------------------------------------------------------------- /servers/scarf/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/scarf/package-lock.json -------------------------------------------------------------------------------- /servers/scarf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/scarf/package.json -------------------------------------------------------------------------------- /servers/scarf/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/scarf/src/constants.ts -------------------------------------------------------------------------------- /servers/scarf/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/scarf/src/index.ts -------------------------------------------------------------------------------- /servers/scarf/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/scarf/src/server.ts -------------------------------------------------------------------------------- /servers/scarf/src/tools/getpackagebyname/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/scarf/src/tools/getpackagebyname/index.ts -------------------------------------------------------------------------------- /servers/scarf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/scarf/tsconfig.json -------------------------------------------------------------------------------- /servers/spotify/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/spotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/README.md -------------------------------------------------------------------------------- /servers/spotify/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/package-lock.json -------------------------------------------------------------------------------- /servers/spotify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/package.json -------------------------------------------------------------------------------- /servers/spotify/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/constants.ts -------------------------------------------------------------------------------- /servers/spotify/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/server.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/add_to_queue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/add_to_queue/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_a_category/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_a_category/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_a_chapter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_a_chapter/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_a_show/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_a_show/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_an_album/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_an_album/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_an_artist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_an_artist/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_an_episode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_an_episode/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_categories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_categories/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_followed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_followed/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_playlist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_playlist/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_queue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_queue/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/get_track/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/get_track/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/search/index.ts -------------------------------------------------------------------------------- /servers/spotify/src/tools/search/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/src/tools/search/schema/root.ts -------------------------------------------------------------------------------- /servers/spotify/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/spotify/tsconfig.json -------------------------------------------------------------------------------- /servers/stripe/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/stripe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/README.md -------------------------------------------------------------------------------- /servers/stripe/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/package-lock.json -------------------------------------------------------------------------------- /servers/stripe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/package.json -------------------------------------------------------------------------------- /servers/stripe/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/constants.ts -------------------------------------------------------------------------------- /servers/stripe/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/server.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/deleteplansplan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/deleteplansplan/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/deletetaxidsid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/deletetaxidsid/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getaccount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getaccount/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getaccounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getaccounts/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getappssecrets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getappssecrets/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getbalance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getbalance/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getcharges/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getcharges/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getcountryspecs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getcountryspecs/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getcoupons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getcoupons/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getcreditnotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getcreditnotes/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getcustomers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getcustomers/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getdisputes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getdisputes/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getevents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getevents/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getevents/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getevents/schema/root.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/geteventsid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/geteventsid/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getfilelinks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getfilelinks/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getfiles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getfiles/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getfiles/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getfiles/schema/root.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getfilesfile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getfilesfile/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getinvoiceitems/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getinvoiceitems/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getinvoices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getinvoices/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getissuingcards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getissuingcards/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getpaymentlinks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getpaymentlinks/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getpayouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getpayouts/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getplans/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getplans/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getplans/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getplans/schema/root.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getplansplan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getplansplan/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getprices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getprices/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getprices/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getprices/schema/root.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getpricesprice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getpricesprice/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getpricessearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getpricessearch/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getproducts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getproducts/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getproductsid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getproductsid/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getquotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getquotes/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getquotes/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getquotes/schema/root.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getquotesquote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getquotesquote/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getrefunds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getrefunds/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getreviews/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getreviews/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/getsetupintents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/getsetupintents/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettaxcodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettaxcodes/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettaxcodesid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettaxcodesid/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettaxids/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettaxids/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettaxids/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettaxids/schema/root.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettaxidsid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettaxidsid/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettaxrates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettaxrates/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettaxsettings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettaxsettings/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettokenstoken/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettokenstoken/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettopups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettopups/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettopups/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettopups/schema/root.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettopupstopup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettopupstopup/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/gettransfers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/gettransfers/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postaccounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postaccounts/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postappssecrets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postappssecrets/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postcharges/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postcharges/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postcoupons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postcoupons/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postcreditnotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postcreditnotes/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postcustomers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postcustomers/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postfilelinks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postfilelinks/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postfiles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postfiles/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postfiles/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postfiles/schema/root.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postinvoices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postinvoices/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postpayouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postpayouts/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postplans/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postplans/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postplans/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postplans/schema/root.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postplansplan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postplansplan/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postprices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postprices/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postpricesprice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postpricesprice/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postproducts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postproducts/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postproductsid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postproductsid/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postquotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postquotes/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postquotesquote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postquotesquote/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postrefunds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postrefunds/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/postsources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/postsources/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/posttaxids/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/posttaxids/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/posttaxrates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/posttaxrates/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/posttokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/posttokens/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/posttopups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/posttopups/index.ts -------------------------------------------------------------------------------- /servers/stripe/src/tools/posttransfers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/src/tools/posttransfers/index.ts -------------------------------------------------------------------------------- /servers/stripe/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/stripe/tsconfig.json -------------------------------------------------------------------------------- /servers/swagger-petstore/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/swagger-petstore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/swagger-petstore/README.md -------------------------------------------------------------------------------- /servers/swagger-petstore/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/swagger-petstore/package-lock.json -------------------------------------------------------------------------------- /servers/swagger-petstore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/swagger-petstore/package.json -------------------------------------------------------------------------------- /servers/swagger-petstore/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/swagger-petstore/src/constants.ts -------------------------------------------------------------------------------- /servers/swagger-petstore/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/swagger-petstore/src/index.ts -------------------------------------------------------------------------------- /servers/swagger-petstore/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/swagger-petstore/src/server.ts -------------------------------------------------------------------------------- /servers/swagger-petstore/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/swagger-petstore/tsconfig.json -------------------------------------------------------------------------------- /servers/thegraph-token-api/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/thegraph-token-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/thegraph-token-api/README.md -------------------------------------------------------------------------------- /servers/thegraph-token-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/thegraph-token-api/package-lock.json -------------------------------------------------------------------------------- /servers/thegraph-token-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/thegraph-token-api/package.json -------------------------------------------------------------------------------- /servers/thegraph-token-api/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/thegraph-token-api/src/constants.ts -------------------------------------------------------------------------------- /servers/thegraph-token-api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/thegraph-token-api/src/index.ts -------------------------------------------------------------------------------- /servers/thegraph-token-api/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/thegraph-token-api/src/server.ts -------------------------------------------------------------------------------- /servers/thegraph-token-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/thegraph-token-api/tsconfig.json -------------------------------------------------------------------------------- /servers/together-ai/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/together-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/README.md -------------------------------------------------------------------------------- /servers/together-ai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/package-lock.json -------------------------------------------------------------------------------- /servers/together-ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/package.json -------------------------------------------------------------------------------- /servers/together-ai/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/src/constants.ts -------------------------------------------------------------------------------- /servers/together-ai/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/src/index.ts -------------------------------------------------------------------------------- /servers/together-ai/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/src/server.ts -------------------------------------------------------------------------------- /servers/together-ai/src/tools/getjob/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/src/tools/getjob/index.ts -------------------------------------------------------------------------------- /servers/together-ai/src/tools/listjobs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/src/tools/listjobs/index.ts -------------------------------------------------------------------------------- /servers/together-ai/src/tools/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/src/tools/models/index.ts -------------------------------------------------------------------------------- /servers/together-ai/src/tools/rerank/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/src/tools/rerank/index.ts -------------------------------------------------------------------------------- /servers/together-ai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/together-ai/tsconfig.json -------------------------------------------------------------------------------- /servers/totoy-ai/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/totoy-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/README.md -------------------------------------------------------------------------------- /servers/totoy-ai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/package-lock.json -------------------------------------------------------------------------------- /servers/totoy-ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/package.json -------------------------------------------------------------------------------- /servers/totoy-ai/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/src/constants.ts -------------------------------------------------------------------------------- /servers/totoy-ai/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/src/index.ts -------------------------------------------------------------------------------- /servers/totoy-ai/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/src/server.ts -------------------------------------------------------------------------------- /servers/totoy-ai/src/tools/getproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/src/tools/getproject/index.ts -------------------------------------------------------------------------------- /servers/totoy-ai/src/tools/getsource/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/src/tools/getsource/index.ts -------------------------------------------------------------------------------- /servers/totoy-ai/src/tools/listsources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/src/tools/listsources/index.ts -------------------------------------------------------------------------------- /servers/totoy-ai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/totoy-ai/tsconfig.json -------------------------------------------------------------------------------- /servers/us-national-weather-service/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/us-national-weather-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/us-national-weather-service/README.md -------------------------------------------------------------------------------- /servers/venice-ai/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/venice-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/venice-ai/README.md -------------------------------------------------------------------------------- /servers/venice-ai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/venice-ai/package-lock.json -------------------------------------------------------------------------------- /servers/venice-ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/venice-ai/package.json -------------------------------------------------------------------------------- /servers/venice-ai/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/venice-ai/src/constants.ts -------------------------------------------------------------------------------- /servers/venice-ai/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/venice-ai/src/index.ts -------------------------------------------------------------------------------- /servers/venice-ai/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/venice-ai/src/server.ts -------------------------------------------------------------------------------- /servers/venice-ai/src/tools/getapikeys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/venice-ai/src/tools/getapikeys/index.ts -------------------------------------------------------------------------------- /servers/venice-ai/src/tools/listmodels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/venice-ai/src/tools/listmodels/index.ts -------------------------------------------------------------------------------- /servers/venice-ai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/venice-ai/tsconfig.json -------------------------------------------------------------------------------- /servers/vercel/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | node_modules/ 3 | .gitignore 4 | tsconfig.json -------------------------------------------------------------------------------- /servers/vercel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/README.md -------------------------------------------------------------------------------- /servers/vercel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/package-lock.json -------------------------------------------------------------------------------- /servers/vercel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/package.json -------------------------------------------------------------------------------- /servers/vercel/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/constants.ts -------------------------------------------------------------------------------- /servers/vercel/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/server.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/addbypassip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/addbypassip/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/artifactquery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/artifactquery/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/assignalias/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/assignalias/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/buydomain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/buydomain/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/create_event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/create_event/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/createcheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/createcheck/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/createproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/createproject/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/createrecord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/createrecord/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/createsecret/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/createsecret/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/createteam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/createteam/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/createwebhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/createwebhook/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/deletealias/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/deletealias/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/deletedomain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/deletedomain/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/deleteproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/deleteproject/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/deletesecret/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/deletesecret/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/deleteteam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/deleteteam/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/deletewebhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/deletewebhook/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/get_certs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/get_certs/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/get_invoice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/get_invoice/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/get_member/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/get_member/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getalias/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getalias/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getallchecks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getallchecks/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getauthtoken/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getauthtoken/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getauthuser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getauthuser/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getbypassip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getbypassip/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getcertbyid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getcertbyid/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getcheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getcheck/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getdeployment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getdeployment/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getdomain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getdomain/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getdomains/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getdomains/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getedgeconfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getedgeconfig/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getproject/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getprojectenv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getprojectenv/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getprojects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getprojects/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getrecords/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getrecords/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getsecret/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getsecret/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getsecrets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getsecrets/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getteam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getteam/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getteam/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getteam/schema/root.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getteams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getteams/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getwebhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getwebhook/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/getwebhooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/getwebhooks/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/issuecert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/issuecert/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/jointeam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/jointeam/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/listaliases/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/listaliases/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/patchdomain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/patchdomain/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/patchteam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/patchteam/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/pauseproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/pauseproject/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/recordevents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/recordevents/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/removecert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/removecert/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/removerecord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/removerecord/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/renamesecret/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/renamesecret/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/requestdelete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/requestdelete/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/status/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/status/schema/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/status/schema/root.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/updatecheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/updatecheck/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/updateproject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/updateproject/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/updaterecord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/updaterecord/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/uploadcert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/uploadcert/index.ts -------------------------------------------------------------------------------- /servers/vercel/src/tools/uploadfile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/src/tools/uploadfile/index.ts -------------------------------------------------------------------------------- /servers/vercel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wegotdocs/open-mcp/HEAD/servers/vercel/tsconfig.json --------------------------------------------------------------------------------