From 4f22aa63a1268b5ddfa354549aa01189f852c85f Mon Sep 17 00:00:00 2001 From: Simon Hammes Date: Fri, 9 Jan 2026 14:51:37 +0100 Subject: [PATCH 1/7] Update .yaml files --- openapi_input/file_operations.yaml | 2 + .../team_admin_account_operations.yaml | 614 ++++++++++++++++++ 2 files changed, 616 insertions(+) diff --git a/openapi_input/file_operations.yaml b/openapi_input/file_operations.yaml index 481b736..071f845 100644 --- a/openapi_input/file_operations.yaml +++ b/openapi_input/file_operations.yaml @@ -141,6 +141,7 @@ paths: example: upload_link: >- https://cloud.seafile.com/seafhttp/upload-api/83e701c8-84ba-498c-91b1-ddb3789edb7e + workspace_id: 42 parent_path: /asset/a275d870-fd55-48e4-8c4a-5fd6f2549765 img_relative_path: images/2021-08 file_relative_path: files/2021-08 @@ -361,6 +362,7 @@ paths: example: dirent: upload_link: "https://cloud.seatable.io/seafhttp/upload-api/e943a56a-c5b3-441a-ac1d-9199819dec71" + workspace_id: 42 parent_path: "/asset/1338f224-8482-4d71-b8be-63c8f37b896a/custom" relative_path": "/" /api/v2.1/dtable/custom/app-download-link/: diff --git a/openapi_input/team_admin_account_operations.yaml b/openapi_input/team_admin_account_operations.yaml index a1e234b..04de9e4 100644 --- a/openapi_input/team_admin_account_operations.yaml +++ b/openapi_input/team_admin_account_operations.yaml @@ -30,6 +30,8 @@ tags: description: Retrieve team info and update team settings - name: Activities & Logs description: Retrieve team activities and logs + - name: Statistics + description: Retrieve statistics about system activities - name: Customizing description: Customize team appearance - name: SAML @@ -69,6 +71,14 @@ components: type: string description: Exact name or a part of the name of the base, case insensitive. example: "Example" + dtable_uuid: + name: dtable_uuid + in: query + schema: + type: string + pattern: '^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$' + description: The unique identifier of a base. + example: 5c264e76-0e5a-448a-9f34-580b551364ca ignore_asset: name: ignore_asset in: query @@ -76,6 +86,41 @@ components: type: boolean example: "false" description: Set this to `true` to export the base without assets. Default is `false`. + login_status: + name: login_status + in: query + schema: + type: string + enum: [success, failure] + example: success + description: Set this to `success` to only return successful logins. By default, all logins are returned. + start: + name: start + in: query + schema: + type: string + format: date-time + description: Start date in ISO format. + example: "2025-11-01T06:00:00+01:00" + required: false + end: + name: end + in: query + schema: + type: string + format: date-time + description: End date in ISO format. + example: "2025-11-30T18:00:00+01:00" + required: false + operation_group: + name: operation_group + in: query + schema: + type: string + enum: [user, group, base] + example: user + description: Filter by a specific operation group. By default, all operations are returned. + required: false #=======================Path parameters=======================# org_id: @@ -149,6 +194,14 @@ components: pattern: "^[a-f0-9]{32}(@auth.local)$" required: true example: 123456789f1e4c8d8e1c31415867317c@auth.local + app_name: + name: app_name + description: The name of your app. Every API-Token has a name to identify the purpose. The name of the app must be unique for every base. + in: path + schema: + type: string + required: true + example: "My App" schemas: team_admin_permission: @@ -406,6 +459,8 @@ paths: id_in_org: "" has_default_device: false is_force_2fa: true + is_active: true + is_org_admin: false put: tags: - Users @@ -637,6 +692,64 @@ paths: owner_deleted: false, rows_count: 20 count: 16 + /api/v2.1/org/{org_id}/admin/users/{user_id}/dtables/: + get: + tags: + - Bases + summary: List User's Bases + operationId: listUsersBases + description: List all the bases of a certain user by the user's ID. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/user_id" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + dtable_list: + - id: 6 + workspace_id: 2 + uuid: 3c899a81-6a0c-4111-bb19-288ebf8442fd + name: CRM + created_at: '2025-11-28T14:16:30+01:00' + updated_at: '2025-11-28T14:17:04+01:00' + color: "#E91E63" + text_color: null + icon: icon-user-interview + is_encrypted: false + in_storage: true + org_id: 2 + email: e38487b4357e40c8b1359223ba87a1af@auth.local + group_id: -1 + owner: org-1-admin + owner_deleted: false + rows_count: 7 + - id: 7 + workspace_id: 2 + uuid: e97bb668-da36-484c-8ac9-8aa9e0564f4c + name: Finances + created_at: '2025-11-28T14:18:31+01:00' + updated_at: '2025-11-28T14:18:31+01:00' + color: "#00C9C7" + text_color: null + icon: icon-dollar + is_encrypted: false + in_storage: true + org_id: 2 + email: e38487b4357e40c8b1359223ba87a1af@auth.local + group_id: -1 + owner: org-1-admin + owner_deleted: false + rows_count: 0 + count: 2 /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/: get: tags: @@ -1221,8 +1334,170 @@ paths: application/json: schema: type: object + /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/api-tokens/: + get: + tags: + - Bases + summary: List API-Tokens + operationId: listApiTokens + description: List API tokens of a single base. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/base_uuid" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + api_tokens: + - app_name: n8n + api_token: c1a7a416280ab3f9b0b632edbb58a69a771783f0 + generated_by: e38487b4357e40c8b1359223ba87a1af@auth.local + creator: user1 + avatar_url: https://cloud.seatable.io/media/avatars/default.png + generated_at: '2025-11-28T14:18:39+01:00' + last_access: '2025-11-28T14:18:39+01:00' + permission: rw + /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/api-tokens/{app_name}/: + delete: + tags: + - Bases + summary: Delete API-Token + operationId: deleteApiToken + description: Delete a specific API token from a base. The token is identified by its *app_name*. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/base_uuid" + - $ref: "#/components/parameters/app_name" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + success: true + /api/v2.1/org/{org_id}/admin/api-tokens/: + get: + tags: + - Bases + summary: List API-Tokens of All Bases + operationId: listApiTokensOfAllBases + description: List API tokens of all bases inside the team/organization. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + api_tokens: + - app_name: n8n + api_token: c1a7a416280ab3f9b0b632edbb58a69a771783f0 + generated_by: e38487b4357e40c8b1359223ba87a1af@auth.local + creator: user1 + avatar_url: https://cloud.seatable.io/media/avatars/default.png + generated_at: '2025-11-28T14:18:39+01:00' + last_access: '2025-11-28T14:18:39+01:00' + permission: rw + dtable_uuid: 3c899a81-6a0c-4111-bb19-288ebf8442fd + dtable_name: CRM + dtable_icon: icon-user-interview + dtable_color: "#E91E63" + - app_name: API + api_token: 89913c6509062bbd24efe42a509cf9c5bb843018 + generated_by: e38487b4357e40c8b1359223ba87a1af@auth.local + creator: user1 + avatar_url: https://cloud.seatable.io/media/avatars/default.png + generated_at: '2025-11-28T14:18:54+01:00' + last_access: '2025-11-28T14:18:54+01:00' + permission: rw + dtable_uuid: e97bb668-da36-484c-8ac9-8aa9e0564f4c + dtable_name: Finances + dtable_icon: icon-dollar + dtable_color: "#00C9C7" + total_count: 2 # Sharing Links + /api/v2.1/org/{org_id}/admin/shares/: + get: + tags: + - Sharing Links + summary: List Shares + operationId: listShares + description: | + List all shares inside the given team/organization. + + This includes the following: + - Bases shared to individual users + - Bases shared to groups + - Views shared to individual users + - Views shared to groups + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + dtable_user_shares: + - dtable_uuid: 3c899a81-6a0c-4111-bb19-288ebf8442fd + email: 97f45993fc174280b939976c9b9256eb@auth.local + name: org-1-user-1 + avatar_url: https://cloud.seatable.io/media/avatars/default.png + contact_email: org-1-user-1@seatable.io + permission: rw + share_id: 1 + dtable_group_shares: + - dtable_uuid: 3c899a81-6a0c-4111-bb19-288ebf8442fd + group_id: 1 + group_name: Marketing + permission: rw + share_id: 1 + view_user_shares: + - dtable_uuid: 3c899a81-6a0c-4111-bb19-288ebf8442fd + id: 1 + dtable_name: CRM + from_user: e38487b4357e40c8b1359223ba87a1af@auth.local + to_user: 97f45993fc174280b939976c9b9256eb@auth.local + permission: r + table_id: '0000' + view_id: '0000' + shared_name: User share + from_user_name: org-1-admin + to_user_name: org-1-user-1 + view_group_shares: + - dtable_uuid: 3c899a81-6a0c-4111-bb19-288ebf8442fd + id: 1 + dtable_name: CRM + from_user: e38487b4357e40c8b1359223ba87a1af@auth.local + to_group_id: 1 + permission: r + table_id: '0000' + view_id: '0000' + shared_name: Group share + from_user_name: org-1-admin + to_group_name: Marketing /api/v2.1/org/{org_id}/admin/external-links/: get: tags: @@ -1621,6 +1896,28 @@ paths: enable_force_2fa: true enable_new_user_email: true enable_external_user_access_invite_link: false + /api/v2.1/org/admin/: + delete: + tags: + - Info & Settings + summary: Delete Team + operationId: deleteTeam + description: >- + Delete a team (organization) with its ID. This will eliminate the team! + + However, this won't delete the team users - but all its members will + become team-less users in the system. + security: + - AccountTokenAuth: [] + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + success: true /api/v2.1/org/{org_id}/admin/admin-logs/: get: @@ -1635,6 +1932,9 @@ paths: - $ref: "#/components/parameters/page" - $ref: "#/components/parameters/per_page" - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/operation_group" + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" responses: "200": description: OK @@ -1731,6 +2031,9 @@ paths: - $ref: "#/components/parameters/page" - $ref: "#/components/parameters/per_page" - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/login_status" + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" responses: "200": description: OK @@ -1867,6 +2170,317 @@ paths: ], "count": 2 } + /api/v2.1/org/{org_id}/admin/automation-logs/: + get: + tags: + - Activities & Logs + summary: List Automation Logs + operationId: listAutomationLogs + description: Returns a list of automation logs inside a specific team. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + logs: + - id: 43543 + rule_id: 454 + trigger_time: "2025-11-28T14:05:52+01:00" + run_condition: per_update + success: true + org_id: -1 + dtable_uuid: 8fc3fbc2-d8d2-4a23-965d-33cbf511d780 + owner: 314bd2ed8d9741b08852916907dc7dd5@auth.local + warnings: null + - id: 43544 + rule_id: 454 + trigger_time: "2025-11-28T14:05:55+01:00" + run_condition: per_update + success: true + org_id: -1 + dtable_uuid: 8fc3fbc2-d8d2-4a23-965d-33cbf511d780 + owner: 314bd2ed8d9741b08852916907dc7dd5@auth.local + warnings: null + total_count: 2 + /api/v2.1/org/{org_id}/admin/python-runs/: + get: + tags: + - Activities & Logs + summary: List Python Runs + operationId: listPythonRuns + description: Returns a list of python runs inside a specific team. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/dtable_uuid" + name: base_uuid + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + runs: + - dtable_uuid: 306acc83-5305-45b4-b34b-528f6f51d7b8 + finished_at: "2026-01-06T11:57:11+01:00" + id: 3, + operate_from: manualy + owner: 2a609b47d6254449a7f042a42ef02d09@auth.local + return_code: 0, + script_name: DDx0.py + started_at: "2026-01-06T11:57:10+01:00" + success: true + script_display_name: "Hello World" + - dtable_uuid: 149cd597-dcbc-4e2a-8344-91651a1b4853 + finished_at: "2026-01-06T12:11:18+01:00" + id: 4 + operate_from: manualy + owner: 2a609b47d6254449a7f042a42ef02d09@auth.local + return_code: 0 + script_name: O60m.py + started_at: "2026-01-06T12:11:18+01:00" + success: true + script_display_name: "Base 2 Script" + total_count: 2 + + # Statistics + /api/v2.1/org/{org_id}/admin/statistics/admin-logs/by-day/: + get: + tags: + - Statistics + summary: Admin Logs (by Day) + operationId: getAdminLogStatisticsByDay + description: Returns statistics about admin logs grouped by day. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + results: + - date: '2025-10-29' + number_of_operations: 2 + base_operations: 1 + group_operations: 0 + user_operations: 1 + - date: '2025-10-30' + number_of_operations: 5 + base_operations: 3 + group_operations: 1 + user_operations: 1 + - date: '2025-10-31' + number_of_operations: 2 + base_operations: 0 + group_operations: 1 + user_operations: 1 + total_count: 3 + /api/v2.1/org/{org_id}/admin/statistics/automation-logs/by-day/: + get: + tags: + - Statistics + summary: Automation Logs (by Day) + operationId: getAutomationLogStatisticsByDay + description: Returns statistics about automation logs grouped by day. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/dtable_uuid" + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + results: + - trigger_date: '2025-11-27' + number_of_executions: 10 + successful_executions: 9 + unsuccessful_executions: 1 + - trigger_date: '2025-11-28' + number_of_executions: 2 + successful_executions: 2 + unsuccessful_executions: 0 + total_count: 2 + /api/v2.1/org/{org_id}/admin/statistics/automation-logs/by-base/: + get: + tags: + - Statistics + summary: Automation Logs (by Base) + operationId: getAutomationLogStatisticsByBase + description: Returns statistics about automation logs grouped by base. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + results: + - dtable_uuid: 3c899a81-6a0c-4111-bb19-288ebf8442fd + number_of_executions: 2 + successful_executions: 2 + unsuccessful_executions: 0 + - dtable_uuid: e97bb668-da36-484c-8ac9-8aa9e0564f4c + number_of_executions: 5 + successful_executions: 4 + unsuccessful_executions: 1 + total_count: 2 + /api/v2.1/org/{org_id}/admin/statistics/login-logs/by-day/: + get: + tags: + - Statistics + summary: Login Logs (by Day) + operationId: getLoginLogStatisticsByDay + description: Returns statistics about login logs grouped by day. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + results: + - date: '2025-11-27' + number_of_attempts: 15 + successful_attempts: 14 + unsuccessful_attempts: 1 + - date: '2025-11-28' + number_of_attempts: 2 + successful_attempts: 1 + unsuccessful_attempts: 1 + total_count: 2 + /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-day/: + get: + tags: + - Statistics + summary: Python Runs (by Day) + operationId: getPythonRunStatisticsByDay + description: Returns statistics about python runs grouped by day. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/dtable_uuid" + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + results: + - date: '2025-11-27' + number_of_runs: 8 + total_run_time: 5 + triggered_by_automation_rule: 0 + triggered_manually: 8 + successful_runs: 3 + unsuccessful_runs: 5 + - date: '2025-11-28' + number_of_runs: 4 + total_run_time: 22 + triggered_by_automation_rule: 0 + triggered_manually: 4 + successful_runs: 4 + unsuccessful_runs: 0 + total_count: 2 + /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-base/: + get: + tags: + - Statistics + summary: Python Runs (by Base) + operationId: getPythonRunStatisticsByBase + description: Returns statistics about python runs grouped by base. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/start" + - $ref: "#/components/parameters/end" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + example: + results: + - base_uuid: 4202f7ad-3168-4bf4-b1e4-01aee6782f94 + number_of_runs: 8 + total_run_time: 5 + triggered_by_automation_rule: 0 + triggered_manually: 8 + successful_runs: 3 + unsuccessful_runs: 5 + - base_uuid: ca490121-cea3-4a04-8e25-ac72b03a61e0 + number_of_runs: 4 + total_run_time: 22 + triggered_by_automation_rule: 0 + triggered_manually: 4 + successful_runs: 4 + unsuccessful_runs: 0 + total_count: 2 + /api/v2.1/org/{org_id}/admin/org-logo/: post: tags: From 39cea43948dec03077990ea039406a9f53f80912 Mon Sep 17 00:00:00 2001 From: Simon Hammes Date: Fri, 9 Jan 2026 14:52:56 +0100 Subject: [PATCH 2/7] Regenerate code --- README_TeamAmin.md | 14 + docs/TeamAdmin/Api/ActivitiesLogsApi.md | 136 +- docs/TeamAdmin/Api/BasesApi.md | 216 +++ docs/TeamAdmin/Api/InfoSettingsApi.md | 47 + docs/TeamAdmin/Api/SharingLinksApi.md | 50 + docs/TeamAdmin/Api/StatisticsApi.md | 359 ++++ lib/TeamAdmin/ActivitiesLogsApi.php | 1019 ++++++++-- lib/TeamAdmin/BasesApi.php | 1613 ++++++++++++++-- lib/TeamAdmin/InfoSettingsApi.php | 255 +++ lib/TeamAdmin/SharingLinksApi.php | 278 +++ lib/TeamAdmin/StatisticsApi.php | 2285 +++++++++++++++++++++++ test/Api/ActivitiesLogsApiTest.php | 24 + test/Api/InfoSettingsApiTest.php | 12 + 13 files changed, 6011 insertions(+), 297 deletions(-) create mode 100644 docs/TeamAdmin/Api/StatisticsApi.md create mode 100644 lib/TeamAdmin/StatisticsApi.php diff --git a/README_TeamAmin.md b/README_TeamAmin.md index 1322564..6ad4ed4 100644 --- a/README_TeamAmin.md +++ b/README_TeamAmin.md @@ -4,17 +4,23 @@ Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- +*ActivitiesLogsApi* | [**listAutomationLogs**](docs/TeamAdmin/Api/ActivitiesLogsApi.md#listautomationlogs) | **GET** /api/v2.1/org/{org_id}/admin/automation-logs/ | List Automation Logs *ActivitiesLogsApi* | [**listFileAccessLogs**](docs/TeamAdmin/Api/ActivitiesLogsApi.md#listfileaccesslogs) | **GET** /api/v2.1/org/{org_id}/admin/file-access-logs/ | List File Access Logs *ActivitiesLogsApi* | [**listGroupMemberAuditLogs**](docs/TeamAdmin/Api/ActivitiesLogsApi.md#listgroupmemberauditlogs) | **GET** /api/v2.1/org/{org_id}/admin/group-member-audit/ | List Group Member Audit Logs +*ActivitiesLogsApi* | [**listPythonRuns**](docs/TeamAdmin/Api/ActivitiesLogsApi.md#listpythonruns) | **GET** /api/v2.1/org/{org_id}/admin/python-runs/ | List Python Runs *ActivitiesLogsApi* | [**listTeamLogins**](docs/TeamAdmin/Api/ActivitiesLogsApi.md#listteamlogins) | **GET** /api/v2.1/org/{org_id}/admin/login-logs/ | List Team Logins *ActivitiesLogsApi* | [**listTeamOperationLog**](docs/TeamAdmin/Api/ActivitiesLogsApi.md#listteamoperationlog) | **GET** /api/v2.1/org/{org_id}/admin/admin-logs/ | List Team Operations *ActivitiesLogsApi* | [**listUserLogins**](docs/TeamAdmin/Api/ActivitiesLogsApi.md#listuserlogins) | **GET** /api/v2.1/org/{org_id}/admin/login-logs/{user_id}/ | List User Logins *BasesApi* | [**clearTeamTrashBin**](docs/TeamAdmin/Api/BasesApi.md#clearteamtrashbin) | **DELETE** /api/v2.1/org/{org_id}/admin/trash-dtables/ | Clear Team Trash Bin +*BasesApi* | [**deleteApiToken**](docs/TeamAdmin/Api/BasesApi.md#deleteapitoken) | **DELETE** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/api-tokens/{app_name}/ | Delete API-Token *BasesApi* | [**deleteBase**](docs/TeamAdmin/Api/BasesApi.md#deletebase) | **DELETE** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/ | Delete Base *BasesApi* | [**getBase**](docs/TeamAdmin/Api/BasesApi.md#getbase) | **GET** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/ | Get Base +*BasesApi* | [**listApiTokens**](docs/TeamAdmin/Api/BasesApi.md#listapitokens) | **GET** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/api-tokens/ | List API-Tokens +*BasesApi* | [**listApiTokensOfAllBases**](docs/TeamAdmin/Api/BasesApi.md#listapitokensofallbases) | **GET** /api/v2.1/org/{org_id}/admin/api-tokens/ | List API-Tokens of All Bases *BasesApi* | [**listBaseSharings**](docs/TeamAdmin/Api/BasesApi.md#listbasesharings) | **GET** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/shares/ | List Base Sharings *BasesApi* | [**listBases**](docs/TeamAdmin/Api/BasesApi.md#listbases) | **GET** /api/v2.1/org/{org_id}/admin/dtables/ | List Bases (Team) *BasesApi* | [**listTrashBases**](docs/TeamAdmin/Api/BasesApi.md#listtrashbases) | **GET** /api/v2.1/org/{org_id}/admin/trash-dtables/ | List Trash Bases +*BasesApi* | [**listUsersBases**](docs/TeamAdmin/Api/BasesApi.md#listusersbases) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/dtables/ | List User's Bases *BasesApi* | [**restoreBaseFromTrash**](docs/TeamAdmin/Api/BasesApi.md#restorebasefromtrash) | **PUT** /api/v2.1/org/{org_id}/admin/trash-dtables/{base_uuid}/ | Restore Base from Trash *BasesApi* | [**searchBase**](docs/TeamAdmin/Api/BasesApi.md#searchbase) | **GET** /api/v2.1/org/{org_id}/admin/search-dtables/ | Search Base *CustomizingApi* | [**deleteTeamLogo**](docs/TeamAdmin/Api/CustomizingApi.md#deleteteamlogo) | **DELETE** /api/v2.1/org/{org_id}/admin/org-logo/ | Delete Team Logo @@ -31,6 +37,7 @@ Class | Method | HTTP request | Description *GroupsApi* | [**removeGroupMembers**](docs/TeamAdmin/Api/GroupsApi.md#removegroupmembers) | **DELETE** /api/v2.1/org/{org_id}/admin/groups/{group_id}/members/{user_id}/ | Remove Group Members *GroupsApi* | [**updateGroup**](docs/TeamAdmin/Api/GroupsApi.md#updategroup) | **PUT** /api/v2.1/org/{org_id}/admin/groups/{group_id}/ | Update Group *GroupsApi* | [**updateGroupMemberRole**](docs/TeamAdmin/Api/GroupsApi.md#updategroupmemberrole) | **PUT** /api/v2.1/org/{org_id}/admin/groups/{group_id}/members/{user_id}/ | Update Group Member Role +*InfoSettingsApi* | [**deleteTeam**](docs/TeamAdmin/Api/InfoSettingsApi.md#deleteteam) | **DELETE** /api/v2.1/org/admin/ | Delete Team *InfoSettingsApi* | [**getTeamInfo**](docs/TeamAdmin/Api/InfoSettingsApi.md#getteaminfo) | **GET** /api/v2.1/org/admin/info/ | Get Team Info *InfoSettingsApi* | [**getTeamSettings**](docs/TeamAdmin/Api/InfoSettingsApi.md#getteamsettings) | **GET** /api/v2.1/org/admin/settings/ | Get Team Settings *InfoSettingsApi* | [**updateTeam**](docs/TeamAdmin/Api/InfoSettingsApi.md#updateteam) | **PUT** /api/v2.1/org/admin/info/ | Update Team @@ -44,8 +51,15 @@ Class | Method | HTTP request | Description *SharingLinksApi* | [**deleteViewExternalLink**](docs/TeamAdmin/Api/SharingLinksApi.md#deleteviewexternallink) | **DELETE** /api/v2.1/org/{org_id}/admin/view-external-links/{view_external_link_token}/ | Delete View External Link *SharingLinksApi* | [**listBaseExternalLinks**](docs/TeamAdmin/Api/SharingLinksApi.md#listbaseexternallinks) | **GET** /api/v2.1/org/{org_id}/admin/external-links/ | List Base External Links *SharingLinksApi* | [**listInviteLinks**](docs/TeamAdmin/Api/SharingLinksApi.md#listinvitelinks) | **GET** /api/v2.1/org/{org_id}/admin/invite-links/ | List Invite Links +*SharingLinksApi* | [**listShares**](docs/TeamAdmin/Api/SharingLinksApi.md#listshares) | **GET** /api/v2.1/org/{org_id}/admin/shares/ | List Shares *SharingLinksApi* | [**listViewExternalLinks**](docs/TeamAdmin/Api/SharingLinksApi.md#listviewexternallinks) | **GET** /api/v2.1/org/{org_id}/admin/view-external-links/ | List View External Links *SharingLinksApi* | [**updateInviteLink**](docs/TeamAdmin/Api/SharingLinksApi.md#updateinvitelink) | **PUT** /api/v2.1/org/{org_id}/admin/invite-links/{invite_link_token}/ | Update Invite Link +*StatisticsApi* | [**getAdminLogStatisticsByDay**](docs/TeamAdmin/Api/StatisticsApi.md#getadminlogstatisticsbyday) | **GET** /api/v2.1/org/{org_id}/admin/statistics/admin-logs/by-day/ | Admin Logs (by Day) +*StatisticsApi* | [**getAutomationLogStatisticsByBase**](docs/TeamAdmin/Api/StatisticsApi.md#getautomationlogstatisticsbybase) | **GET** /api/v2.1/org/{org_id}/admin/statistics/automation-logs/by-base/ | Automation Logs (by Base) +*StatisticsApi* | [**getAutomationLogStatisticsByDay**](docs/TeamAdmin/Api/StatisticsApi.md#getautomationlogstatisticsbyday) | **GET** /api/v2.1/org/{org_id}/admin/statistics/automation-logs/by-day/ | Automation Logs (by Day) +*StatisticsApi* | [**getLoginLogStatisticsByDay**](docs/TeamAdmin/Api/StatisticsApi.md#getloginlogstatisticsbyday) | **GET** /api/v2.1/org/{org_id}/admin/statistics/login-logs/by-day/ | Login Logs (by Day) +*StatisticsApi* | [**getPythonRunStatisticsByBase**](docs/TeamAdmin/Api/StatisticsApi.md#getpythonrunstatisticsbybase) | **GET** /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-base/ | Python Runs (by Base) +*StatisticsApi* | [**getPythonRunStatisticsByDay**](docs/TeamAdmin/Api/StatisticsApi.md#getpythonrunstatisticsbyday) | **GET** /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-day/ | Python Runs (by Day) *UsersApi* | [**addUser**](docs/TeamAdmin/Api/UsersApi.md#adduser) | **POST** /api/v2.1/org/{org_id}/admin/users/ | Add User *UsersApi* | [**deleteUser**](docs/TeamAdmin/Api/UsersApi.md#deleteuser) | **DELETE** /api/v2.1/org/{org_id}/admin/users/{user_id}/ | Delete User *UsersApi* | [**disableTwoFactor**](docs/TeamAdmin/Api/UsersApi.md#disabletwofactor) | **DELETE** /api/v2.1/org/{org_id}/admin/users/{user_id}/two-factor-auth/ | Disable 2FA diff --git a/docs/TeamAdmin/Api/ActivitiesLogsApi.md b/docs/TeamAdmin/Api/ActivitiesLogsApi.md index b97f76c..838b553 100644 --- a/docs/TeamAdmin/Api/ActivitiesLogsApi.md +++ b/docs/TeamAdmin/Api/ActivitiesLogsApi.md @@ -4,13 +4,72 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi | Method | HTTP request | Description | | ------------- | ------------- | ------------- | +| [**listAutomationLogs()**](ActivitiesLogsApi.md#listAutomationLogs) | **GET** /api/v2.1/org/{org_id}/admin/automation-logs/ | List Automation Logs | | [**listFileAccessLogs()**](ActivitiesLogsApi.md#listFileAccessLogs) | **GET** /api/v2.1/org/{org_id}/admin/file-access-logs/ | List File Access Logs | | [**listGroupMemberAuditLogs()**](ActivitiesLogsApi.md#listGroupMemberAuditLogs) | **GET** /api/v2.1/org/{org_id}/admin/group-member-audit/ | List Group Member Audit Logs | +| [**listPythonRuns()**](ActivitiesLogsApi.md#listPythonRuns) | **GET** /api/v2.1/org/{org_id}/admin/python-runs/ | List Python Runs | | [**listTeamLogins()**](ActivitiesLogsApi.md#listTeamLogins) | **GET** /api/v2.1/org/{org_id}/admin/login-logs/ | List Team Logins | | [**listTeamOperationLog()**](ActivitiesLogsApi.md#listTeamOperationLog) | **GET** /api/v2.1/org/{org_id}/admin/admin-logs/ | List Team Operations | | [**listUserLogins()**](ActivitiesLogsApi.md#listUserLogins) | **GET** /api/v2.1/org/{org_id}/admin/login-logs/{user_id}/ | List User Logins | +## `listAutomationLogs()` + +```php +listAutomationLogs($org_id, $start, $end, $page, $per_page): object +``` + +List Automation Logs + +Returns a list of automation logs inside a specific team. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\ActivitiesLogsApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->listAutomationLogs($org_id, $start, $end, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ActivitiesLogsApi->listAutomationLogs: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + ## `listFileAccessLogs()` ```php @@ -117,10 +176,67 @@ AccountTokenAuth +## `listPythonRuns()` + +```php +listPythonRuns($dtable_uuid, $start, $end, $page, $per_page): object +``` + +List Python Runs + +Returns a list of python runs inside a specific team. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\ActivitiesLogsApi( + new GuzzleHttp\Client(), + $config +); +$dtable_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->listPythonRuns($dtable_uuid, $start, $end, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ActivitiesLogsApi->listPythonRuns: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **dtable_uuid** | **string**| The unique identifier of a base. | [optional] | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + ## `listTeamLogins()` ```php -listTeamLogins($org_id, $page, $per_page): object +listTeamLogins($org_id, $page, $per_page, $login_status, $start, $end): object ``` List Team Logins @@ -142,9 +258,12 @@ $apiInstance = new SeaTable\Client\TeamAdmin\ActivitiesLogsApi( $org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. $page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. $per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. +$login_status = success; // string | Set this to `success` to only return successful logins. By default, all logins are returned. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. try { - $result = $apiInstance->listTeamLogins($org_id, $page, $per_page); + $result = $apiInstance->listTeamLogins($org_id, $page, $per_page, $login_status, $start, $end); print_r($result); } catch (Exception $e) { echo 'Exception when calling ActivitiesLogsApi->listTeamLogins: ', $e->getMessage(), PHP_EOL; @@ -158,6 +277,9 @@ try { | **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | | **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | | **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | +| **login_status** | **string**| Set this to `success` to only return successful logins. By default, all logins are returned. | [optional] | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | ### Return type @@ -173,7 +295,7 @@ AccountTokenAuth ## `listTeamOperationLog()` ```php -listTeamOperationLog($org_id, $page, $per_page): object +listTeamOperationLog($org_id, $page, $per_page, $operation_group, $start, $end): object ``` List Team Operations @@ -195,9 +317,12 @@ $apiInstance = new SeaTable\Client\TeamAdmin\ActivitiesLogsApi( $org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. $page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. $per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. +$operation_group = user; // string | Filter by a specific operation group. By default, all operations are returned. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. try { - $result = $apiInstance->listTeamOperationLog($org_id, $page, $per_page); + $result = $apiInstance->listTeamOperationLog($org_id, $page, $per_page, $operation_group, $start, $end); print_r($result); } catch (Exception $e) { echo 'Exception when calling ActivitiesLogsApi->listTeamOperationLog: ', $e->getMessage(), PHP_EOL; @@ -211,6 +336,9 @@ try { | **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | | **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | | **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | +| **operation_group** | **string**| Filter by a specific operation group. By default, all operations are returned. | [optional] | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | ### Return type diff --git a/docs/TeamAdmin/Api/BasesApi.md b/docs/TeamAdmin/Api/BasesApi.md index f51f1af..775c0e1 100644 --- a/docs/TeamAdmin/Api/BasesApi.md +++ b/docs/TeamAdmin/Api/BasesApi.md @@ -5,11 +5,15 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi | Method | HTTP request | Description | | ------------- | ------------- | ------------- | | [**clearTeamTrashBin()**](BasesApi.md#clearTeamTrashBin) | **DELETE** /api/v2.1/org/{org_id}/admin/trash-dtables/ | Clear Team Trash Bin | +| [**deleteApiToken()**](BasesApi.md#deleteApiToken) | **DELETE** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/api-tokens/{app_name}/ | Delete API-Token | | [**deleteBase()**](BasesApi.md#deleteBase) | **DELETE** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/ | Delete Base | | [**getBase()**](BasesApi.md#getBase) | **GET** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/ | Get Base | +| [**listApiTokens()**](BasesApi.md#listApiTokens) | **GET** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/api-tokens/ | List API-Tokens | +| [**listApiTokensOfAllBases()**](BasesApi.md#listApiTokensOfAllBases) | **GET** /api/v2.1/org/{org_id}/admin/api-tokens/ | List API-Tokens of All Bases | | [**listBaseSharings()**](BasesApi.md#listBaseSharings) | **GET** /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/shares/ | List Base Sharings | | [**listBases()**](BasesApi.md#listBases) | **GET** /api/v2.1/org/{org_id}/admin/dtables/ | List Bases (Team) | | [**listTrashBases()**](BasesApi.md#listTrashBases) | **GET** /api/v2.1/org/{org_id}/admin/trash-dtables/ | List Trash Bases | +| [**listUsersBases()**](BasesApi.md#listUsersBases) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/dtables/ | List User's Bases | | [**restoreBaseFromTrash()**](BasesApi.md#restoreBaseFromTrash) | **PUT** /api/v2.1/org/{org_id}/admin/trash-dtables/{base_uuid}/ | Restore Base from Trash | | [**searchBase()**](BasesApi.md#searchBase) | **GET** /api/v2.1/org/{org_id}/admin/search-dtables/ | Search Base | @@ -63,6 +67,59 @@ AccountTokenAuth +## `deleteApiToken()` + +```php +deleteApiToken($org_id, $base_uuid, $app_name): object +``` + +Delete API-Token + +Delete a specific API token from a base. The token is identified by its *app_name*. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\BasesApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$base_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. Sometimes also called dtable_uuid. +$app_name = My App; // string | The name of your app. Every API-Token has a name to identify the purpose. The name of the app must be unique for every base. + +try { + $result = $apiInstance->deleteApiToken($org_id, $base_uuid, $app_name); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling BasesApi->deleteApiToken: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **base_uuid** | **string**| The unique identifier of a base. Sometimes also called dtable_uuid. | | +| **app_name** | **string**| The name of your app. Every API-Token has a name to identify the purpose. The name of the app must be unique for every base. | | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + ## `deleteBase()` ```php @@ -165,6 +222,110 @@ AccountTokenAuth +## `listApiTokens()` + +```php +listApiTokens($org_id, $base_uuid): object +``` + +List API-Tokens + +List API tokens of a single base. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\BasesApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$base_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. Sometimes also called dtable_uuid. + +try { + $result = $apiInstance->listApiTokens($org_id, $base_uuid); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling BasesApi->listApiTokens: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **base_uuid** | **string**| The unique identifier of a base. Sometimes also called dtable_uuid. | | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + +## `listApiTokensOfAllBases()` + +```php +listApiTokensOfAllBases($org_id, $page, $per_page): object +``` + +List API-Tokens of All Bases + +List API tokens of all bases inside the team/organization. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\BasesApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->listApiTokensOfAllBases($org_id, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling BasesApi->listApiTokensOfAllBases: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + ## `listBaseSharings()` ```php @@ -322,6 +483,61 @@ AccountTokenAuth +## `listUsersBases()` + +```php +listUsersBases($org_id, $user_id, $page, $per_page): object +``` + +List User's Bases + +List all the bases of a certain user by the user's ID. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\BasesApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$user_id = 123456789f1e4c8d8e1c31415867317c@auth.local; // string | The unique `user_id` in the form ...@auth.local. This is not the email address of the user. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->listUsersBases($org_id, $user_id, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling BasesApi->listUsersBases: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **user_id** | **string**| The unique `user_id` in the form ...@auth.local. This is not the email address of the user. | | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + ## `restoreBaseFromTrash()` ```php diff --git a/docs/TeamAdmin/Api/InfoSettingsApi.md b/docs/TeamAdmin/Api/InfoSettingsApi.md index 09ca387..4e44a84 100644 --- a/docs/TeamAdmin/Api/InfoSettingsApi.md +++ b/docs/TeamAdmin/Api/InfoSettingsApi.md @@ -4,12 +4,59 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi | Method | HTTP request | Description | | ------------- | ------------- | ------------- | +| [**deleteTeam()**](InfoSettingsApi.md#deleteTeam) | **DELETE** /api/v2.1/org/admin/ | Delete Team | | [**getTeamInfo()**](InfoSettingsApi.md#getTeamInfo) | **GET** /api/v2.1/org/admin/info/ | Get Team Info | | [**getTeamSettings()**](InfoSettingsApi.md#getTeamSettings) | **GET** /api/v2.1/org/admin/settings/ | Get Team Settings | | [**updateTeam()**](InfoSettingsApi.md#updateTeam) | **PUT** /api/v2.1/org/admin/info/ | Update Team | | [**updateTeamSettings()**](InfoSettingsApi.md#updateTeamSettings) | **PUT** /api/v2.1/org/admin/settings/ | Update Team Settings | +## `deleteTeam()` + +```php +deleteTeam(): object +``` + +Delete Team + +Delete a team (organization) with its ID. This will eliminate the team! However, this won't delete the team users - but all its members will become team-less users in the system. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\InfoSettingsApi( + new GuzzleHttp\Client(), + $config +); + +try { + $result = $apiInstance->deleteTeam(); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling InfoSettingsApi->deleteTeam: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + ## `getTeamInfo()` ```php diff --git a/docs/TeamAdmin/Api/SharingLinksApi.md b/docs/TeamAdmin/Api/SharingLinksApi.md index 3784b89..f6dfb96 100644 --- a/docs/TeamAdmin/Api/SharingLinksApi.md +++ b/docs/TeamAdmin/Api/SharingLinksApi.md @@ -9,6 +9,7 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi | [**deleteViewExternalLink()**](SharingLinksApi.md#deleteViewExternalLink) | **DELETE** /api/v2.1/org/{org_id}/admin/view-external-links/{view_external_link_token}/ | Delete View External Link | | [**listBaseExternalLinks()**](SharingLinksApi.md#listBaseExternalLinks) | **GET** /api/v2.1/org/{org_id}/admin/external-links/ | List Base External Links | | [**listInviteLinks()**](SharingLinksApi.md#listInviteLinks) | **GET** /api/v2.1/org/{org_id}/admin/invite-links/ | List Invite Links | +| [**listShares()**](SharingLinksApi.md#listShares) | **GET** /api/v2.1/org/{org_id}/admin/shares/ | List Shares | | [**listViewExternalLinks()**](SharingLinksApi.md#listViewExternalLinks) | **GET** /api/v2.1/org/{org_id}/admin/view-external-links/ | List View External Links | | [**updateInviteLink()**](SharingLinksApi.md#updateInviteLink) | **PUT** /api/v2.1/org/{org_id}/admin/invite-links/{invite_link_token}/ | Update Invite Link | @@ -268,6 +269,55 @@ AccountTokenAuth +## `listShares()` + +```php +listShares($org_id): object +``` + +List Shares + +List all shares inside the given team/organization. This includes the following: - Bases shared to individual users - Bases shared to groups - Views shared to individual users - Views shared to groups + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\SharingLinksApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. + +try { + $result = $apiInstance->listShares($org_id); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SharingLinksApi->listShares: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + ## `listViewExternalLinks()` ```php diff --git a/docs/TeamAdmin/Api/StatisticsApi.md b/docs/TeamAdmin/Api/StatisticsApi.md new file mode 100644 index 0000000..464f40f --- /dev/null +++ b/docs/TeamAdmin/Api/StatisticsApi.md @@ -0,0 +1,359 @@ +# SeaTable\Client\StatisticsApi + +All URIs are relative to https://cloud.seatable.io, except if the operation defines another base path. + +| Method | HTTP request | Description | +| ------------- | ------------- | ------------- | +| [**getAdminLogStatisticsByDay()**](StatisticsApi.md#getAdminLogStatisticsByDay) | **GET** /api/v2.1/org/{org_id}/admin/statistics/admin-logs/by-day/ | Admin Logs (by Day) | +| [**getAutomationLogStatisticsByBase()**](StatisticsApi.md#getAutomationLogStatisticsByBase) | **GET** /api/v2.1/org/{org_id}/admin/statistics/automation-logs/by-base/ | Automation Logs (by Base) | +| [**getAutomationLogStatisticsByDay()**](StatisticsApi.md#getAutomationLogStatisticsByDay) | **GET** /api/v2.1/org/{org_id}/admin/statistics/automation-logs/by-day/ | Automation Logs (by Day) | +| [**getLoginLogStatisticsByDay()**](StatisticsApi.md#getLoginLogStatisticsByDay) | **GET** /api/v2.1/org/{org_id}/admin/statistics/login-logs/by-day/ | Login Logs (by Day) | +| [**getPythonRunStatisticsByBase()**](StatisticsApi.md#getPythonRunStatisticsByBase) | **GET** /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-base/ | Python Runs (by Base) | +| [**getPythonRunStatisticsByDay()**](StatisticsApi.md#getPythonRunStatisticsByDay) | **GET** /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-day/ | Python Runs (by Day) | + + +## `getAdminLogStatisticsByDay()` + +```php +getAdminLogStatisticsByDay($org_id, $start, $end, $page, $per_page): object +``` + +Admin Logs (by Day) + +Returns statistics about admin logs grouped by day. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\StatisticsApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->getAdminLogStatisticsByDay($org_id, $start, $end, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling StatisticsApi->getAdminLogStatisticsByDay: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + +## `getAutomationLogStatisticsByBase()` + +```php +getAutomationLogStatisticsByBase($org_id, $start, $end, $page, $per_page): object +``` + +Automation Logs (by Base) + +Returns statistics about automation logs grouped by base. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\StatisticsApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->getAutomationLogStatisticsByBase($org_id, $start, $end, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling StatisticsApi->getAutomationLogStatisticsByBase: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + +## `getAutomationLogStatisticsByDay()` + +```php +getAutomationLogStatisticsByDay($org_id, $dtable_uuid, $start, $end, $page, $per_page): object +``` + +Automation Logs (by Day) + +Returns statistics about automation logs grouped by day. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\StatisticsApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$dtable_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->getAutomationLogStatisticsByDay($org_id, $dtable_uuid, $start, $end, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling StatisticsApi->getAutomationLogStatisticsByDay: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **dtable_uuid** | **string**| The unique identifier of a base. | [optional] | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + +## `getLoginLogStatisticsByDay()` + +```php +getLoginLogStatisticsByDay($org_id, $start, $end, $page, $per_page): object +``` + +Login Logs (by Day) + +Returns statistics about login logs grouped by day. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\StatisticsApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->getLoginLogStatisticsByDay($org_id, $start, $end, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling StatisticsApi->getLoginLogStatisticsByDay: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + +## `getPythonRunStatisticsByBase()` + +```php +getPythonRunStatisticsByBase($org_id, $start, $end, $page, $per_page): object +``` + +Python Runs (by Base) + +Returns statistics about python runs grouped by base. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\StatisticsApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->getPythonRunStatisticsByBase($org_id, $start, $end, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling StatisticsApi->getPythonRunStatisticsByBase: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + +## `getPythonRunStatisticsByDay()` + +```php +getPythonRunStatisticsByDay($org_id, $dtable_uuid, $start, $end, $page, $per_page): object +``` + +Python Runs (by Day) + +Returns statistics about python runs grouped by day. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\StatisticsApi( + new GuzzleHttp\Client(), + $config +); +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$dtable_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. +$start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. +$end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->getPythonRunStatisticsByDay($org_id, $dtable_uuid, $start, $end, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling StatisticsApi->getPythonRunStatisticsByDay: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **dtable_uuid** | **string**| The unique identifier of a base. | [optional] | +| **start** | **\DateTime**| Start date in ISO format. | [optional] | +| **end** | **\DateTime**| End date in ISO format. | [optional] | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + diff --git a/lib/TeamAdmin/ActivitiesLogsApi.php b/lib/TeamAdmin/ActivitiesLogsApi.php index f191f49..6f35fa8 100644 --- a/lib/TeamAdmin/ActivitiesLogsApi.php +++ b/lib/TeamAdmin/ActivitiesLogsApi.php @@ -73,12 +73,18 @@ class ActivitiesLogsApi /** @var string[] $contentTypes **/ public const contentTypes = [ + 'listAutomationLogs' => [ + 'application/json', + ], 'listFileAccessLogs' => [ 'application/json', ], 'listGroupMemberAuditLogs' => [ 'application/json', ], + 'listPythonRuns' => [ + 'application/json', + ], 'listTeamLogins' => [ 'application/json', ], @@ -137,42 +143,46 @@ public function getConfig() } /** - * Operation listFileAccessLogs + * Operation listAutomationLogs * - * List File Access Logs + * List Automation Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listAutomationLogs'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return object */ - public function listFileAccessLogs($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) + public function listAutomationLogs($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { - list($response) = $this->listFileAccessLogsWithHttpInfo($org_id, $page, $per_page, $contentType); + list($response) = $this->listAutomationLogsWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType); return $response; } /** - * Operation listFileAccessLogsWithHttpInfo + * Operation listAutomationLogsWithHttpInfo * - * List File Access Logs + * List Automation Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listAutomationLogs'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listFileAccessLogsWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) + public function listAutomationLogsWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { - $request = $this->listFileAccessLogsRequest($org_id, $page, $per_page, $contentType); + $request = $this->listAutomationLogsRequest($org_id, $start, $end, $page, $per_page, $contentType); try { $options = $this->createHttpClientOption(); @@ -244,21 +254,23 @@ public function listFileAccessLogsWithHttpInfo($org_id, $page = null, $per_page } /** - * Operation listFileAccessLogsAsync + * Operation listAutomationLogsAsync * - * List File Access Logs + * List Automation Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listAutomationLogs'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listFileAccessLogsAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) + public function listAutomationLogsAsync($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { - return $this->listFileAccessLogsAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + return $this->listAutomationLogsAsyncWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType) ->then( function ($response) { return $response[0]; @@ -267,22 +279,24 @@ function ($response) { } /** - * Operation listFileAccessLogsAsyncWithHttpInfo + * Operation listAutomationLogsAsyncWithHttpInfo * - * List File Access Logs + * List Automation Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listAutomationLogs'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listFileAccessLogsAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) + public function listAutomationLogsAsyncWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { $returnType = 'object'; - $request = $this->listFileAccessLogsRequest($org_id, $page, $per_page, $contentType); + $request = $this->listAutomationLogsRequest($org_id, $start, $end, $page, $per_page, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -321,45 +335,67 @@ function ($exception) { } /** - * Create request for operation 'listFileAccessLogs' + * Create request for operation 'listAutomationLogs' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listAutomationLogs'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listFileAccessLogsRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) + public function listAutomationLogsRequest($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { // verify the required parameter 'org_id' is set if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $org_id when calling listFileAccessLogs' + 'Missing the required parameter $org_id when calling listAutomationLogs' ); } if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listFileAccessLogs, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listAutomationLogs, must be bigger than or equal to 1.'); } + + if ($page !== null && $page < 1) { - throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listFileAccessLogs, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listAutomationLogs, must be bigger than or equal to 1.'); } if ($per_page !== null && $per_page < 1) { - throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listFileAccessLogs, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listAutomationLogs, must be bigger than or equal to 1.'); } - $resourcePath = '/api/v2.1/org/{org_id}/admin/file-access-logs/'; + $resourcePath = '/api/v2.1/org/{org_id}/admin/automation-logs/'; $formParams = []; $queryParams = []; $headerParams = []; $httpBody = ''; $multipart = false; + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); // query params $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( $page, @@ -448,42 +484,42 @@ public function listFileAccessLogsRequest($org_id, $page = null, $per_page = nul } /** - * Operation listGroupMemberAuditLogs + * Operation listFileAccessLogs * - * List Group Member Audit Logs + * List File Access Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return object */ - public function listGroupMemberAuditLogs($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) + public function listFileAccessLogs($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) { - list($response) = $this->listGroupMemberAuditLogsWithHttpInfo($org_id, $page, $per_page, $contentType); + list($response) = $this->listFileAccessLogsWithHttpInfo($org_id, $page, $per_page, $contentType); return $response; } /** - * Operation listGroupMemberAuditLogsWithHttpInfo + * Operation listFileAccessLogsWithHttpInfo * - * List Group Member Audit Logs + * List File Access Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listGroupMemberAuditLogsWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) + public function listFileAccessLogsWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) { - $request = $this->listGroupMemberAuditLogsRequest($org_id, $page, $per_page, $contentType); + $request = $this->listFileAccessLogsRequest($org_id, $page, $per_page, $contentType); try { $options = $this->createHttpClientOption(); @@ -555,21 +591,21 @@ public function listGroupMemberAuditLogsWithHttpInfo($org_id, $page = null, $per } /** - * Operation listGroupMemberAuditLogsAsync + * Operation listFileAccessLogsAsync * - * List Group Member Audit Logs + * List File Access Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listGroupMemberAuditLogsAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) + public function listFileAccessLogsAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) { - return $this->listGroupMemberAuditLogsAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + return $this->listFileAccessLogsAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) ->then( function ($response) { return $response[0]; @@ -578,22 +614,22 @@ function ($response) { } /** - * Operation listGroupMemberAuditLogsAsyncWithHttpInfo + * Operation listFileAccessLogsAsyncWithHttpInfo * - * List Group Member Audit Logs + * List File Access Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listGroupMemberAuditLogsAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) + public function listFileAccessLogsAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) { $returnType = 'object'; - $request = $this->listGroupMemberAuditLogsRequest($org_id, $page, $per_page, $contentType); + $request = $this->listFileAccessLogsRequest($org_id, $page, $per_page, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -632,39 +668,39 @@ function ($exception) { } /** - * Create request for operation 'listGroupMemberAuditLogs' + * Create request for operation 'listFileAccessLogs' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listFileAccessLogs'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listGroupMemberAuditLogsRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) + public function listFileAccessLogsRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listFileAccessLogs'][0]) { // verify the required parameter 'org_id' is set if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $org_id when calling listGroupMemberAuditLogs' + 'Missing the required parameter $org_id when calling listFileAccessLogs' ); } if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listGroupMemberAuditLogs, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listFileAccessLogs, must be bigger than or equal to 1.'); } if ($page !== null && $page < 1) { - throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listGroupMemberAuditLogs, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listFileAccessLogs, must be bigger than or equal to 1.'); } if ($per_page !== null && $per_page < 1) { - throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listGroupMemberAuditLogs, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listFileAccessLogs, must be bigger than or equal to 1.'); } - $resourcePath = '/api/v2.1/org/{org_id}/admin/group-member-audit/'; + $resourcePath = '/api/v2.1/org/{org_id}/admin/file-access-logs/'; $formParams = []; $queryParams = []; $headerParams = []; @@ -759,42 +795,42 @@ public function listGroupMemberAuditLogsRequest($org_id, $page = null, $per_page } /** - * Operation listTeamLogins + * Operation listGroupMemberAuditLogs * - * List Team Logins + * List Group Member Audit Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return object */ - public function listTeamLogins($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listGroupMemberAuditLogs($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) { - list($response) = $this->listTeamLoginsWithHttpInfo($org_id, $page, $per_page, $contentType); + list($response) = $this->listGroupMemberAuditLogsWithHttpInfo($org_id, $page, $per_page, $contentType); return $response; } /** - * Operation listTeamLoginsWithHttpInfo + * Operation listGroupMemberAuditLogsWithHttpInfo * - * List Team Logins + * List Group Member Audit Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listTeamLoginsWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listGroupMemberAuditLogsWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) { - $request = $this->listTeamLoginsRequest($org_id, $page, $per_page, $contentType); + $request = $this->listGroupMemberAuditLogsRequest($org_id, $page, $per_page, $contentType); try { $options = $this->createHttpClientOption(); @@ -866,21 +902,21 @@ public function listTeamLoginsWithHttpInfo($org_id, $page = null, $per_page = nu } /** - * Operation listTeamLoginsAsync + * Operation listGroupMemberAuditLogsAsync * - * List Team Logins + * List Group Member Audit Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTeamLoginsAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listGroupMemberAuditLogsAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) { - return $this->listTeamLoginsAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + return $this->listGroupMemberAuditLogsAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) ->then( function ($response) { return $response[0]; @@ -889,22 +925,22 @@ function ($response) { } /** - * Operation listTeamLoginsAsyncWithHttpInfo + * Operation listGroupMemberAuditLogsAsyncWithHttpInfo * - * List Team Logins + * List Group Member Audit Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTeamLoginsAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listGroupMemberAuditLogsAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) { $returnType = 'object'; - $request = $this->listTeamLoginsRequest($org_id, $page, $per_page, $contentType); + $request = $this->listGroupMemberAuditLogsRequest($org_id, $page, $per_page, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -943,39 +979,39 @@ function ($exception) { } /** - * Create request for operation 'listTeamLogins' + * Create request for operation 'listGroupMemberAuditLogs' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listGroupMemberAuditLogs'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listTeamLoginsRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listGroupMemberAuditLogsRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listGroupMemberAuditLogs'][0]) { // verify the required parameter 'org_id' is set if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $org_id when calling listTeamLogins' + 'Missing the required parameter $org_id when calling listGroupMemberAuditLogs' ); } if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listTeamLogins, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listGroupMemberAuditLogs, must be bigger than or equal to 1.'); } if ($page !== null && $page < 1) { - throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listTeamLogins, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listGroupMemberAuditLogs, must be bigger than or equal to 1.'); } if ($per_page !== null && $per_page < 1) { - throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listTeamLogins, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listGroupMemberAuditLogs, must be bigger than or equal to 1.'); } - $resourcePath = '/api/v2.1/org/{org_id}/admin/login-logs/'; + $resourcePath = '/api/v2.1/org/{org_id}/admin/group-member-audit/'; $formParams = []; $queryParams = []; $headerParams = []; @@ -1070,42 +1106,46 @@ public function listTeamLoginsRequest($org_id, $page = null, $per_page = null, s } /** - * Operation listTeamOperationLog + * Operation listPythonRuns * - * List Team Operations + * List Python Runs * - * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listPythonRuns'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return object */ - public function listTeamOperationLog($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + public function listPythonRuns($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - list($response) = $this->listTeamOperationLogWithHttpInfo($org_id, $page, $per_page, $contentType); + list($response) = $this->listPythonRunsWithHttpInfo($dtable_uuid, $start, $end, $page, $per_page, $contentType); return $response; } /** - * Operation listTeamOperationLogWithHttpInfo + * Operation listPythonRunsWithHttpInfo * - * List Team Operations + * List Python Runs * - * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listPythonRuns'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listTeamOperationLogWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + public function listPythonRunsWithHttpInfo($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - $request = $this->listTeamOperationLogRequest($org_id, $page, $per_page, $contentType); + $request = $this->listPythonRunsRequest($dtable_uuid, $start, $end, $page, $per_page, $contentType); try { $options = $this->createHttpClientOption(); @@ -1177,21 +1217,23 @@ public function listTeamOperationLogWithHttpInfo($org_id, $page = null, $per_pag } /** - * Operation listTeamOperationLogAsync + * Operation listPythonRunsAsync * - * List Team Operations + * List Python Runs * - * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listPythonRuns'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTeamOperationLogAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + public function listPythonRunsAsync($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - return $this->listTeamOperationLogAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + return $this->listPythonRunsAsyncWithHttpInfo($dtable_uuid, $start, $end, $page, $per_page, $contentType) ->then( function ($response) { return $response[0]; @@ -1200,22 +1242,24 @@ function ($response) { } /** - * Operation listTeamOperationLogAsyncWithHttpInfo + * Operation listPythonRunsAsyncWithHttpInfo * - * List Team Operations + * List Python Runs * - * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listPythonRuns'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTeamOperationLogAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + public function listPythonRunsAsyncWithHttpInfo($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { $returnType = 'object'; - $request = $this->listTeamOperationLogRequest($org_id, $page, $per_page, $contentType); + $request = $this->listPythonRunsRequest($dtable_uuid, $start, $end, $page, $per_page, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -1254,45 +1298,70 @@ function ($exception) { } /** - * Create request for operation 'listTeamOperationLog' + * Create request for operation 'listPythonRuns' * - * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listPythonRuns'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listTeamOperationLogRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + public function listPythonRunsRequest($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - // verify the required parameter 'org_id' is set - if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { - throw new \InvalidArgumentException( - 'Missing the required parameter $org_id when calling listTeamOperationLog' - ); - } - if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listTeamOperationLog, must be bigger than or equal to 1.'); + if ($dtable_uuid !== null && !preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $dtable_uuid)) { + throw new \InvalidArgumentException("invalid value for \"dtable_uuid\" when calling ActivitiesLogsApi.listPythonRuns, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); } + + if ($page !== null && $page < 1) { - throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listTeamOperationLog, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listPythonRuns, must be bigger than or equal to 1.'); } if ($per_page !== null && $per_page < 1) { - throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listTeamOperationLog, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listPythonRuns, must be bigger than or equal to 1.'); } - $resourcePath = '/api/v2.1/org/{org_id}/admin/admin-logs/'; + $resourcePath = '/api/v2.1/org/{org_id}/admin/python-runs/'; $formParams = []; $queryParams = []; $headerParams = []; $httpBody = ''; $multipart = false; + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $dtable_uuid, + 'dtable_uuid', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); // query params $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( $page, @@ -1313,6 +1382,710 @@ public function listTeamOperationLogRequest($org_id, $page = null, $per_page = n ) ?? []); + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation listTeamLogins + * + * List Team Logins + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function listTeamLogins($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + { + list($response) = $this->listTeamLoginsWithHttpInfo($org_id, $page, $per_page, $login_status, $start, $end, $contentType); + return $response; + } + + /** + * Operation listTeamLoginsWithHttpInfo + * + * List Team Logins + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function listTeamLoginsWithHttpInfo($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + { + $request = $this->listTeamLoginsRequest($org_id, $page, $per_page, $login_status, $start, $end, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation listTeamLoginsAsync + * + * List Team Logins + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listTeamLoginsAsync($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + { + return $this->listTeamLoginsAsyncWithHttpInfo($org_id, $page, $per_page, $login_status, $start, $end, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listTeamLoginsAsyncWithHttpInfo + * + * List Team Logins + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listTeamLoginsAsyncWithHttpInfo($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + { + $returnType = 'object'; + $request = $this->listTeamLoginsRequest($org_id, $page, $per_page, $login_status, $start, $end, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'listTeamLogins' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listTeamLoginsRequest($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling listTeamLogins' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listTeamLogins, must be bigger than or equal to 1.'); + } + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listTeamLogins, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listTeamLogins, must be bigger than or equal to 1.'); + } + + + + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/login-logs/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $login_status, + 'login_status', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation listTeamOperationLog + * + * List Team Operations + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $operation_group Filter by a specific operation group. By default, all operations are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function listTeamOperationLog($org_id, $page = null, $per_page = null, $operation_group = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + { + list($response) = $this->listTeamOperationLogWithHttpInfo($org_id, $page, $per_page, $operation_group, $start, $end, $contentType); + return $response; + } + + /** + * Operation listTeamOperationLogWithHttpInfo + * + * List Team Operations + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $operation_group Filter by a specific operation group. By default, all operations are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function listTeamOperationLogWithHttpInfo($org_id, $page = null, $per_page = null, $operation_group = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + { + $request = $this->listTeamOperationLogRequest($org_id, $page, $per_page, $operation_group, $start, $end, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation listTeamOperationLogAsync + * + * List Team Operations + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $operation_group Filter by a specific operation group. By default, all operations are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listTeamOperationLogAsync($org_id, $page = null, $per_page = null, $operation_group = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + { + return $this->listTeamOperationLogAsyncWithHttpInfo($org_id, $page, $per_page, $operation_group, $start, $end, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listTeamOperationLogAsyncWithHttpInfo + * + * List Team Operations + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $operation_group Filter by a specific operation group. By default, all operations are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listTeamOperationLogAsyncWithHttpInfo($org_id, $page = null, $per_page = null, $operation_group = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + { + $returnType = 'object'; + $request = $this->listTeamOperationLogRequest($org_id, $page, $per_page, $operation_group, $start, $end, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'listTeamOperationLog' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string|null $operation_group Filter by a specific operation group. By default, all operations are returned. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamOperationLog'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listTeamOperationLogRequest($org_id, $page = null, $per_page = null, $operation_group = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamOperationLog'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling listTeamOperationLog' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listTeamOperationLog, must be bigger than or equal to 1.'); + } + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling ActivitiesLogsApi.listTeamOperationLog, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling ActivitiesLogsApi.listTeamOperationLog, must be bigger than or equal to 1.'); + } + + + + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/admin-logs/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $operation_group, + 'operation_group', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + // path params if ($org_id !== null) { $resourcePath = str_replace( diff --git a/lib/TeamAdmin/BasesApi.php b/lib/TeamAdmin/BasesApi.php index f0d5804..c5fcfb0 100644 --- a/lib/TeamAdmin/BasesApi.php +++ b/lib/TeamAdmin/BasesApi.php @@ -76,12 +76,21 @@ class BasesApi 'clearTeamTrashBin' => [ 'application/json', ], + 'deleteApiToken' => [ + 'application/json', + ], 'deleteBase' => [ 'application/json', ], 'getBase' => [ 'application/json', ], + 'listApiTokens' => [ + 'application/json', + ], + 'listApiTokensOfAllBases' => [ + 'application/json', + ], 'listBaseSharings' => [ 'application/json', ], @@ -91,6 +100,9 @@ class BasesApi 'listTrashBases' => [ 'application/json', ], + 'listUsersBases' => [ + 'application/json', + ], 'restoreBaseFromTrash' => [ 'application/json', ], @@ -421,40 +433,42 @@ public function clearTeamTrashBinRequest($org_id, string $contentType = self::co } /** - * Operation deleteBase + * Operation deleteApiToken * - * Delete Base + * Delete API-Token * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation + * @param string $app_name The name of your app. Every API-Token has a name to identify the purpose. The name of the app must be unique for every base. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteApiToken'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return object */ - public function deleteBase($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) + public function deleteApiToken($org_id, $base_uuid, $app_name, string $contentType = self::contentTypes['deleteApiToken'][0]) { - list($response) = $this->deleteBaseWithHttpInfo($org_id, $base_uuid, $contentType); + list($response) = $this->deleteApiTokenWithHttpInfo($org_id, $base_uuid, $app_name, $contentType); return $response; } /** - * Operation deleteBaseWithHttpInfo + * Operation deleteApiTokenWithHttpInfo * - * Delete Base + * Delete API-Token * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation + * @param string $app_name The name of your app. Every API-Token has a name to identify the purpose. The name of the app must be unique for every base. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteApiToken'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function deleteBaseWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) + public function deleteApiTokenWithHttpInfo($org_id, $base_uuid, $app_name, string $contentType = self::contentTypes['deleteApiToken'][0]) { - $request = $this->deleteBaseRequest($org_id, $base_uuid, $contentType); + $request = $this->deleteApiTokenRequest($org_id, $base_uuid, $app_name, $contentType); try { $options = $this->createHttpClientOption(); @@ -526,20 +540,21 @@ public function deleteBaseWithHttpInfo($org_id, $base_uuid, string $contentType } /** - * Operation deleteBaseAsync + * Operation deleteApiTokenAsync * - * Delete Base + * Delete API-Token * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation + * @param string $app_name The name of your app. Every API-Token has a name to identify the purpose. The name of the app must be unique for every base. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteApiToken'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function deleteBaseAsync($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) + public function deleteApiTokenAsync($org_id, $base_uuid, $app_name, string $contentType = self::contentTypes['deleteApiToken'][0]) { - return $this->deleteBaseAsyncWithHttpInfo($org_id, $base_uuid, $contentType) + return $this->deleteApiTokenAsyncWithHttpInfo($org_id, $base_uuid, $app_name, $contentType) ->then( function ($response) { return $response[0]; @@ -548,21 +563,22 @@ function ($response) { } /** - * Operation deleteBaseAsyncWithHttpInfo + * Operation deleteApiTokenAsyncWithHttpInfo * - * Delete Base + * Delete API-Token * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation + * @param string $app_name The name of your app. Every API-Token has a name to identify the purpose. The name of the app must be unique for every base. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteApiToken'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function deleteBaseAsyncWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) + public function deleteApiTokenAsyncWithHttpInfo($org_id, $base_uuid, $app_name, string $contentType = self::contentTypes['deleteApiToken'][0]) { $returnType = 'object'; - $request = $this->deleteBaseRequest($org_id, $base_uuid, $contentType); + $request = $this->deleteApiTokenRequest($org_id, $base_uuid, $app_name, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -601,40 +617,48 @@ function ($exception) { } /** - * Create request for operation 'deleteBase' + * Create request for operation 'deleteApiToken' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation + * @param string $app_name The name of your app. Every API-Token has a name to identify the purpose. The name of the app must be unique for every base. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteApiToken'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function deleteBaseRequest($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) + public function deleteApiTokenRequest($org_id, $base_uuid, $app_name, string $contentType = self::contentTypes['deleteApiToken'][0]) { // verify the required parameter 'org_id' is set if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $org_id when calling deleteBase' + 'Missing the required parameter $org_id when calling deleteApiToken' ); } if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.deleteBase, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.deleteApiToken, must be bigger than or equal to 1.'); } // verify the required parameter 'base_uuid' is set if ($base_uuid === null || (is_array($base_uuid) && count($base_uuid) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $base_uuid when calling deleteBase' + 'Missing the required parameter $base_uuid when calling deleteApiToken' ); } if (!preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $base_uuid)) { - throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling BasesApi.deleteBase, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); + throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling BasesApi.deleteApiToken, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); } + // verify the required parameter 'app_name' is set + if ($app_name === null || (is_array($app_name) && count($app_name) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $app_name when calling deleteApiToken' + ); + } - $resourcePath = '/api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/'; + + $resourcePath = '/api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/api-tokens/{app_name}/'; $formParams = []; $queryParams = []; $headerParams = []; @@ -659,6 +683,14 @@ public function deleteBaseRequest($org_id, $base_uuid, string $contentType = sel $resourcePath ); } + // path params + if ($app_name !== null) { + $resourcePath = str_replace( + '{' . 'app_name' . '}', + ObjectSerializer::toPathValue($app_name), + $resourcePath + ); + } $headers = $this->headerSelector->selectHeaders( @@ -719,40 +751,40 @@ public function deleteBaseRequest($org_id, $base_uuid, string $contentType = sel } /** - * Operation getBase + * Operation deleteBase * - * Get Base + * Delete Base * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return object */ - public function getBase($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) + public function deleteBase($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) { - list($response) = $this->getBaseWithHttpInfo($org_id, $base_uuid, $contentType); + list($response) = $this->deleteBaseWithHttpInfo($org_id, $base_uuid, $contentType); return $response; } /** - * Operation getBaseWithHttpInfo + * Operation deleteBaseWithHttpInfo * - * Get Base + * Delete Base * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function getBaseWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) + public function deleteBaseWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) { - $request = $this->getBaseRequest($org_id, $base_uuid, $contentType); + $request = $this->deleteBaseRequest($org_id, $base_uuid, $contentType); try { $options = $this->createHttpClientOption(); @@ -824,20 +856,20 @@ public function getBaseWithHttpInfo($org_id, $base_uuid, string $contentType = s } /** - * Operation getBaseAsync + * Operation deleteBaseAsync * - * Get Base + * Delete Base * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function getBaseAsync($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) + public function deleteBaseAsync($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) { - return $this->getBaseAsyncWithHttpInfo($org_id, $base_uuid, $contentType) + return $this->deleteBaseAsyncWithHttpInfo($org_id, $base_uuid, $contentType) ->then( function ($response) { return $response[0]; @@ -846,21 +878,21 @@ function ($response) { } /** - * Operation getBaseAsyncWithHttpInfo + * Operation deleteBaseAsyncWithHttpInfo * - * Get Base + * Delete Base * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function getBaseAsyncWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) + public function deleteBaseAsyncWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) { $returnType = 'object'; - $request = $this->getBaseRequest($org_id, $base_uuid, $contentType); + $request = $this->deleteBaseRequest($org_id, $base_uuid, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -899,36 +931,36 @@ function ($exception) { } /** - * Create request for operation 'getBase' + * Create request for operation 'deleteBase' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteBase'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function getBaseRequest($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) + public function deleteBaseRequest($org_id, $base_uuid, string $contentType = self::contentTypes['deleteBase'][0]) { // verify the required parameter 'org_id' is set if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $org_id when calling getBase' + 'Missing the required parameter $org_id when calling deleteBase' ); } if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.getBase, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.deleteBase, must be bigger than or equal to 1.'); } // verify the required parameter 'base_uuid' is set if ($base_uuid === null || (is_array($base_uuid) && count($base_uuid) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $base_uuid when calling getBase' + 'Missing the required parameter $base_uuid when calling deleteBase' ); } if (!preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $base_uuid)) { - throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling BasesApi.getBase, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); + throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling BasesApi.deleteBase, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); } @@ -1009,7 +1041,7 @@ public function getBaseRequest($org_id, $base_uuid, string $contentType = self:: $operationHost = $this->config->getHost(); $query = ObjectSerializer::buildQuery($queryParams); return new Request( - 'GET', + 'DELETE', $operationHost . $resourcePath . ($query ? "?{$query}" : ''), $headers, $httpBody @@ -1017,40 +1049,40 @@ public function getBaseRequest($org_id, $base_uuid, string $contentType = self:: } /** - * Operation listBaseSharings + * Operation getBase * - * List Base Sharings + * Get Base * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return object */ - public function listBaseSharings($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + public function getBase($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) { - list($response) = $this->listBaseSharingsWithHttpInfo($org_id, $base_uuid, $contentType); + list($response) = $this->getBaseWithHttpInfo($org_id, $base_uuid, $contentType); return $response; } /** - * Operation listBaseSharingsWithHttpInfo + * Operation getBaseWithHttpInfo * - * List Base Sharings + * Get Base * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listBaseSharingsWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + public function getBaseWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) { - $request = $this->listBaseSharingsRequest($org_id, $base_uuid, $contentType); + $request = $this->getBaseRequest($org_id, $base_uuid, $contentType); try { $options = $this->createHttpClientOption(); @@ -1122,20 +1154,20 @@ public function listBaseSharingsWithHttpInfo($org_id, $base_uuid, string $conten } /** - * Operation listBaseSharingsAsync + * Operation getBaseAsync * - * List Base Sharings + * Get Base * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listBaseSharingsAsync($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + public function getBaseAsync($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) { - return $this->listBaseSharingsAsyncWithHttpInfo($org_id, $base_uuid, $contentType) + return $this->getBaseAsyncWithHttpInfo($org_id, $base_uuid, $contentType) ->then( function ($response) { return $response[0]; @@ -1144,21 +1176,21 @@ function ($response) { } /** - * Operation listBaseSharingsAsyncWithHttpInfo + * Operation getBaseAsyncWithHttpInfo * - * List Base Sharings + * Get Base * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listBaseSharingsAsyncWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + public function getBaseAsyncWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) { $returnType = 'object'; - $request = $this->listBaseSharingsRequest($org_id, $base_uuid, $contentType); + $request = $this->getBaseRequest($org_id, $base_uuid, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -1197,40 +1229,40 @@ function ($exception) { } /** - * Create request for operation 'listBaseSharings' + * Create request for operation 'getBase' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getBase'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listBaseSharingsRequest($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + public function getBaseRequest($org_id, $base_uuid, string $contentType = self::contentTypes['getBase'][0]) { // verify the required parameter 'org_id' is set if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $org_id when calling listBaseSharings' + 'Missing the required parameter $org_id when calling getBase' ); } if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listBaseSharings, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.getBase, must be bigger than or equal to 1.'); } // verify the required parameter 'base_uuid' is set if ($base_uuid === null || (is_array($base_uuid) && count($base_uuid) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $base_uuid when calling listBaseSharings' + 'Missing the required parameter $base_uuid when calling getBase' ); } if (!preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $base_uuid)) { - throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling BasesApi.listBaseSharings, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); + throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling BasesApi.getBase, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); } - $resourcePath = '/api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/shares/'; + $resourcePath = '/api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/'; $formParams = []; $queryParams = []; $headerParams = []; @@ -1315,42 +1347,40 @@ public function listBaseSharingsRequest($org_id, $base_uuid, string $contentType } /** - * Operation listBases + * Operation listApiTokens * - * List Bases (Team) + * List API-Tokens * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) - * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokens'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return object */ - public function listBases($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + public function listApiTokens($org_id, $base_uuid, string $contentType = self::contentTypes['listApiTokens'][0]) { - list($response) = $this->listBasesWithHttpInfo($org_id, $page, $per_page, $contentType); + list($response) = $this->listApiTokensWithHttpInfo($org_id, $base_uuid, $contentType); return $response; } /** - * Operation listBasesWithHttpInfo + * Operation listApiTokensWithHttpInfo * - * List Bases (Team) + * List API-Tokens * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) - * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokens'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listBasesWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + public function listApiTokensWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['listApiTokens'][0]) { - $request = $this->listBasesRequest($org_id, $page, $per_page, $contentType); + $request = $this->listApiTokensRequest($org_id, $base_uuid, $contentType); try { $options = $this->createHttpClientOption(); @@ -1422,21 +1452,20 @@ public function listBasesWithHttpInfo($org_id, $page = null, $per_page = null, s } /** - * Operation listBasesAsync + * Operation listApiTokensAsync * - * List Bases (Team) + * List API-Tokens * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) - * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokens'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listBasesAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + public function listApiTokensAsync($org_id, $base_uuid, string $contentType = self::contentTypes['listApiTokens'][0]) { - return $this->listBasesAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + return $this->listApiTokensAsyncWithHttpInfo($org_id, $base_uuid, $contentType) ->then( function ($response) { return $response[0]; @@ -1445,22 +1474,21 @@ function ($response) { } /** - * Operation listBasesAsyncWithHttpInfo + * Operation listApiTokensAsyncWithHttpInfo * - * List Bases (Team) + * List API-Tokens * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) - * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokens'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listBasesAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + public function listApiTokensAsyncWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['listApiTokens'][0]) { $returnType = 'object'; - $request = $this->listBasesRequest($org_id, $page, $per_page, $contentType); + $request = $this->listApiTokensRequest($org_id, $base_uuid, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -1499,63 +1527,46 @@ function ($exception) { } /** - * Create request for operation 'listBases' + * Create request for operation 'listApiTokens' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) - * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokens'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listBasesRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + public function listApiTokensRequest($org_id, $base_uuid, string $contentType = self::contentTypes['listApiTokens'][0]) { // verify the required parameter 'org_id' is set if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $org_id when calling listBases' + 'Missing the required parameter $org_id when calling listApiTokens' ); } if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listBases, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listApiTokens, must be bigger than or equal to 1.'); } - if ($page !== null && $page < 1) { - throw new \InvalidArgumentException('invalid value for "$page" when calling BasesApi.listBases, must be bigger than or equal to 1.'); + // verify the required parameter 'base_uuid' is set + if ($base_uuid === null || (is_array($base_uuid) && count($base_uuid) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $base_uuid when calling listApiTokens' + ); } - - if ($per_page !== null && $per_page < 1) { - throw new \InvalidArgumentException('invalid value for "$per_page" when calling BasesApi.listBases, must be bigger than or equal to 1.'); + if (!preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $base_uuid)) { + throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling BasesApi.listApiTokens, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); } - $resourcePath = '/api/v2.1/org/{org_id}/admin/dtables/'; + $resourcePath = '/api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/api-tokens/'; $formParams = []; $queryParams = []; $headerParams = []; $httpBody = ''; $multipart = false; - // query params - $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( - $page, - 'page', // param base name - 'integer', // openApiType - 'form', // style - true, // explode - false // required - ) ?? []); - // query params - $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( - $per_page, - 'per_page', // param base name - 'integer', // openApiType - 'form', // style - true, // explode - false // required - ) ?? []); // path params @@ -1566,6 +1577,14 @@ public function listBasesRequest($org_id, $page = null, $per_page = null, string $resourcePath ); } + // path params + if ($base_uuid !== null) { + $resourcePath = str_replace( + '{' . 'base_uuid' . '}', + ObjectSerializer::toPathValue($base_uuid), + $resourcePath + ); + } $headers = $this->headerSelector->selectHeaders( @@ -1626,42 +1645,42 @@ public function listBasesRequest($org_id, $page = null, $per_page = null, string } /** - * Operation listTrashBases + * Operation listApiTokensOfAllBases * - * List Trash Bases + * List API-Tokens of All Bases * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokensOfAllBases'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return object */ - public function listTrashBases($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTrashBases'][0]) + public function listApiTokensOfAllBases($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listApiTokensOfAllBases'][0]) { - list($response) = $this->listTrashBasesWithHttpInfo($org_id, $page, $per_page, $contentType); + list($response) = $this->listApiTokensOfAllBasesWithHttpInfo($org_id, $page, $per_page, $contentType); return $response; } /** - * Operation listTrashBasesWithHttpInfo + * Operation listApiTokensOfAllBasesWithHttpInfo * - * List Trash Bases + * List API-Tokens of All Bases * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokensOfAllBases'] to see the possible values for this operation * * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listTrashBasesWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTrashBases'][0]) + public function listApiTokensOfAllBasesWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listApiTokensOfAllBases'][0]) { - $request = $this->listTrashBasesRequest($org_id, $page, $per_page, $contentType); + $request = $this->listApiTokensOfAllBasesRequest($org_id, $page, $per_page, $contentType); try { $options = $this->createHttpClientOption(); @@ -1733,21 +1752,21 @@ public function listTrashBasesWithHttpInfo($org_id, $page = null, $per_page = nu } /** - * Operation listTrashBasesAsync + * Operation listApiTokensOfAllBasesAsync * - * List Trash Bases + * List API-Tokens of All Bases * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokensOfAllBases'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTrashBasesAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTrashBases'][0]) + public function listApiTokensOfAllBasesAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listApiTokensOfAllBases'][0]) { - return $this->listTrashBasesAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + return $this->listApiTokensOfAllBasesAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) ->then( function ($response) { return $response[0]; @@ -1756,22 +1775,22 @@ function ($response) { } /** - * Operation listTrashBasesAsyncWithHttpInfo + * Operation listApiTokensOfAllBasesAsyncWithHttpInfo * - * List Trash Bases + * List API-Tokens of All Bases * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokensOfAllBases'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTrashBasesAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTrashBases'][0]) + public function listApiTokensOfAllBasesAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listApiTokensOfAllBases'][0]) { $returnType = 'object'; - $request = $this->listTrashBasesRequest($org_id, $page, $per_page, $contentType); + $request = $this->listApiTokensOfAllBasesRequest($org_id, $page, $per_page, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -1810,12 +1829,932 @@ function ($exception) { } /** - * Create request for operation 'listTrashBases' + * Create request for operation 'listApiTokensOfAllBases' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listApiTokensOfAllBases'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listApiTokensOfAllBasesRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listApiTokensOfAllBases'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling listApiTokensOfAllBases' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listApiTokensOfAllBases, must be bigger than or equal to 1.'); + } + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling BasesApi.listApiTokensOfAllBases, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling BasesApi.listApiTokensOfAllBases, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/api-tokens/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation listBaseSharings + * + * List Base Sharings + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function listBaseSharings($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + { + list($response) = $this->listBaseSharingsWithHttpInfo($org_id, $base_uuid, $contentType); + return $response; + } + + /** + * Operation listBaseSharingsWithHttpInfo + * + * List Base Sharings + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function listBaseSharingsWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + { + $request = $this->listBaseSharingsRequest($org_id, $base_uuid, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation listBaseSharingsAsync + * + * List Base Sharings + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listBaseSharingsAsync($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + { + return $this->listBaseSharingsAsyncWithHttpInfo($org_id, $base_uuid, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listBaseSharingsAsyncWithHttpInfo + * + * List Base Sharings + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listBaseSharingsAsyncWithHttpInfo($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + { + $returnType = 'object'; + $request = $this->listBaseSharingsRequest($org_id, $base_uuid, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'listBaseSharings' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $base_uuid The unique identifier of a base. Sometimes also called dtable_uuid. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBaseSharings'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listBaseSharingsRequest($org_id, $base_uuid, string $contentType = self::contentTypes['listBaseSharings'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling listBaseSharings' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listBaseSharings, must be bigger than or equal to 1.'); + } + + // verify the required parameter 'base_uuid' is set + if ($base_uuid === null || (is_array($base_uuid) && count($base_uuid) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $base_uuid when calling listBaseSharings' + ); + } + if (!preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $base_uuid)) { + throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling BasesApi.listBaseSharings, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/shares/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + // path params + if ($base_uuid !== null) { + $resourcePath = str_replace( + '{' . 'base_uuid' . '}', + ObjectSerializer::toPathValue($base_uuid), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation listBases + * + * List Bases (Team) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function listBases($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + { + list($response) = $this->listBasesWithHttpInfo($org_id, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation listBasesWithHttpInfo + * + * List Bases (Team) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function listBasesWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + { + $request = $this->listBasesRequest($org_id, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation listBasesAsync + * + * List Bases (Team) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listBasesAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + { + return $this->listBasesAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listBasesAsyncWithHttpInfo + * + * List Bases (Team) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listBasesAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + { + $returnType = 'object'; + $request = $this->listBasesRequest($org_id, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'listBases' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listBases'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listBasesRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBases'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling listBases' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listBases, must be bigger than or equal to 1.'); + } + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling BasesApi.listBases, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling BasesApi.listBases, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/dtables/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation listTrashBases + * + * List Trash Bases + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function listTrashBases($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTrashBases'][0]) + { + list($response) = $this->listTrashBasesWithHttpInfo($org_id, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation listTrashBasesWithHttpInfo + * + * List Trash Bases + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function listTrashBasesWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTrashBases'][0]) + { + $request = $this->listTrashBasesRequest($org_id, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation listTrashBasesAsync + * + * List Trash Bases + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listTrashBasesAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTrashBases'][0]) + { + return $this->listTrashBasesAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listTrashBasesAsyncWithHttpInfo + * + * List Trash Bases + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listTrashBasesAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTrashBases'][0]) + { + $returnType = 'object'; + $request = $this->listTrashBasesRequest($org_id, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'listTrashBases' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTrashBases'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request @@ -1826,23 +2765,349 @@ public function listTrashBasesRequest($org_id, $page = null, $per_page = null, s // verify the required parameter 'org_id' is set if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { throw new \InvalidArgumentException( - 'Missing the required parameter $org_id when calling listTrashBases' + 'Missing the required parameter $org_id when calling listTrashBases' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listTrashBases, must be bigger than or equal to 1.'); + } + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling BasesApi.listTrashBases, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling BasesApi.listTrashBases, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/trash-dtables/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation listUsersBases + * + * List User's Bases + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $user_id The unique `user_id` in the form ...@auth.local. This is not the email address of the user. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listUsersBases'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function listUsersBases($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsersBases'][0]) + { + list($response) = $this->listUsersBasesWithHttpInfo($org_id, $user_id, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation listUsersBasesWithHttpInfo + * + * List User's Bases + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $user_id The unique `user_id` in the form ...@auth.local. This is not the email address of the user. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listUsersBases'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function listUsersBasesWithHttpInfo($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsersBases'][0]) + { + $request = $this->listUsersBasesRequest($org_id, $user_id, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation listUsersBasesAsync + * + * List User's Bases + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $user_id The unique `user_id` in the form ...@auth.local. This is not the email address of the user. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listUsersBases'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listUsersBasesAsync($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsersBases'][0]) + { + return $this->listUsersBasesAsyncWithHttpInfo($org_id, $user_id, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listUsersBasesAsyncWithHttpInfo + * + * List User's Bases + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $user_id The unique `user_id` in the form ...@auth.local. This is not the email address of the user. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listUsersBases'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listUsersBasesAsyncWithHttpInfo($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsersBases'][0]) + { + $returnType = 'object'; + $request = $this->listUsersBasesRequest($org_id, $user_id, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'listUsersBases' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $user_id The unique `user_id` in the form ...@auth.local. This is not the email address of the user. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listUsersBases'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listUsersBasesRequest($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsersBases'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling listUsersBases' ); } if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listTrashBases, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listUsersBases, must be bigger than or equal to 1.'); + } + + // verify the required parameter 'user_id' is set + if ($user_id === null || (is_array($user_id) && count($user_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $user_id when calling listUsersBases' + ); + } + if (!preg_match("/^[a-f0-9]{32}(@auth.local)$/", $user_id)) { + throw new \InvalidArgumentException("invalid value for \"user_id\" when calling BasesApi.listUsersBases, must conform to the pattern /^[a-f0-9]{32}(@auth.local)$/."); } if ($page !== null && $page < 1) { - throw new \InvalidArgumentException('invalid value for "$page" when calling BasesApi.listTrashBases, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$page" when calling BasesApi.listUsersBases, must be bigger than or equal to 1.'); } if ($per_page !== null && $per_page < 1) { - throw new \InvalidArgumentException('invalid value for "$per_page" when calling BasesApi.listTrashBases, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$per_page" when calling BasesApi.listUsersBases, must be bigger than or equal to 1.'); } - $resourcePath = '/api/v2.1/org/{org_id}/admin/trash-dtables/'; + $resourcePath = '/api/v2.1/org/{org_id}/admin/users/{user_id}/dtables/'; $formParams = []; $queryParams = []; $headerParams = []; @@ -1877,6 +3142,14 @@ public function listTrashBasesRequest($org_id, $page = null, $per_page = null, s $resourcePath ); } + // path params + if ($user_id !== null) { + $resourcePath = str_replace( + '{' . 'user_id' . '}', + ObjectSerializer::toPathValue($user_id), + $resourcePath + ); + } $headers = $this->headerSelector->selectHeaders( diff --git a/lib/TeamAdmin/InfoSettingsApi.php b/lib/TeamAdmin/InfoSettingsApi.php index 8367960..6bc73cf 100644 --- a/lib/TeamAdmin/InfoSettingsApi.php +++ b/lib/TeamAdmin/InfoSettingsApi.php @@ -73,6 +73,9 @@ class InfoSettingsApi /** @var string[] $contentTypes **/ public const contentTypes = [ + 'deleteTeam' => [ + 'application/json', + ], 'getTeamInfo' => [ 'application/json', ], @@ -133,6 +136,258 @@ public function getConfig() return $this->config; } + /** + * Operation deleteTeam + * + * Delete Team + * + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteTeam'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function deleteTeam(string $contentType = self::contentTypes['deleteTeam'][0]) + { + list($response) = $this->deleteTeamWithHttpInfo($contentType); + return $response; + } + + /** + * Operation deleteTeamWithHttpInfo + * + * Delete Team + * + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteTeam'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function deleteTeamWithHttpInfo(string $contentType = self::contentTypes['deleteTeam'][0]) + { + $request = $this->deleteTeamRequest($contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation deleteTeamAsync + * + * Delete Team + * + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteTeam'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function deleteTeamAsync(string $contentType = self::contentTypes['deleteTeam'][0]) + { + return $this->deleteTeamAsyncWithHttpInfo($contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation deleteTeamAsyncWithHttpInfo + * + * Delete Team + * + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteTeam'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function deleteTeamAsyncWithHttpInfo(string $contentType = self::contentTypes['deleteTeam'][0]) + { + $returnType = 'object'; + $request = $this->deleteTeamRequest($contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'deleteTeam' + * + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteTeam'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function deleteTeamRequest(string $contentType = self::contentTypes['deleteTeam'][0]) + { + + + $resourcePath = '/api/v2.1/org/admin/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + + + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'DELETE', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + /** * Operation getTeamInfo * diff --git a/lib/TeamAdmin/SharingLinksApi.php b/lib/TeamAdmin/SharingLinksApi.php index eb1ade3..b2208df 100644 --- a/lib/TeamAdmin/SharingLinksApi.php +++ b/lib/TeamAdmin/SharingLinksApi.php @@ -88,6 +88,9 @@ class SharingLinksApi 'listInviteLinks' => [ 'application/json', ], + 'listShares' => [ + 'application/json', + ], 'listViewExternalLinks' => [ 'application/json', ], @@ -1555,6 +1558,281 @@ public function listInviteLinksRequest($org_id, $page = null, $per_page = null, ) ?? []); + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation listShares + * + * List Shares + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listShares'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function listShares($org_id, string $contentType = self::contentTypes['listShares'][0]) + { + list($response) = $this->listSharesWithHttpInfo($org_id, $contentType); + return $response; + } + + /** + * Operation listSharesWithHttpInfo + * + * List Shares + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listShares'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function listSharesWithHttpInfo($org_id, string $contentType = self::contentTypes['listShares'][0]) + { + $request = $this->listSharesRequest($org_id, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation listSharesAsync + * + * List Shares + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listShares'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listSharesAsync($org_id, string $contentType = self::contentTypes['listShares'][0]) + { + return $this->listSharesAsyncWithHttpInfo($org_id, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listSharesAsyncWithHttpInfo + * + * List Shares + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listShares'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listSharesAsyncWithHttpInfo($org_id, string $contentType = self::contentTypes['listShares'][0]) + { + $returnType = 'object'; + $request = $this->listSharesRequest($org_id, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'listShares' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listShares'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listSharesRequest($org_id, string $contentType = self::contentTypes['listShares'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling listShares' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling SharingLinksApi.listShares, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/shares/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + + // path params if ($org_id !== null) { $resourcePath = str_replace( diff --git a/lib/TeamAdmin/StatisticsApi.php b/lib/TeamAdmin/StatisticsApi.php new file mode 100644 index 0000000..c6a15ff --- /dev/null +++ b/lib/TeamAdmin/StatisticsApi.php @@ -0,0 +1,2285 @@ + [ + 'application/json', + ], + 'getAutomationLogStatisticsByBase' => [ + 'application/json', + ], + 'getAutomationLogStatisticsByDay' => [ + 'application/json', + ], + 'getLoginLogStatisticsByDay' => [ + 'application/json', + ], + 'getPythonRunStatisticsByBase' => [ + 'application/json', + ], + 'getPythonRunStatisticsByDay' => [ + 'application/json', + ], + ]; + + /** + * @param ClientInterface $client + * @param Configuration $config + * @param HeaderSelector $selector + * @param int $hostIndex (Optional) host index to select the list of hosts if defined in the OpenAPI spec + */ + public function __construct( + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, + int $hostIndex = 0 + ) { + $this->client = $client ?: new Client(); + $this->config = $config ?: Configuration::getDefaultConfiguration(); + $this->headerSelector = $selector ?: new HeaderSelector(); + $this->hostIndex = $hostIndex; + } + + /** + * Set the host index + * + * @param int $hostIndex Host index (required) + */ + public function setHostIndex($hostIndex): void + { + $this->hostIndex = $hostIndex; + } + + /** + * Get the host index + * + * @return int Host index + */ + public function getHostIndex() + { + return $this->hostIndex; + } + + /** + * @return Configuration + */ + public function getConfig() + { + return $this->config; + } + + /** + * Operation getAdminLogStatisticsByDay + * + * Admin Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAdminLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function getAdminLogStatisticsByDay($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAdminLogStatisticsByDay'][0]) + { + list($response) = $this->getAdminLogStatisticsByDayWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation getAdminLogStatisticsByDayWithHttpInfo + * + * Admin Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAdminLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function getAdminLogStatisticsByDayWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAdminLogStatisticsByDay'][0]) + { + $request = $this->getAdminLogStatisticsByDayRequest($org_id, $start, $end, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation getAdminLogStatisticsByDayAsync + * + * Admin Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAdminLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getAdminLogStatisticsByDayAsync($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAdminLogStatisticsByDay'][0]) + { + return $this->getAdminLogStatisticsByDayAsyncWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation getAdminLogStatisticsByDayAsyncWithHttpInfo + * + * Admin Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAdminLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getAdminLogStatisticsByDayAsyncWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAdminLogStatisticsByDay'][0]) + { + $returnType = 'object'; + $request = $this->getAdminLogStatisticsByDayRequest($org_id, $start, $end, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'getAdminLogStatisticsByDay' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAdminLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function getAdminLogStatisticsByDayRequest($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAdminLogStatisticsByDay'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling getAdminLogStatisticsByDay' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling StatisticsApi.getAdminLogStatisticsByDay, must be bigger than or equal to 1.'); + } + + + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling StatisticsApi.getAdminLogStatisticsByDay, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling StatisticsApi.getAdminLogStatisticsByDay, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/statistics/admin-logs/by-day/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation getAutomationLogStatisticsByBase + * + * Automation Logs (by Base) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByBase'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function getAutomationLogStatisticsByBase($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByBase'][0]) + { + list($response) = $this->getAutomationLogStatisticsByBaseWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation getAutomationLogStatisticsByBaseWithHttpInfo + * + * Automation Logs (by Base) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByBase'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function getAutomationLogStatisticsByBaseWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByBase'][0]) + { + $request = $this->getAutomationLogStatisticsByBaseRequest($org_id, $start, $end, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation getAutomationLogStatisticsByBaseAsync + * + * Automation Logs (by Base) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByBase'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getAutomationLogStatisticsByBaseAsync($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByBase'][0]) + { + return $this->getAutomationLogStatisticsByBaseAsyncWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation getAutomationLogStatisticsByBaseAsyncWithHttpInfo + * + * Automation Logs (by Base) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByBase'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getAutomationLogStatisticsByBaseAsyncWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByBase'][0]) + { + $returnType = 'object'; + $request = $this->getAutomationLogStatisticsByBaseRequest($org_id, $start, $end, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'getAutomationLogStatisticsByBase' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByBase'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function getAutomationLogStatisticsByBaseRequest($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByBase'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling getAutomationLogStatisticsByBase' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling StatisticsApi.getAutomationLogStatisticsByBase, must be bigger than or equal to 1.'); + } + + + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling StatisticsApi.getAutomationLogStatisticsByBase, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling StatisticsApi.getAutomationLogStatisticsByBase, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/statistics/automation-logs/by-base/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation getAutomationLogStatisticsByDay + * + * Automation Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function getAutomationLogStatisticsByDay($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByDay'][0]) + { + list($response) = $this->getAutomationLogStatisticsByDayWithHttpInfo($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation getAutomationLogStatisticsByDayWithHttpInfo + * + * Automation Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function getAutomationLogStatisticsByDayWithHttpInfo($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByDay'][0]) + { + $request = $this->getAutomationLogStatisticsByDayRequest($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation getAutomationLogStatisticsByDayAsync + * + * Automation Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getAutomationLogStatisticsByDayAsync($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByDay'][0]) + { + return $this->getAutomationLogStatisticsByDayAsyncWithHttpInfo($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation getAutomationLogStatisticsByDayAsyncWithHttpInfo + * + * Automation Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getAutomationLogStatisticsByDayAsyncWithHttpInfo($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByDay'][0]) + { + $returnType = 'object'; + $request = $this->getAutomationLogStatisticsByDayRequest($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'getAutomationLogStatisticsByDay' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getAutomationLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function getAutomationLogStatisticsByDayRequest($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getAutomationLogStatisticsByDay'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling getAutomationLogStatisticsByDay' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling StatisticsApi.getAutomationLogStatisticsByDay, must be bigger than or equal to 1.'); + } + + if ($dtable_uuid !== null && !preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $dtable_uuid)) { + throw new \InvalidArgumentException("invalid value for \"dtable_uuid\" when calling StatisticsApi.getAutomationLogStatisticsByDay, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); + } + + + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling StatisticsApi.getAutomationLogStatisticsByDay, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling StatisticsApi.getAutomationLogStatisticsByDay, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/statistics/automation-logs/by-day/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $dtable_uuid, + 'dtable_uuid', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation getLoginLogStatisticsByDay + * + * Login Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getLoginLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function getLoginLogStatisticsByDay($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getLoginLogStatisticsByDay'][0]) + { + list($response) = $this->getLoginLogStatisticsByDayWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation getLoginLogStatisticsByDayWithHttpInfo + * + * Login Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getLoginLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function getLoginLogStatisticsByDayWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getLoginLogStatisticsByDay'][0]) + { + $request = $this->getLoginLogStatisticsByDayRequest($org_id, $start, $end, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation getLoginLogStatisticsByDayAsync + * + * Login Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getLoginLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getLoginLogStatisticsByDayAsync($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getLoginLogStatisticsByDay'][0]) + { + return $this->getLoginLogStatisticsByDayAsyncWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation getLoginLogStatisticsByDayAsyncWithHttpInfo + * + * Login Logs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getLoginLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getLoginLogStatisticsByDayAsyncWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getLoginLogStatisticsByDay'][0]) + { + $returnType = 'object'; + $request = $this->getLoginLogStatisticsByDayRequest($org_id, $start, $end, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'getLoginLogStatisticsByDay' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getLoginLogStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function getLoginLogStatisticsByDayRequest($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getLoginLogStatisticsByDay'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling getLoginLogStatisticsByDay' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling StatisticsApi.getLoginLogStatisticsByDay, must be bigger than or equal to 1.'); + } + + + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling StatisticsApi.getLoginLogStatisticsByDay, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling StatisticsApi.getLoginLogStatisticsByDay, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/statistics/login-logs/by-day/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation getPythonRunStatisticsByBase + * + * Python Runs (by Base) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByBase'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function getPythonRunStatisticsByBase($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByBase'][0]) + { + list($response) = $this->getPythonRunStatisticsByBaseWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation getPythonRunStatisticsByBaseWithHttpInfo + * + * Python Runs (by Base) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByBase'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function getPythonRunStatisticsByBaseWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByBase'][0]) + { + $request = $this->getPythonRunStatisticsByBaseRequest($org_id, $start, $end, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation getPythonRunStatisticsByBaseAsync + * + * Python Runs (by Base) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByBase'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getPythonRunStatisticsByBaseAsync($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByBase'][0]) + { + return $this->getPythonRunStatisticsByBaseAsyncWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation getPythonRunStatisticsByBaseAsyncWithHttpInfo + * + * Python Runs (by Base) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByBase'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getPythonRunStatisticsByBaseAsyncWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByBase'][0]) + { + $returnType = 'object'; + $request = $this->getPythonRunStatisticsByBaseRequest($org_id, $start, $end, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'getPythonRunStatisticsByBase' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByBase'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function getPythonRunStatisticsByBaseRequest($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByBase'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling getPythonRunStatisticsByBase' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling StatisticsApi.getPythonRunStatisticsByBase, must be bigger than or equal to 1.'); + } + + + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling StatisticsApi.getPythonRunStatisticsByBase, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling StatisticsApi.getPythonRunStatisticsByBase, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/statistics/python-runs/by-base/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation getPythonRunStatisticsByDay + * + * Python Runs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByDay'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function getPythonRunStatisticsByDay($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByDay'][0]) + { + list($response) = $this->getPythonRunStatisticsByDayWithHttpInfo($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation getPythonRunStatisticsByDayWithHttpInfo + * + * Python Runs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByDay'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function getPythonRunStatisticsByDayWithHttpInfo($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByDay'][0]) + { + $request = $this->getPythonRunStatisticsByDayRequest($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation getPythonRunStatisticsByDayAsync + * + * Python Runs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getPythonRunStatisticsByDayAsync($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByDay'][0]) + { + return $this->getPythonRunStatisticsByDayAsyncWithHttpInfo($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation getPythonRunStatisticsByDayAsyncWithHttpInfo + * + * Python Runs (by Day) + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getPythonRunStatisticsByDayAsyncWithHttpInfo($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByDay'][0]) + { + $returnType = 'object'; + $request = $this->getPythonRunStatisticsByDayRequest($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'getPythonRunStatisticsByDay' + * + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param \DateTime|null $start Start date in ISO format. (optional) + * @param \DateTime|null $end End date in ISO format. (optional) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getPythonRunStatisticsByDay'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function getPythonRunStatisticsByDayRequest($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['getPythonRunStatisticsByDay'][0]) + { + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling getPythonRunStatisticsByDay' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling StatisticsApi.getPythonRunStatisticsByDay, must be bigger than or equal to 1.'); + } + + if ($dtable_uuid !== null && !preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $dtable_uuid)) { + throw new \InvalidArgumentException("invalid value for \"dtable_uuid\" when calling StatisticsApi.getPythonRunStatisticsByDay, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); + } + + + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling StatisticsApi.getPythonRunStatisticsByDay, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling StatisticsApi.getPythonRunStatisticsByDay, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/statistics/python-runs/by-day/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $dtable_uuid, + 'dtable_uuid', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $start, + 'start', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $end, + 'end', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Create http client option + * + * @throws \RuntimeException on file opening failure + * @return array of http client options + */ + protected function createHttpClientOption() + { + $options = []; + if ($this->config->getDebug()) { + $options[RequestOptions::DEBUG] = fopen($this->config->getDebugFile(), 'a'); + if (!$options[RequestOptions::DEBUG]) { + throw new \RuntimeException('Failed to open the debug file: ' . $this->config->getDebugFile()); + } + } + + return $options; + } + + private function handleResponseWithDataType( + string $dataType, + RequestInterface $request, + ResponseInterface $response + ): array { + if ($dataType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($dataType !== 'string') { + try { + $content = json_decode($content, false, 512, JSON_THROW_ON_ERROR); + } catch (\JsonException $exception) { + throw new ApiException( + sprintf( + 'Error JSON decoding server response (%s)', + $request->getUri() + ), + $response->getStatusCode(), + $response->getHeaders(), + $content + ); + } + } + } + + return [ + ObjectSerializer::deserialize($content, $dataType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + } + + private function responseWithinRangeCode( + string $rangeCode, + int $statusCode + ): bool { + $left = (int) ($rangeCode[0].'00'); + $right = (int) ($rangeCode[0].'99'); + + return $statusCode >= $left && $statusCode <= $right; + } +} diff --git a/test/Api/ActivitiesLogsApiTest.php b/test/Api/ActivitiesLogsApiTest.php index 393daf4..cac87af 100644 --- a/test/Api/ActivitiesLogsApiTest.php +++ b/test/Api/ActivitiesLogsApiTest.php @@ -70,6 +70,18 @@ public static function tearDownAfterClass(): void { } + /** + * Test case for listAutomationLogs + * + * List Automation Logs. + * + */ + public function testListAutomationLogs() + { + // TODO: implement + self::markTestIncomplete('Not implemented'); + } + /** * Test case for listFileAccessLogs * @@ -94,6 +106,18 @@ public function testListGroupMemberAuditLogs() self::markTestIncomplete('Not implemented'); } + /** + * Test case for listPythonRuns + * + * List Python Runs. + * + */ + public function testListPythonRuns() + { + // TODO: implement + self::markTestIncomplete('Not implemented'); + } + /** * Test case for listTeamLogins * diff --git a/test/Api/InfoSettingsApiTest.php b/test/Api/InfoSettingsApiTest.php index e1822ad..2c0b93f 100644 --- a/test/Api/InfoSettingsApiTest.php +++ b/test/Api/InfoSettingsApiTest.php @@ -70,6 +70,18 @@ public static function tearDownAfterClass(): void { } + /** + * Test case for deleteTeam + * + * Delete Team. + * + */ + public function testDeleteTeam() + { + // TODO: implement + self::markTestIncomplete('Not implemented'); + } + /** * Test case for getTeamInfo * From d6b0da4577bb9ede4599368378357abc4066fe9f Mon Sep 17 00:00:00 2001 From: Simon Hammes Date: Fri, 9 Jan 2026 15:06:29 +0100 Subject: [PATCH 3/7] Upgrade generator to v7.18.0 --- .openapi-generator/VERSION | 2 +- generate_api.sh | 2 +- lib/Auth/APITokenApi.php | 8 +++ lib/Auth/AccessToken.php | 12 ++-- lib/Auth/AccountToken.php | 12 ++-- lib/Auth/AccountTokenApi.php | 8 +++ lib/Auth/ApiToken.php | 12 ++-- lib/Auth/ApiTokenList.php | 12 ++-- lib/Auth/ApiTokenTemporary.php | 12 ++-- lib/Auth/BaseTokenApi.php | 8 +++ lib/Base/ActivitiesLogsApi.php | 8 +++ lib/Base/AddSingleMultipleSelectOptions.php | 12 ++-- ...ingleMultipleSelectOptionsOptionsInner.php | 12 ++-- lib/Base/AppendColumnsRequest.php | 12 ++-- lib/Base/AppendColumnsRequestColumnsInner.php | 12 ++-- lib/Base/AppendRow.php | 12 ++-- lib/Base/AppendRows.php | 12 ++-- lib/Base/ArchiveView.php | 12 ++-- lib/Base/AutonumberColumn.php | 12 ++-- lib/Base/AutonumberColumnFormat.php | 12 ++-- lib/Base/AutonumberColumnWithTableName.php | 12 ++-- lib/Base/Base.php | 12 ++-- lib/Base/BaseInfoApi.php | 8 +++ lib/Base/BigDataApi.php | 8 +++ lib/Base/ButtonColumn.php | 12 ++-- lib/Base/ButtonColumnFormat.php | 12 ++-- ...ButtonColumnFormatSelectedColumnsInner.php | 12 ++-- lib/Base/ButtonColumnWithTableName.php | 12 ++-- lib/Base/CheckboxColumn.php | 12 ++-- lib/Base/CheckboxColumnWithTableName.php | 12 ++-- lib/Base/CollaboratorColumn.php | 12 ++-- lib/Base/CollaboratorColumnWithTableName.php | 12 ++-- lib/Base/ColumnsApi.php | 8 +++ lib/Base/CreateRowComment.php | 12 ++-- lib/Base/CreateTableRequest.php | 12 ++-- lib/Base/CreateTableRequestColumnsInner.php | 12 ++-- lib/Base/CreatorColumn.php | 12 ++-- lib/Base/CreatorColumnWithTableName.php | 12 ++-- lib/Base/CtimeColumn.php | 12 ++-- lib/Base/CtimeColumnWithTableName.php | 12 ++-- lib/Base/DateColumn.php | 12 ++-- lib/Base/DateColumnFormat.php | 12 ++-- lib/Base/DateColumnWithTableName.php | 12 ++-- lib/Base/DeleteColumn.php | 12 ++-- lib/Base/DeleteRow.php | 12 ++-- lib/Base/DeleteRows.php | 12 ++-- lib/Base/DeleteSelectOptions.php | 12 ++-- lib/Base/DeleteTable.php | 12 ++-- lib/Base/DuplicateTable.php | 12 ++-- lib/Base/DurationColumn.php | 12 ++-- lib/Base/DurationColumnFormat.php | 12 ++-- lib/Base/DurationColumnWithTableName.php | 12 ++-- lib/Base/EmailColumn.php | 12 ++-- lib/Base/EmailColumnWithTableName.php | 12 ++-- lib/Base/FileColumn.php | 12 ++-- lib/Base/FileColumnWithTableName.php | 12 ++-- lib/Base/FiltersAutomatic.php | 12 ++-- lib/Base/FiltersCheckbox.php | 12 ++-- lib/Base/FiltersCollaborator.php | 12 ++-- lib/Base/FiltersCreated.php | 12 ++-- lib/Base/FiltersCreator.php | 12 ++-- lib/Base/FiltersDate.php | 12 ++-- lib/Base/FiltersDateTime.php | 12 ++-- lib/Base/FiltersDuration.php | 12 ++-- lib/Base/FiltersEditor.php | 12 ++-- lib/Base/FiltersEmail.php | 12 ++-- lib/Base/FiltersFile.php | 12 ++-- lib/Base/FiltersFormula.php | 12 ++-- lib/Base/FiltersGeolocation.php | 12 ++-- lib/Base/FiltersImage.php | 12 ++-- lib/Base/FiltersLink.php | 12 ++-- lib/Base/FiltersLinkFormula.php | 12 ++-- lib/Base/FiltersLongText.php | 12 ++-- lib/Base/FiltersModified.php | 12 ++-- lib/Base/FiltersMultiSelect.php | 12 ++-- lib/Base/FiltersNumber.php | 12 ++-- lib/Base/FiltersPercentage.php | 12 ++-- lib/Base/FiltersRating.php | 12 ++-- lib/Base/FiltersSingleSelect.php | 12 ++-- lib/Base/FiltersText.php | 12 ++-- lib/Base/FiltersUrl.php | 12 ++-- lib/Base/FormulaColumn.php | 12 ++-- lib/Base/FormulaColumnFormat.php | 12 ++-- lib/Base/FormulaColumnWithTableName.php | 12 ++-- lib/Base/FreezeUnfreezeColumn.php | 12 ++-- lib/Base/GenerateSnapshot.php | 12 ++-- lib/Base/GeoColumnFormat.php | 12 ++-- lib/Base/GeolocationColumn.php | 12 ++-- lib/Base/GeolocationColumnWithTableName.php | 12 ++-- lib/Base/ImageColumn.php | 12 ++-- lib/Base/ImageColumnWithTableName.php | 12 ++-- lib/Base/InsertColumnRequest.php | 12 ++-- lib/Base/InsertRow.php | 12 ++-- lib/Base/InsertRowsIntoBigData.php | 12 ++-- lib/Base/LastModifierColumn.php | 12 ++-- lib/Base/LastModifierColumnWithTableName.php | 12 ++-- lib/Base/LinkColumn.php | 12 ++-- lib/Base/LinkColumnFormat.php | 12 ++-- lib/Base/LinkColumnWithTableName.php | 12 ++-- lib/Base/LinkFormulaColumn.php | 12 ++-- lib/Base/LinkFormulaColumnColumnData.php | 12 ++-- .../LinkFormulaColumnCountLinksFormat.php | 12 ++-- lib/Base/LinkFormulaColumnFindmaxFormat.php | 12 ++-- lib/Base/LinkFormulaColumnFindminFormat.php | 12 ++-- lib/Base/LinkFormulaColumnLookupFormat.php | 12 ++-- lib/Base/LinkFormulaColumnRollupFormat.php | 12 ++-- lib/Base/LinkFormulaColumnWithTableName.php | 12 ++-- lib/Base/LinksApi.php | 8 +++ lib/Base/ListRowLinks.php | 12 ++-- lib/Base/ListRowLinksRowsInner.php | 12 ++-- lib/Base/LongTextColumn.php | 12 ++-- lib/Base/LongTextColumnWithTableName.php | 12 ++-- lib/Base/MatchLinkColumns.php | 12 ++-- .../MatchLinkColumnsMatchingKeysInner.php | 12 ++-- lib/Base/MoveColumn.php | 12 ++-- lib/Base/MoveRowsToNormalBackendRequest.php | 12 ++-- lib/Base/MtimeColumn.php | 12 ++-- lib/Base/MtimeColumnWithTableName.php | 12 ++-- lib/Base/MultipleSelectColumn.php | 12 ++-- .../MultipleSelectColumnWithTableName.php | 12 ++-- lib/Base/NewView.php | 12 ++-- lib/Base/NotificationsApi.php | 8 +++ lib/Base/NumberColumn.php | 12 ++-- lib/Base/NumberColumnFormat.php | 12 ++-- lib/Base/NumberColumnWithTableName.php | 12 ++-- lib/Base/RatingColumn.php | 12 ++-- lib/Base/RatingColumnFormat.php | 12 ++-- lib/Base/RatingColumnWithTableName.php | 12 ++-- lib/Base/RenameColumn.php | 12 ++-- lib/Base/RenameTable.php | 12 ++-- lib/Base/ResizeColumn.php | 12 ++-- lib/Base/RowCommentsApi.php | 8 +++ lib/Base/RowLinkCreateUpdateDelete.php | 12 ++-- lib/Base/Rows.php | 12 ++-- lib/Base/RowsApi.php | 8 +++ lib/Base/RowsWithTableName.php | 12 ++-- lib/Base/SelectColumnFormat.php | 12 ++-- lib/Base/SelectColumnFormatOptionsInner.php | 12 ++-- lib/Base/SendToastNotificationRequest.php | 12 ++-- .../SendToastNotificationRequestDetail.php | 12 ++-- lib/Base/SingleSelectColumn.php | 12 ++-- lib/Base/SingleSelectColumnWithTableName.php | 12 ++-- lib/Base/SnapshotsApi.php | 8 +++ lib/Base/SortsInner.php | 12 ++-- lib/Base/SqlQuery.php | 12 ++-- lib/Base/SqlQueryParametersInner.php | 12 ++-- lib/Base/SqlQueryResponse.php | 12 ++-- lib/Base/TableNameObject.php | 12 ++-- lib/Base/TableWithRowIds.php | 12 ++-- lib/Base/TablesApi.php | 8 +++ lib/Base/TextColumn.php | 12 ++-- lib/Base/TextColumnWithTableName.php | 12 ++-- lib/Base/UpdateColumn.php | 12 ++-- lib/Base/UpdateColumnType.php | 12 ++-- lib/Base/UpdateComment.php | 12 ++-- lib/Base/UpdateCommentOptions.php | 12 ++-- lib/Base/UpdateRow.php | 12 ++-- lib/Base/UpdateRows.php | 12 ++-- lib/Base/UpdateRowsUpdatesInner.php | 12 ++-- .../UpdateSingleMultipleSelectOptions.php | 12 ++-- ...ingleMultipleSelectOptionsOptionsInner.php | 12 ++-- lib/Base/UpdateView.php | 12 ++-- lib/Base/UpdateViewFiltersInner.php | 12 ++-- lib/Base/UrlColumn.php | 12 ++-- lib/Base/UrlColumnWithTableName.php | 12 ++-- lib/Base/ViewsApi.php | 8 +++ lib/Configuration.php | 57 +++++++++++++++++++ lib/File/FilesImagesApi.php | 8 +++ lib/File/FilesImagesCustomFolderApi.php | 8 +++ lib/PythonScheduler/RunsApi.php | 8 +++ lib/PythonScheduler/StatisticsApi.php | 8 +++ lib/SysAdmin/AddDepartmentRequest.php | 12 ++-- lib/SysAdmin/AddNewUserRequest.php | 12 ++-- lib/SysAdmin/AddNotificationToUserRequest.php | 12 ++-- lib/SysAdmin/AddTeamRequest.php | 12 ++-- lib/SysAdmin/AutomationsApi.php | 8 +++ lib/SysAdmin/BasesApi.php | 8 +++ lib/SysAdmin/CommonDatasetApi.php | 8 +++ lib/SysAdmin/CreateGroupRequest.php | 12 ++-- lib/SysAdmin/DepartmentsApi.php | 8 +++ lib/SysAdmin/EnforceTwoFactorRequest.php | 12 ++-- lib/SysAdmin/ExportApi.php | 8 +++ lib/SysAdmin/FormsApi.php | 8 +++ lib/SysAdmin/GroupsApi.php | 8 +++ lib/SysAdmin/ListAuditLogs200Response.php | 12 ++-- ...tAuditLogs200ResponseAuditLogListInner.php | 12 ++-- ...Logs200ResponseAuditLogListInnerDetail.php | 12 ++-- lib/SysAdmin/LogsApi.php | 8 +++ lib/SysAdmin/MaintenanceApi.php | 8 +++ lib/SysAdmin/NotificationsApi.php | 8 +++ lib/SysAdmin/PluginsApi.php | 8 +++ lib/SysAdmin/RepairBase200Response.php | 12 ++-- lib/SysAdmin/SharingLinksApi.php | 8 +++ lib/SysAdmin/StatisticsApi.php | 8 +++ lib/SysAdmin/SystemInfoCustomizingApi.php | 8 +++ lib/SysAdmin/SystemNotificationsApi.php | 8 +++ lib/SysAdmin/TeamsApi.php | 8 +++ lib/SysAdmin/TransferGroupRequest.php | 12 ++-- lib/SysAdmin/UpdateAbuseReportRequest.php | 12 ++-- lib/SysAdmin/UpdateAdminsRole.php | 12 ++-- lib/SysAdmin/UpdateGeneralSettingsRequest.php | 12 ++-- lib/SysAdmin/UpdateTeamRequest.php | 12 ++-- lib/SysAdmin/UpdateTeamUserRequest.php | 12 ++-- lib/SysAdmin/UpdateUserRequest.php | 12 ++-- lib/SysAdmin/UsersApi.php | 8 +++ lib/TeamAdmin/ActivitiesLogsApi.php | 8 +++ lib/TeamAdmin/BasesApi.php | 8 +++ lib/TeamAdmin/CustomizingApi.php | 8 +++ lib/TeamAdmin/EnforceTwofactorRequest.php | 12 ++-- lib/TeamAdmin/GroupsApi.php | 8 +++ lib/TeamAdmin/InfoSettingsApi.php | 8 +++ lib/TeamAdmin/SAMLApi.php | 8 +++ lib/TeamAdmin/SharingLinksApi.php | 8 +++ lib/TeamAdmin/StatisticsApi.php | 8 +++ .../UpdateGroupMemberRoleRequest.php | 12 ++-- lib/TeamAdmin/UpdateGroupRequest.php | 12 ++-- lib/TeamAdmin/UpdateInviteLinkRequest.php | 12 ++-- lib/TeamAdmin/UsersApi.php | 8 +++ lib/User/Action.php | 12 ++-- lib/User/ActionAddRecord.php | 12 ++-- lib/User/ActionAddRecordToOtherTable.php | 12 ++-- lib/User/ActionAddRecordToOtherTableRow.php | 12 ++-- lib/User/ActionCalculateAccumulatedValue.php | 12 ++-- lib/User/ActionCalculateDelta.php | 12 ++-- lib/User/ActionCalculatePercentage.php | 12 ++-- lib/User/ActionCalculateRank.php | 12 ++-- lib/User/ActionExtractUserName.php | 12 ++-- lib/User/ActionLinkRecord.php | 12 ++-- .../ActionLinkRecordMatchConditionsInner.php | 12 ++-- lib/User/ActionLockRecord.php | 12 ++-- lib/User/ActionLookupAndCopy.php | 12 ++-- ...ookupAndCopyEqualColumnConditionsInner.php | 12 ++-- .../ActionLookupAndCopyTableCondition.php | 12 ++-- lib/User/ActionNotify.php | 12 ++-- ...ecificConditionsAfterModificationInner.php | 12 ++-- lib/User/ActionRunPeriodicallyInner.php | 12 ++-- .../ActionRunPeriodicallyOnRecordsInner.php | 12 ++-- lib/User/ActionRunPythonScript.php | 12 ++-- lib/User/ActionSendEmail.php | 12 ++-- lib/User/ActionUpdateRecord.php | 12 ++-- lib/User/ActivitiesLogsApi.php | 8 +++ lib/User/AddEmailAccountRequest.php | 12 ++-- lib/User/AddGroupMemberRequest.php | 12 ++-- lib/User/AddNotificationRuleRequest.php | 12 ++-- lib/User/AddNotificationRuleRequestAction.php | 12 ++-- .../AddNotificationRuleRequestTrigger.php | 12 ++-- lib/User/AddPassword.php | 12 ++-- lib/User/AddRecordToOtherTableRowDate.php | 12 ++-- lib/User/AddRecordToOtherTableRowDateTime.php | 12 ++-- lib/User/AppsApi.php | 8 +++ lib/User/AttachmentApi.php | 8 +++ lib/User/AutomationsApi.php | 8 +++ lib/User/Base.php | 12 ++-- lib/User/BasePasswordRequest.php | 12 ++-- lib/User/BaseTable.php | 12 ++-- lib/User/BasesApi.php | 8 +++ lib/User/ChooseADateColumnValue.php | 12 ++-- lib/User/CommonDatasetApi.php | 8 +++ lib/User/Contains.php | 12 ++-- lib/User/ContainsFilterTerm.php | 12 ++-- lib/User/CreateAutomationRuleRequest.php | 12 ++-- lib/User/CreateGroupRequest.php | 12 ++-- lib/User/DepartmentsApi.php | 8 +++ lib/User/Detail.php | 12 ++-- lib/User/DoesNotContain.php | 12 ++-- lib/User/EmailAccountsApi.php | 8 +++ lib/User/Equal.php | 12 ++-- lib/User/FiltersInner.php | 12 ++-- lib/User/FormsApi.php | 8 +++ .../GetBigDataOperationLogs200Response.php | 12 ++-- ...perationLogs200ResponseOperationsInner.php | 12 ++-- ...ogs200ResponseOperationsInnerOperation.php | 12 ++-- lib/User/Greater.php | 12 ++-- lib/User/GreaterOrEqual.php | 12 ++-- lib/User/GroupsWorkspacesApi.php | 8 +++ lib/User/HasAllOf.php | 12 ++-- lib/User/HasAnyOf.php | 12 ++-- lib/User/HasNoneOf.php | 12 ++-- .../ImportBasefromDTableFile200Response.php | 12 ++-- ...portBasefromDTableFile200ResponseTable.php | 12 ++-- lib/User/ImportExportApi.php | 8 +++ lib/User/ImportUsersToAppRequest.php | 12 ++-- lib/User/IncludeMe.php | 12 ++-- lib/User/Is.php | 12 ++-- lib/User/IsAnyOf.php | 12 ++-- lib/User/IsCurrentUserID.php | 12 ++-- lib/User/IsEmpty.php | 12 ++-- lib/User/IsExactly.php | 12 ++-- lib/User/IsInactive.php | 12 ++-- lib/User/IsNoneOf.php | 12 ++-- lib/User/IsNot.php | 12 ++-- lib/User/IsNotEmpty.php | 12 ++-- lib/User/IsWithinTheNextMonth.php | 12 ++-- lib/User/IsWithinTheNextNumberOfDays.php | 12 ++-- lib/User/IsWithinTheNextWeek.php | 12 ++-- lib/User/IsWithinTheNextYear.php | 12 ++-- lib/User/IsWithinThePastMonth.php | 12 ++-- lib/User/IsWithinThePastNumberOfDays.php | 12 ++-- lib/User/IsWithinThePastWeek.php | 12 ++-- lib/User/IsWithinThePastYear.php | 12 ++-- lib/User/IsWithinThisMonth.php | 12 ++-- lib/User/IsWithinThisWeek.php | 12 ++-- lib/User/IsWithinThisYear.php | 12 ++-- lib/User/Less.php | 12 ++-- lib/User/LessOrEqual.php | 12 ++-- lib/User/ListPublicUserInfosRequest.php | 12 ++-- lib/User/MaintenanceApi.php | 8 +++ lib/User/ModifyPassword.php | 12 ++-- lib/User/NotEqual.php | 12 ++-- lib/User/NotificationsApi.php | 8 +++ ...eetSpecificConditionsAfterModification.php | 12 ++-- lib/User/RepairBase200Response.php | 12 ++-- lib/User/RowAdded.php | 12 ++-- lib/User/RunPeriodically.php | 12 ++-- ...RunPeriodicallyOnRecordsMeetConditions.php | 12 ++-- lib/User/SharingApi.php | 8 +++ lib/User/SharingLinksApi.php | 8 +++ lib/User/SnapshotsApi.php | 8 +++ lib/User/SpecificDateValue.php | 12 ++-- lib/User/SystemNotificationsApi.php | 8 +++ lib/User/TheDayRunningTheTaskValue.php | 12 ++-- lib/User/Trigger.php | 12 ++-- ...eetSpecificConditionsAfterModification.php | 12 ++-- lib/User/TriggerRowAdded.php | 12 ++-- ...ggerRunPeriodicallyOnRecordsMeetPerDay.php | 12 ++-- ...PeriodicallyOnRecordsMeetPerDayTrigger.php | 12 ++-- ...erRunPeriodicallyOnRecordsMeetPerMonth.php | 12 ++-- ...riodicallyOnRecordsMeetPerMonthTrigger.php | 12 ++-- ...gerRunPeriodicallyOnRecordsMeetPerWeek.php | 12 ++-- ...eriodicallyOnRecordsMeetPerWeekTrigger.php | 12 ++-- lib/User/TriggerRunPeriodicallyPerDay.php | 12 ++-- .../TriggerRunPeriodicallyPerDayTrigger.php | 12 ++-- lib/User/TriggerRunPeriodicallyPerMonth.php | 12 ++-- .../TriggerRunPeriodicallyPerMonthTrigger.php | 12 ++-- lib/User/TriggerRunPeriodicallyPerWeek.php | 12 ++-- .../TriggerRunPeriodicallyPerWeekTrigger.php | 12 ++-- lib/User/UnsetPassword.php | 12 ++-- lib/User/UpdateCommonDatasetSyncRequest.php | 12 ++-- lib/User/UpdateGroupRequest.php | 12 ++-- lib/User/UpdateGroupRoleRequest.php | 12 ++-- lib/User/UpdateNotificationRuleRequest.php | 12 ++-- lib/User/UserApi.php | 8 +++ lib/User/UsersInfo.php | 12 ++-- lib/User/WebhooksApi.php | 8 +++ lib/User/XDaysBeforeRunningTheTaskValue.php | 12 ++-- lib/User/XxxExactDate.php | 12 ++-- lib/User/XxxNumberOfDaysAgo.php | 12 ++-- lib/User/XxxNumberOfDaysFromNow.php | 12 ++-- lib/User/XxxOneMonthAgo.php | 12 ++-- lib/User/XxxOneMonthFromNow.php | 12 ++-- lib/User/XxxOneWeekAgo.php | 12 ++-- lib/User/XxxOneWeekFromNow.php | 12 ++-- lib/User/XxxToday.php | 12 ++-- lib/User/XxxTomorrow.php | 12 ++-- lib/User/XxxYesterday.php | 12 ++-- 355 files changed, 2297 insertions(+), 1736 deletions(-) diff --git a/.openapi-generator/VERSION b/.openapi-generator/VERSION index 368fd8f..1b2d969 100644 --- a/.openapi-generator/VERSION +++ b/.openapi-generator/VERSION @@ -1 +1 @@ -7.15.0 +7.18.0 diff --git a/generate_api.sh b/generate_api.sh index 1204871..8f24dd6 100755 --- a/generate_api.sh +++ b/generate_api.sh @@ -11,7 +11,7 @@ rm -r ./test/* rm -r ./docs/* LOG_LEVEL="warn" -TAG="v7.15.0" +TAG="v7.18.0" # generate sysadmin docker run --rm \ diff --git a/lib/Auth/APITokenApi.php b/lib/Auth/APITokenApi.php index 916f63d..b12bd35 100644 --- a/lib/Auth/APITokenApi.php +++ b/lib/Auth/APITokenApi.php @@ -1723,6 +1723,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Auth/AccessToken.php b/lib/Auth/AccessToken.php index af8f824..f125b6e 100644 --- a/lib/Auth/AccessToken.php +++ b/lib/Auth/AccessToken.php @@ -352,11 +352,11 @@ public function setDtableUuid($dtable_uuid) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -364,12 +364,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -394,11 +394,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Auth/AccountToken.php b/lib/Auth/AccountToken.php index 5c18e3d..cd286b0 100644 --- a/lib/Auth/AccountToken.php +++ b/lib/Auth/AccountToken.php @@ -333,11 +333,11 @@ public function setToken($token) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -345,12 +345,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -375,11 +375,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Auth/AccountTokenApi.php b/lib/Auth/AccountTokenApi.php index bd72323..ba9e56c 100644 --- a/lib/Auth/AccountTokenApi.php +++ b/lib/Auth/AccountTokenApi.php @@ -435,6 +435,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Auth/ApiToken.php b/lib/Auth/ApiToken.php index f405246..ed8db06 100644 --- a/lib/Auth/ApiToken.php +++ b/lib/Auth/ApiToken.php @@ -539,11 +539,11 @@ public function setPermission($permission) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -551,12 +551,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -581,11 +581,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Auth/ApiTokenList.php b/lib/Auth/ApiTokenList.php index ed142ae..02e5966 100644 --- a/lib/Auth/ApiTokenList.php +++ b/lib/Auth/ApiTokenList.php @@ -318,11 +318,11 @@ public function setApiTokens($api_tokens) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -330,12 +330,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -360,11 +360,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Auth/ApiTokenTemporary.php b/lib/Auth/ApiTokenTemporary.php index ea4ff6d..e9734e3 100644 --- a/lib/Auth/ApiTokenTemporary.php +++ b/lib/Auth/ApiTokenTemporary.php @@ -318,11 +318,11 @@ public function setApiToken($api_token) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -330,12 +330,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -360,11 +360,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Auth/BaseTokenApi.php b/lib/Auth/BaseTokenApi.php index c4d3c13..d7c2ebc 100644 --- a/lib/Auth/BaseTokenApi.php +++ b/lib/Auth/BaseTokenApi.php @@ -1005,6 +1005,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/ActivitiesLogsApi.php b/lib/Base/ActivitiesLogsApi.php index f03e133..4528b5f 100644 --- a/lib/Base/ActivitiesLogsApi.php +++ b/lib/Base/ActivitiesLogsApi.php @@ -771,6 +771,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/AddSingleMultipleSelectOptions.php b/lib/Base/AddSingleMultipleSelectOptions.php index 73b7c08..c27fde3 100644 --- a/lib/Base/AddSingleMultipleSelectOptions.php +++ b/lib/Base/AddSingleMultipleSelectOptions.php @@ -394,11 +394,11 @@ public function setOptions($options) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -406,12 +406,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -436,11 +436,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php b/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php index 03fe293..8049fa3 100644 --- a/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php +++ b/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php @@ -385,11 +385,11 @@ public function setTextColor($text_color) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/AppendColumnsRequest.php b/lib/Base/AppendColumnsRequest.php index 5abcda1..4f03170 100644 --- a/lib/Base/AppendColumnsRequest.php +++ b/lib/Base/AppendColumnsRequest.php @@ -351,11 +351,11 @@ public function setColumns($columns) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/AppendColumnsRequestColumnsInner.php b/lib/Base/AppendColumnsRequestColumnsInner.php index 1c2ea5b..66e520f 100644 --- a/lib/Base/AppendColumnsRequestColumnsInner.php +++ b/lib/Base/AppendColumnsRequestColumnsInner.php @@ -469,11 +469,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/AppendRow.php b/lib/Base/AppendRow.php index fd2a341..c6c9cda 100644 --- a/lib/Base/AppendRow.php +++ b/lib/Base/AppendRow.php @@ -392,11 +392,11 @@ public function setApplyDefault($apply_default) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -404,12 +404,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -434,11 +434,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/AppendRows.php b/lib/Base/AppendRows.php index 7c0a810..7153e0c 100644 --- a/lib/Base/AppendRows.php +++ b/lib/Base/AppendRows.php @@ -392,11 +392,11 @@ public function setApplyDefault($apply_default) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -404,12 +404,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -434,11 +434,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ArchiveView.php b/lib/Base/ArchiveView.php index 06fdbdc..469166a 100644 --- a/lib/Base/ArchiveView.php +++ b/lib/Base/ArchiveView.php @@ -357,11 +357,11 @@ public function setViewName($view_name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -369,12 +369,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -399,11 +399,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/AutonumberColumn.php b/lib/Base/AutonumberColumn.php index 2fd8051..fa699a0 100644 --- a/lib/Base/AutonumberColumn.php +++ b/lib/Base/AutonumberColumn.php @@ -467,11 +467,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -479,12 +479,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -509,11 +509,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/AutonumberColumnFormat.php b/lib/Base/AutonumberColumnFormat.php index 72ab8fb..790a5e0 100644 --- a/lib/Base/AutonumberColumnFormat.php +++ b/lib/Base/AutonumberColumnFormat.php @@ -321,11 +321,11 @@ public function setFormat($format) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -333,12 +333,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -363,11 +363,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/AutonumberColumnWithTableName.php b/lib/Base/AutonumberColumnWithTableName.php index 4dce9a5..57545b0 100644 --- a/lib/Base/AutonumberColumnWithTableName.php +++ b/lib/Base/AutonumberColumnWithTableName.php @@ -503,11 +503,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -515,12 +515,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -545,11 +545,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/Base.php b/lib/Base/Base.php index 72afbee..752b593 100644 --- a/lib/Base/Base.php +++ b/lib/Base/Base.php @@ -565,11 +565,11 @@ public function setIdRowMap($id_row_map) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -577,12 +577,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -607,11 +607,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/BaseInfoApi.php b/lib/Base/BaseInfoApi.php index 1ab244c..2888bde 100644 --- a/lib/Base/BaseInfoApi.php +++ b/lib/Base/BaseInfoApi.php @@ -693,6 +693,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/BigDataApi.php b/lib/Base/BigDataApi.php index f080eb4..c961a55 100644 --- a/lib/Base/BigDataApi.php +++ b/lib/Base/BigDataApi.php @@ -1575,6 +1575,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/ButtonColumn.php b/lib/Base/ButtonColumn.php index 0321fda..bdd01bd 100644 --- a/lib/Base/ButtonColumn.php +++ b/lib/Base/ButtonColumn.php @@ -470,11 +470,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -482,12 +482,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -512,11 +512,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ButtonColumnFormat.php b/lib/Base/ButtonColumnFormat.php index 8241939..c90bc3e 100644 --- a/lib/Base/ButtonColumnFormat.php +++ b/lib/Base/ButtonColumnFormat.php @@ -546,11 +546,11 @@ public function setSelectedColumns($selected_columns) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -558,12 +558,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -588,11 +588,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ButtonColumnFormatSelectedColumnsInner.php b/lib/Base/ButtonColumnFormatSelectedColumnsInner.php index 1cd9eb0..3c1b01c 100644 --- a/lib/Base/ButtonColumnFormatSelectedColumnsInner.php +++ b/lib/Base/ButtonColumnFormatSelectedColumnsInner.php @@ -351,11 +351,11 @@ public function setValue($value) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ButtonColumnWithTableName.php b/lib/Base/ButtonColumnWithTableName.php index 13ca9fd..49e2ae0 100644 --- a/lib/Base/ButtonColumnWithTableName.php +++ b/lib/Base/ButtonColumnWithTableName.php @@ -506,11 +506,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -518,12 +518,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -548,11 +548,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CheckboxColumn.php b/lib/Base/CheckboxColumn.php index 28cff9b..4a53505 100644 --- a/lib/Base/CheckboxColumn.php +++ b/lib/Base/CheckboxColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CheckboxColumnWithTableName.php b/lib/Base/CheckboxColumnWithTableName.php index 04d46a5..54f2783 100644 --- a/lib/Base/CheckboxColumnWithTableName.php +++ b/lib/Base/CheckboxColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CollaboratorColumn.php b/lib/Base/CollaboratorColumn.php index 3533877..cb23ca4 100644 --- a/lib/Base/CollaboratorColumn.php +++ b/lib/Base/CollaboratorColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CollaboratorColumnWithTableName.php b/lib/Base/CollaboratorColumnWithTableName.php index 44537f7..1464750 100644 --- a/lib/Base/CollaboratorColumnWithTableName.php +++ b/lib/Base/CollaboratorColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ColumnsApi.php b/lib/Base/ColumnsApi.php index 2460cc8..2467c01 100644 --- a/lib/Base/ColumnsApi.php +++ b/lib/Base/ColumnsApi.php @@ -2779,6 +2779,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/CreateRowComment.php b/lib/Base/CreateRowComment.php index 09b1ba9..53e003d 100644 --- a/lib/Base/CreateRowComment.php +++ b/lib/Base/CreateRowComment.php @@ -317,11 +317,11 @@ public function setComment($comment) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CreateTableRequest.php b/lib/Base/CreateTableRequest.php index db3ca06..bcd3674 100644 --- a/lib/Base/CreateTableRequest.php +++ b/lib/Base/CreateTableRequest.php @@ -357,11 +357,11 @@ public function setColumns($columns) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -369,12 +369,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -399,11 +399,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CreateTableRequestColumnsInner.php b/lib/Base/CreateTableRequestColumnsInner.php index f486cc9..8087a9a 100644 --- a/lib/Base/CreateTableRequestColumnsInner.php +++ b/lib/Base/CreateTableRequestColumnsInner.php @@ -469,11 +469,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CreatorColumn.php b/lib/Base/CreatorColumn.php index 19c5b17..3b1024f 100644 --- a/lib/Base/CreatorColumn.php +++ b/lib/Base/CreatorColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CreatorColumnWithTableName.php b/lib/Base/CreatorColumnWithTableName.php index b599bd1..93d8a95 100644 --- a/lib/Base/CreatorColumnWithTableName.php +++ b/lib/Base/CreatorColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CtimeColumn.php b/lib/Base/CtimeColumn.php index db72b58..2b6e515 100644 --- a/lib/Base/CtimeColumn.php +++ b/lib/Base/CtimeColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/CtimeColumnWithTableName.php b/lib/Base/CtimeColumnWithTableName.php index a44b0c5..34883d2 100644 --- a/lib/Base/CtimeColumnWithTableName.php +++ b/lib/Base/CtimeColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DateColumn.php b/lib/Base/DateColumn.php index e81f1d0..4f02d8c 100644 --- a/lib/Base/DateColumn.php +++ b/lib/Base/DateColumn.php @@ -467,11 +467,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -479,12 +479,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -509,11 +509,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DateColumnFormat.php b/lib/Base/DateColumnFormat.php index d1a3f11..94952c3 100644 --- a/lib/Base/DateColumnFormat.php +++ b/lib/Base/DateColumnFormat.php @@ -366,11 +366,11 @@ public function setFormat($format) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -378,12 +378,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -408,11 +408,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DateColumnWithTableName.php b/lib/Base/DateColumnWithTableName.php index 99956d0..33ddf11 100644 --- a/lib/Base/DateColumnWithTableName.php +++ b/lib/Base/DateColumnWithTableName.php @@ -503,11 +503,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -515,12 +515,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -545,11 +545,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DeleteColumn.php b/lib/Base/DeleteColumn.php index 99f0c1a..c30052a 100644 --- a/lib/Base/DeleteColumn.php +++ b/lib/Base/DeleteColumn.php @@ -366,11 +366,11 @@ public function setColumn($column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -378,12 +378,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -408,11 +408,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DeleteRow.php b/lib/Base/DeleteRow.php index 3e79780..aecf714 100644 --- a/lib/Base/DeleteRow.php +++ b/lib/Base/DeleteRow.php @@ -367,11 +367,11 @@ public function setRowId($row_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -379,12 +379,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -409,11 +409,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DeleteRows.php b/lib/Base/DeleteRows.php index f319769..502c1fd 100644 --- a/lib/Base/DeleteRows.php +++ b/lib/Base/DeleteRows.php @@ -358,11 +358,11 @@ public function setRowIds($row_ids) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -370,12 +370,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -400,11 +400,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DeleteSelectOptions.php b/lib/Base/DeleteSelectOptions.php index c5c75ac..aa27efd 100644 --- a/lib/Base/DeleteSelectOptions.php +++ b/lib/Base/DeleteSelectOptions.php @@ -403,11 +403,11 @@ public function setOptionNames($option_names) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -415,12 +415,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -445,11 +445,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DeleteTable.php b/lib/Base/DeleteTable.php index a1991e5..4122cb0 100644 --- a/lib/Base/DeleteTable.php +++ b/lib/Base/DeleteTable.php @@ -321,11 +321,11 @@ public function setTableName($table_name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -333,12 +333,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -363,11 +363,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DuplicateTable.php b/lib/Base/DuplicateTable.php index 10bcf98..f3b1d5f 100644 --- a/lib/Base/DuplicateTable.php +++ b/lib/Base/DuplicateTable.php @@ -357,11 +357,11 @@ public function setIsDuplicateRecords($is_duplicate_records) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -369,12 +369,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -399,11 +399,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DurationColumn.php b/lib/Base/DurationColumn.php index fe081ab..e7f8244 100644 --- a/lib/Base/DurationColumn.php +++ b/lib/Base/DurationColumn.php @@ -467,11 +467,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -479,12 +479,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -509,11 +509,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DurationColumnFormat.php b/lib/Base/DurationColumnFormat.php index c8e7afa..cac5cb4 100644 --- a/lib/Base/DurationColumnFormat.php +++ b/lib/Base/DurationColumnFormat.php @@ -420,11 +420,11 @@ public function setDurationFormat($duration_format) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -432,12 +432,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -462,11 +462,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/DurationColumnWithTableName.php b/lib/Base/DurationColumnWithTableName.php index b519b0c..7aa4aa1 100644 --- a/lib/Base/DurationColumnWithTableName.php +++ b/lib/Base/DurationColumnWithTableName.php @@ -503,11 +503,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -515,12 +515,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -545,11 +545,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/EmailColumn.php b/lib/Base/EmailColumn.php index 8ee2a71..7a10b33 100644 --- a/lib/Base/EmailColumn.php +++ b/lib/Base/EmailColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/EmailColumnWithTableName.php b/lib/Base/EmailColumnWithTableName.php index ed4cc1a..04b177a 100644 --- a/lib/Base/EmailColumnWithTableName.php +++ b/lib/Base/EmailColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FileColumn.php b/lib/Base/FileColumn.php index c256ac6..ff9c231 100644 --- a/lib/Base/FileColumn.php +++ b/lib/Base/FileColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FileColumnWithTableName.php b/lib/Base/FileColumnWithTableName.php index 86ec819..36bf808 100644 --- a/lib/Base/FileColumnWithTableName.php +++ b/lib/Base/FileColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersAutomatic.php b/lib/Base/FiltersAutomatic.php index ab19fd0..217cb52 100644 --- a/lib/Base/FiltersAutomatic.php +++ b/lib/Base/FiltersAutomatic.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersCheckbox.php b/lib/Base/FiltersCheckbox.php index 8fa782e..628831a 100644 --- a/lib/Base/FiltersCheckbox.php +++ b/lib/Base/FiltersCheckbox.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersCollaborator.php b/lib/Base/FiltersCollaborator.php index d7956a8..0311eea 100644 --- a/lib/Base/FiltersCollaborator.php +++ b/lib/Base/FiltersCollaborator.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersCreated.php b/lib/Base/FiltersCreated.php index cdffa96..6fa5a63 100644 --- a/lib/Base/FiltersCreated.php +++ b/lib/Base/FiltersCreated.php @@ -419,11 +419,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -431,12 +431,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -461,11 +461,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersCreator.php b/lib/Base/FiltersCreator.php index 017cb15..f2e5f3f 100644 --- a/lib/Base/FiltersCreator.php +++ b/lib/Base/FiltersCreator.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersDate.php b/lib/Base/FiltersDate.php index 6da3135..a1ec796 100644 --- a/lib/Base/FiltersDate.php +++ b/lib/Base/FiltersDate.php @@ -428,11 +428,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -440,12 +440,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -470,11 +470,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersDateTime.php b/lib/Base/FiltersDateTime.php index eb83275..393f018 100644 --- a/lib/Base/FiltersDateTime.php +++ b/lib/Base/FiltersDateTime.php @@ -419,11 +419,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -431,12 +431,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -461,11 +461,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersDuration.php b/lib/Base/FiltersDuration.php index ed86184..109989f 100644 --- a/lib/Base/FiltersDuration.php +++ b/lib/Base/FiltersDuration.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersEditor.php b/lib/Base/FiltersEditor.php index bc14697..2cece4c 100644 --- a/lib/Base/FiltersEditor.php +++ b/lib/Base/FiltersEditor.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersEmail.php b/lib/Base/FiltersEmail.php index dbaddda..b8966c3 100644 --- a/lib/Base/FiltersEmail.php +++ b/lib/Base/FiltersEmail.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersFile.php b/lib/Base/FiltersFile.php index 682792f..1599139 100644 --- a/lib/Base/FiltersFile.php +++ b/lib/Base/FiltersFile.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersFormula.php b/lib/Base/FiltersFormula.php index efd8790..c09488b 100644 --- a/lib/Base/FiltersFormula.php +++ b/lib/Base/FiltersFormula.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersGeolocation.php b/lib/Base/FiltersGeolocation.php index 25dfc68..86b1e1f 100644 --- a/lib/Base/FiltersGeolocation.php +++ b/lib/Base/FiltersGeolocation.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersImage.php b/lib/Base/FiltersImage.php index 8318ca4..be6f1fe 100644 --- a/lib/Base/FiltersImage.php +++ b/lib/Base/FiltersImage.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersLink.php b/lib/Base/FiltersLink.php index ad2e5b1..58c5542 100644 --- a/lib/Base/FiltersLink.php +++ b/lib/Base/FiltersLink.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersLinkFormula.php b/lib/Base/FiltersLinkFormula.php index 55bd47c..8159a96 100644 --- a/lib/Base/FiltersLinkFormula.php +++ b/lib/Base/FiltersLinkFormula.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersLongText.php b/lib/Base/FiltersLongText.php index b5266fb..8eee141 100644 --- a/lib/Base/FiltersLongText.php +++ b/lib/Base/FiltersLongText.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersModified.php b/lib/Base/FiltersModified.php index df1acb7..67e4cfe 100644 --- a/lib/Base/FiltersModified.php +++ b/lib/Base/FiltersModified.php @@ -419,11 +419,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -431,12 +431,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -461,11 +461,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersMultiSelect.php b/lib/Base/FiltersMultiSelect.php index d9405a3..006e10a 100644 --- a/lib/Base/FiltersMultiSelect.php +++ b/lib/Base/FiltersMultiSelect.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersNumber.php b/lib/Base/FiltersNumber.php index 455d8d7..00f5f7d 100644 --- a/lib/Base/FiltersNumber.php +++ b/lib/Base/FiltersNumber.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersPercentage.php b/lib/Base/FiltersPercentage.php index 501df44..862e1ed 100644 --- a/lib/Base/FiltersPercentage.php +++ b/lib/Base/FiltersPercentage.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersRating.php b/lib/Base/FiltersRating.php index 9e5fcd0..9a70ff2 100644 --- a/lib/Base/FiltersRating.php +++ b/lib/Base/FiltersRating.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersSingleSelect.php b/lib/Base/FiltersSingleSelect.php index 4eb7733..0f8727a 100644 --- a/lib/Base/FiltersSingleSelect.php +++ b/lib/Base/FiltersSingleSelect.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersText.php b/lib/Base/FiltersText.php index d266340..9d4b66d 100644 --- a/lib/Base/FiltersText.php +++ b/lib/Base/FiltersText.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FiltersUrl.php b/lib/Base/FiltersUrl.php index 94f2a82..ba0eba5 100644 --- a/lib/Base/FiltersUrl.php +++ b/lib/Base/FiltersUrl.php @@ -385,11 +385,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FormulaColumn.php b/lib/Base/FormulaColumn.php index 430e271..4b2fdaa 100644 --- a/lib/Base/FormulaColumn.php +++ b/lib/Base/FormulaColumn.php @@ -470,11 +470,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -482,12 +482,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -512,11 +512,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FormulaColumnFormat.php b/lib/Base/FormulaColumnFormat.php index 786e12d..e66aa96 100644 --- a/lib/Base/FormulaColumnFormat.php +++ b/lib/Base/FormulaColumnFormat.php @@ -321,11 +321,11 @@ public function setFormula($formula) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -333,12 +333,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -363,11 +363,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FormulaColumnWithTableName.php b/lib/Base/FormulaColumnWithTableName.php index 33872fd..60e5cc1 100644 --- a/lib/Base/FormulaColumnWithTableName.php +++ b/lib/Base/FormulaColumnWithTableName.php @@ -506,11 +506,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -518,12 +518,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -548,11 +548,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/FreezeUnfreezeColumn.php b/lib/Base/FreezeUnfreezeColumn.php index a556c85..3837f97 100644 --- a/lib/Base/FreezeUnfreezeColumn.php +++ b/lib/Base/FreezeUnfreezeColumn.php @@ -472,11 +472,11 @@ public function setFrozen($frozen) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -484,12 +484,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -514,11 +514,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/GenerateSnapshot.php b/lib/Base/GenerateSnapshot.php index aa5b2b6..08f4651 100644 --- a/lib/Base/GenerateSnapshot.php +++ b/lib/Base/GenerateSnapshot.php @@ -317,11 +317,11 @@ public function setDtableName($dtable_name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/GeoColumnFormat.php b/lib/Base/GeoColumnFormat.php index 2a49389..ba679d8 100644 --- a/lib/Base/GeoColumnFormat.php +++ b/lib/Base/GeoColumnFormat.php @@ -352,11 +352,11 @@ public function setGeoFormat($geo_format) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -364,12 +364,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -394,11 +394,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/GeolocationColumn.php b/lib/Base/GeolocationColumn.php index 1d72ffb..4ac83d9 100644 --- a/lib/Base/GeolocationColumn.php +++ b/lib/Base/GeolocationColumn.php @@ -467,11 +467,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -479,12 +479,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -509,11 +509,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/GeolocationColumnWithTableName.php b/lib/Base/GeolocationColumnWithTableName.php index b6e7a7c..e383e1f 100644 --- a/lib/Base/GeolocationColumnWithTableName.php +++ b/lib/Base/GeolocationColumnWithTableName.php @@ -503,11 +503,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -515,12 +515,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -545,11 +545,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ImageColumn.php b/lib/Base/ImageColumn.php index 961ebb0..1719f08 100644 --- a/lib/Base/ImageColumn.php +++ b/lib/Base/ImageColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ImageColumnWithTableName.php b/lib/Base/ImageColumnWithTableName.php index f31913f..a4c4cc7 100644 --- a/lib/Base/ImageColumnWithTableName.php +++ b/lib/Base/ImageColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/InsertColumnRequest.php b/lib/Base/InsertColumnRequest.php index f5a7fbf..6eef775 100644 --- a/lib/Base/InsertColumnRequest.php +++ b/lib/Base/InsertColumnRequest.php @@ -506,11 +506,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -518,12 +518,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -548,11 +548,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/InsertRow.php b/lib/Base/InsertRow.php index 8be3d8e..6e9b055 100644 --- a/lib/Base/InsertRow.php +++ b/lib/Base/InsertRow.php @@ -496,11 +496,11 @@ public function setApplyDefault($apply_default) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -508,12 +508,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -538,11 +538,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/InsertRowsIntoBigData.php b/lib/Base/InsertRowsIntoBigData.php index 951eb73..89438cb 100644 --- a/lib/Base/InsertRowsIntoBigData.php +++ b/lib/Base/InsertRowsIntoBigData.php @@ -357,11 +357,11 @@ public function setRows($rows) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -369,12 +369,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -399,11 +399,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LastModifierColumn.php b/lib/Base/LastModifierColumn.php index 4d69e43..afb7838 100644 --- a/lib/Base/LastModifierColumn.php +++ b/lib/Base/LastModifierColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LastModifierColumnWithTableName.php b/lib/Base/LastModifierColumnWithTableName.php index e3620e1..19deb7f 100644 --- a/lib/Base/LastModifierColumnWithTableName.php +++ b/lib/Base/LastModifierColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkColumn.php b/lib/Base/LinkColumn.php index ac5f2e1..767a110 100644 --- a/lib/Base/LinkColumn.php +++ b/lib/Base/LinkColumn.php @@ -470,11 +470,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -482,12 +482,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -512,11 +512,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkColumnFormat.php b/lib/Base/LinkColumnFormat.php index ee1f54b..39fd842 100644 --- a/lib/Base/LinkColumnFormat.php +++ b/lib/Base/LinkColumnFormat.php @@ -358,11 +358,11 @@ public function setOtherTable($other_table) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -370,12 +370,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -400,11 +400,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkColumnWithTableName.php b/lib/Base/LinkColumnWithTableName.php index b5e3a69..6eeb841 100644 --- a/lib/Base/LinkColumnWithTableName.php +++ b/lib/Base/LinkColumnWithTableName.php @@ -506,11 +506,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -518,12 +518,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -548,11 +548,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkFormulaColumn.php b/lib/Base/LinkFormulaColumn.php index ff42718..7f6604f 100644 --- a/lib/Base/LinkFormulaColumn.php +++ b/lib/Base/LinkFormulaColumn.php @@ -470,11 +470,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -482,12 +482,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -512,11 +512,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkFormulaColumnColumnData.php b/lib/Base/LinkFormulaColumnColumnData.php index 14edf79..22d716c 100644 --- a/lib/Base/LinkFormulaColumnColumnData.php +++ b/lib/Base/LinkFormulaColumnColumnData.php @@ -648,11 +648,11 @@ public function setComparisonColumn($comparison_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -660,12 +660,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -690,11 +690,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkFormulaColumnCountLinksFormat.php b/lib/Base/LinkFormulaColumnCountLinksFormat.php index 97234fa..90de5c9 100644 --- a/lib/Base/LinkFormulaColumnCountLinksFormat.php +++ b/lib/Base/LinkFormulaColumnCountLinksFormat.php @@ -390,11 +390,11 @@ public function setLinkColumn($link_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -402,12 +402,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -432,11 +432,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkFormulaColumnFindmaxFormat.php b/lib/Base/LinkFormulaColumnFindmaxFormat.php index 39f6f98..6b47e69 100644 --- a/lib/Base/LinkFormulaColumnFindmaxFormat.php +++ b/lib/Base/LinkFormulaColumnFindmaxFormat.php @@ -464,11 +464,11 @@ public function setComparisonColumn($comparison_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -476,12 +476,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -506,11 +506,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkFormulaColumnFindminFormat.php b/lib/Base/LinkFormulaColumnFindminFormat.php index 2ca4c4e..449aea6 100644 --- a/lib/Base/LinkFormulaColumnFindminFormat.php +++ b/lib/Base/LinkFormulaColumnFindminFormat.php @@ -464,11 +464,11 @@ public function setComparisonColumn($comparison_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -476,12 +476,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -506,11 +506,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkFormulaColumnLookupFormat.php b/lib/Base/LinkFormulaColumnLookupFormat.php index 0ef4857..a38a85b 100644 --- a/lib/Base/LinkFormulaColumnLookupFormat.php +++ b/lib/Base/LinkFormulaColumnLookupFormat.php @@ -461,11 +461,11 @@ public function setLevel2LinkedColumn($level2_linked_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -473,12 +473,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -503,11 +503,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkFormulaColumnRollupFormat.php b/lib/Base/LinkFormulaColumnRollupFormat.php index 353b257..b6897cb 100644 --- a/lib/Base/LinkFormulaColumnRollupFormat.php +++ b/lib/Base/LinkFormulaColumnRollupFormat.php @@ -504,11 +504,11 @@ public function setSummaryMethod($summary_method) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -516,12 +516,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -546,11 +546,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinkFormulaColumnWithTableName.php b/lib/Base/LinkFormulaColumnWithTableName.php index e74f094..a85fccf 100644 --- a/lib/Base/LinkFormulaColumnWithTableName.php +++ b/lib/Base/LinkFormulaColumnWithTableName.php @@ -506,11 +506,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -518,12 +518,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -548,11 +548,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LinksApi.php b/lib/Base/LinksApi.php index 6ce69e3..d95820e 100644 --- a/lib/Base/LinksApi.php +++ b/lib/Base/LinksApi.php @@ -1883,6 +1883,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/ListRowLinks.php b/lib/Base/ListRowLinks.php index becf998..b20be2a 100644 --- a/lib/Base/ListRowLinks.php +++ b/lib/Base/ListRowLinks.php @@ -394,11 +394,11 @@ public function setRows($rows) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -406,12 +406,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -436,11 +436,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ListRowLinksRowsInner.php b/lib/Base/ListRowLinksRowsInner.php index 06ffe3c..df41d52 100644 --- a/lib/Base/ListRowLinksRowsInner.php +++ b/lib/Base/ListRowLinksRowsInner.php @@ -397,11 +397,11 @@ public function setLimit($limit) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -409,12 +409,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -439,11 +439,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LongTextColumn.php b/lib/Base/LongTextColumn.php index d551db3..8a7a7d0 100644 --- a/lib/Base/LongTextColumn.php +++ b/lib/Base/LongTextColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/LongTextColumnWithTableName.php b/lib/Base/LongTextColumnWithTableName.php index 8672be8..35c4519 100644 --- a/lib/Base/LongTextColumnWithTableName.php +++ b/lib/Base/LongTextColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/MatchLinkColumns.php b/lib/Base/MatchLinkColumns.php index 4073952..dbebd56 100644 --- a/lib/Base/MatchLinkColumns.php +++ b/lib/Base/MatchLinkColumns.php @@ -373,11 +373,11 @@ public function setMatchingKeys($matching_keys) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -385,12 +385,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -415,11 +415,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/MatchLinkColumnsMatchingKeysInner.php b/lib/Base/MatchLinkColumnsMatchingKeysInner.php index 8199b31..9670ce9 100644 --- a/lib/Base/MatchLinkColumnsMatchingKeysInner.php +++ b/lib/Base/MatchLinkColumnsMatchingKeysInner.php @@ -351,11 +351,11 @@ public function setTable2Key($table2_key) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/MoveColumn.php b/lib/Base/MoveColumn.php index 8759de9..101119a 100644 --- a/lib/Base/MoveColumn.php +++ b/lib/Base/MoveColumn.php @@ -472,11 +472,11 @@ public function setTargetColumn($target_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -484,12 +484,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -514,11 +514,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/MoveRowsToNormalBackendRequest.php b/lib/Base/MoveRowsToNormalBackendRequest.php index 85ddb93..7e66649 100644 --- a/lib/Base/MoveRowsToNormalBackendRequest.php +++ b/lib/Base/MoveRowsToNormalBackendRequest.php @@ -351,11 +351,11 @@ public function setRowIds($row_ids) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/MtimeColumn.php b/lib/Base/MtimeColumn.php index c7937e8..2ebce7d 100644 --- a/lib/Base/MtimeColumn.php +++ b/lib/Base/MtimeColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/MtimeColumnWithTableName.php b/lib/Base/MtimeColumnWithTableName.php index aa11be6..1c65463 100644 --- a/lib/Base/MtimeColumnWithTableName.php +++ b/lib/Base/MtimeColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/MultipleSelectColumn.php b/lib/Base/MultipleSelectColumn.php index 0872864..b7cc418 100644 --- a/lib/Base/MultipleSelectColumn.php +++ b/lib/Base/MultipleSelectColumn.php @@ -467,11 +467,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -479,12 +479,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -509,11 +509,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/MultipleSelectColumnWithTableName.php b/lib/Base/MultipleSelectColumnWithTableName.php index 09f90f9..f0df713 100644 --- a/lib/Base/MultipleSelectColumnWithTableName.php +++ b/lib/Base/MultipleSelectColumnWithTableName.php @@ -503,11 +503,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -515,12 +515,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -545,11 +545,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/NewView.php b/lib/Base/NewView.php index 45e119e..b1cf8f1 100644 --- a/lib/Base/NewView.php +++ b/lib/Base/NewView.php @@ -427,11 +427,11 @@ public function setIsLocked($is_locked) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -439,12 +439,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -469,11 +469,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/NotificationsApi.php b/lib/Base/NotificationsApi.php index 49f740b..f8330c4 100644 --- a/lib/Base/NotificationsApi.php +++ b/lib/Base/NotificationsApi.php @@ -1593,6 +1593,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/NumberColumn.php b/lib/Base/NumberColumn.php index d85710b..e979475 100644 --- a/lib/Base/NumberColumn.php +++ b/lib/Base/NumberColumn.php @@ -467,11 +467,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -479,12 +479,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -509,11 +509,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/NumberColumnFormat.php b/lib/Base/NumberColumnFormat.php index e816297..f219025 100644 --- a/lib/Base/NumberColumnFormat.php +++ b/lib/Base/NumberColumnFormat.php @@ -500,11 +500,11 @@ public function setThousands($thousands) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -512,12 +512,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -542,11 +542,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/NumberColumnWithTableName.php b/lib/Base/NumberColumnWithTableName.php index 6850fc2..aa672ec 100644 --- a/lib/Base/NumberColumnWithTableName.php +++ b/lib/Base/NumberColumnWithTableName.php @@ -503,11 +503,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -515,12 +515,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -545,11 +545,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/RatingColumn.php b/lib/Base/RatingColumn.php index de9f140..9a9a22e 100644 --- a/lib/Base/RatingColumn.php +++ b/lib/Base/RatingColumn.php @@ -470,11 +470,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -482,12 +482,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -512,11 +512,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/RatingColumnFormat.php b/lib/Base/RatingColumnFormat.php index 6ecdd43..b703fd3 100644 --- a/lib/Base/RatingColumnFormat.php +++ b/lib/Base/RatingColumnFormat.php @@ -449,11 +449,11 @@ public function setRateStyleType($rate_style_type) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -461,12 +461,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -491,11 +491,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/RatingColumnWithTableName.php b/lib/Base/RatingColumnWithTableName.php index 6aefa11..5408e49 100644 --- a/lib/Base/RatingColumnWithTableName.php +++ b/lib/Base/RatingColumnWithTableName.php @@ -506,11 +506,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -518,12 +518,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -548,11 +548,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/RenameColumn.php b/lib/Base/RenameColumn.php index 20c4fee..0ce4da0 100644 --- a/lib/Base/RenameColumn.php +++ b/lib/Base/RenameColumn.php @@ -472,11 +472,11 @@ public function setNewColumnName($new_column_name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -484,12 +484,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -514,11 +514,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/RenameTable.php b/lib/Base/RenameTable.php index 733bed0..44f3634 100644 --- a/lib/Base/RenameTable.php +++ b/lib/Base/RenameTable.php @@ -358,11 +358,11 @@ public function setNewTableName($new_table_name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -370,12 +370,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -400,11 +400,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ResizeColumn.php b/lib/Base/ResizeColumn.php index 4dd4084..f32bf20 100644 --- a/lib/Base/ResizeColumn.php +++ b/lib/Base/ResizeColumn.php @@ -472,11 +472,11 @@ public function setNewColumnWidth($new_column_width) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -484,12 +484,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -514,11 +514,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/RowCommentsApi.php b/lib/Base/RowCommentsApi.php index aa5307f..7a32845 100644 --- a/lib/Base/RowCommentsApi.php +++ b/lib/Base/RowCommentsApi.php @@ -1917,6 +1917,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/RowLinkCreateUpdateDelete.php b/lib/Base/RowLinkCreateUpdateDelete.php index 7a7307e..4d44b7f 100644 --- a/lib/Base/RowLinkCreateUpdateDelete.php +++ b/lib/Base/RowLinkCreateUpdateDelete.php @@ -464,11 +464,11 @@ public function setOtherRowsIdsMap($other_rows_ids_map) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -476,12 +476,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -506,11 +506,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/Rows.php b/lib/Base/Rows.php index 2c08e29..5915354 100644 --- a/lib/Base/Rows.php +++ b/lib/Base/Rows.php @@ -321,11 +321,11 @@ public function setRows($rows) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -333,12 +333,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -363,11 +363,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/RowsApi.php b/lib/Base/RowsApi.php index 47e136b..f86bac3 100644 --- a/lib/Base/RowsApi.php +++ b/lib/Base/RowsApi.php @@ -2585,6 +2585,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/RowsWithTableName.php b/lib/Base/RowsWithTableName.php index 01c78d2..237ace7 100644 --- a/lib/Base/RowsWithTableName.php +++ b/lib/Base/RowsWithTableName.php @@ -357,11 +357,11 @@ public function setRows($rows) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -369,12 +369,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -399,11 +399,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SelectColumnFormat.php b/lib/Base/SelectColumnFormat.php index 86b6ffb..9c12fd1 100644 --- a/lib/Base/SelectColumnFormat.php +++ b/lib/Base/SelectColumnFormat.php @@ -318,11 +318,11 @@ public function setOptions($options) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -330,12 +330,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -360,11 +360,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SelectColumnFormatOptionsInner.php b/lib/Base/SelectColumnFormatOptionsInner.php index 32cfc47..56db4a5 100644 --- a/lib/Base/SelectColumnFormatOptionsInner.php +++ b/lib/Base/SelectColumnFormatOptionsInner.php @@ -490,11 +490,11 @@ public function setBorderColor($border_color) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -502,12 +502,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -532,11 +532,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SendToastNotificationRequest.php b/lib/Base/SendToastNotificationRequest.php index 58be68d..2117923 100644 --- a/lib/Base/SendToastNotificationRequest.php +++ b/lib/Base/SendToastNotificationRequest.php @@ -421,11 +421,11 @@ public function setDetail($detail) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -433,12 +433,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -463,11 +463,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SendToastNotificationRequestDetail.php b/lib/Base/SendToastNotificationRequestDetail.php index b712d13..01872b7 100644 --- a/lib/Base/SendToastNotificationRequestDetail.php +++ b/lib/Base/SendToastNotificationRequestDetail.php @@ -317,11 +317,11 @@ public function setMsg($msg) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SingleSelectColumn.php b/lib/Base/SingleSelectColumn.php index d5ec337..c14944e 100644 --- a/lib/Base/SingleSelectColumn.php +++ b/lib/Base/SingleSelectColumn.php @@ -467,11 +467,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -479,12 +479,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -509,11 +509,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SingleSelectColumnWithTableName.php b/lib/Base/SingleSelectColumnWithTableName.php index 1327aaf..f79a10a 100644 --- a/lib/Base/SingleSelectColumnWithTableName.php +++ b/lib/Base/SingleSelectColumnWithTableName.php @@ -503,11 +503,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -515,12 +515,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -545,11 +545,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SnapshotsApi.php b/lib/Base/SnapshotsApi.php index a0643c7..d70d620 100644 --- a/lib/Base/SnapshotsApi.php +++ b/lib/Base/SnapshotsApi.php @@ -428,6 +428,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/SortsInner.php b/lib/Base/SortsInner.php index 51080ea..1996bd0 100644 --- a/lib/Base/SortsInner.php +++ b/lib/Base/SortsInner.php @@ -351,11 +351,11 @@ public function setSortType($sort_type) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SqlQuery.php b/lib/Base/SqlQuery.php index 31cf931..3504f92 100644 --- a/lib/Base/SqlQuery.php +++ b/lib/Base/SqlQuery.php @@ -422,11 +422,11 @@ public function setServerOnly($server_only) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -434,12 +434,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -464,11 +464,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SqlQueryParametersInner.php b/lib/Base/SqlQueryParametersInner.php index c3bb068..41808c7 100644 --- a/lib/Base/SqlQueryParametersInner.php +++ b/lib/Base/SqlQueryParametersInner.php @@ -289,11 +289,11 @@ public function valid() /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -301,12 +301,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -331,11 +331,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/SqlQueryResponse.php b/lib/Base/SqlQueryResponse.php index de3540e..d6b450d 100644 --- a/lib/Base/SqlQueryResponse.php +++ b/lib/Base/SqlQueryResponse.php @@ -385,11 +385,11 @@ public function setSuccess($success) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/TableNameObject.php b/lib/Base/TableNameObject.php index cfda1dc..802b360 100644 --- a/lib/Base/TableNameObject.php +++ b/lib/Base/TableNameObject.php @@ -320,11 +320,11 @@ public function setTableName($table_name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -332,12 +332,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -362,11 +362,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/TableWithRowIds.php b/lib/Base/TableWithRowIds.php index 5b7d249..0ea5d4b 100644 --- a/lib/Base/TableWithRowIds.php +++ b/lib/Base/TableWithRowIds.php @@ -357,11 +357,11 @@ public function setRowIds($row_ids) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -369,12 +369,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -399,11 +399,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/TablesApi.php b/lib/Base/TablesApi.php index 0ece66c..598ab2a 100644 --- a/lib/Base/TablesApi.php +++ b/lib/Base/TablesApi.php @@ -1301,6 +1301,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Base/TextColumn.php b/lib/Base/TextColumn.php index 838bd41..1202292 100644 --- a/lib/Base/TextColumn.php +++ b/lib/Base/TextColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/TextColumnWithTableName.php b/lib/Base/TextColumnWithTableName.php index 1e01685..26f6c69 100644 --- a/lib/Base/TextColumnWithTableName.php +++ b/lib/Base/TextColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateColumn.php b/lib/Base/UpdateColumn.php index 8d01814..e21ea37 100644 --- a/lib/Base/UpdateColumn.php +++ b/lib/Base/UpdateColumn.php @@ -654,11 +654,11 @@ public function setFrozen($frozen) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -666,12 +666,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -696,11 +696,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateColumnType.php b/lib/Base/UpdateColumnType.php index 114b100..be1e93f 100644 --- a/lib/Base/UpdateColumnType.php +++ b/lib/Base/UpdateColumnType.php @@ -506,11 +506,11 @@ public function setColumnData($column_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -518,12 +518,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -548,11 +548,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateComment.php b/lib/Base/UpdateComment.php index ef473cc..7eca419 100644 --- a/lib/Base/UpdateComment.php +++ b/lib/Base/UpdateComment.php @@ -320,11 +320,11 @@ public function setOptions($options) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -332,12 +332,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -362,11 +362,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateCommentOptions.php b/lib/Base/UpdateCommentOptions.php index 3efc760..3dca002 100644 --- a/lib/Base/UpdateCommentOptions.php +++ b/lib/Base/UpdateCommentOptions.php @@ -385,11 +385,11 @@ public function setResolved($resolved) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateRow.php b/lib/Base/UpdateRow.php index 3edaf8a..a5a84c7 100644 --- a/lib/Base/UpdateRow.php +++ b/lib/Base/UpdateRow.php @@ -404,11 +404,11 @@ public function setRow($row) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -416,12 +416,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -446,11 +446,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateRows.php b/lib/Base/UpdateRows.php index 9bc871a..9de4cde 100644 --- a/lib/Base/UpdateRows.php +++ b/lib/Base/UpdateRows.php @@ -358,11 +358,11 @@ public function setUpdates($updates) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -370,12 +370,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -400,11 +400,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateRowsUpdatesInner.php b/lib/Base/UpdateRowsUpdatesInner.php index 489fc16..dba4938 100644 --- a/lib/Base/UpdateRowsUpdatesInner.php +++ b/lib/Base/UpdateRowsUpdatesInner.php @@ -360,11 +360,11 @@ public function setRow($row) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -372,12 +372,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -402,11 +402,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateSingleMultipleSelectOptions.php b/lib/Base/UpdateSingleMultipleSelectOptions.php index 95a91b6..5f5bafa 100644 --- a/lib/Base/UpdateSingleMultipleSelectOptions.php +++ b/lib/Base/UpdateSingleMultipleSelectOptions.php @@ -428,11 +428,11 @@ public function setReturnOptions($return_options) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -440,12 +440,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -470,11 +470,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php b/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php index e6dca11..9c3b7f5 100644 --- a/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php +++ b/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php @@ -422,11 +422,11 @@ public function setName($name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -434,12 +434,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -464,11 +464,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateView.php b/lib/Base/UpdateView.php index 2d915a2..a02830b 100644 --- a/lib/Base/UpdateView.php +++ b/lib/Base/UpdateView.php @@ -521,11 +521,11 @@ public function setHiddenColumns($hidden_columns) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -533,12 +533,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -563,11 +563,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UpdateViewFiltersInner.php b/lib/Base/UpdateViewFiltersInner.php index 89f6c0b..593f409 100644 --- a/lib/Base/UpdateViewFiltersInner.php +++ b/lib/Base/UpdateViewFiltersInner.php @@ -453,11 +453,11 @@ public function setEmailFilterPredicate($email_filter_predicate) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -465,12 +465,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -495,11 +495,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UrlColumn.php b/lib/Base/UrlColumn.php index 89c50a1..777b759 100644 --- a/lib/Base/UrlColumn.php +++ b/lib/Base/UrlColumn.php @@ -433,11 +433,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -445,12 +445,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -475,11 +475,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/UrlColumnWithTableName.php b/lib/Base/UrlColumnWithTableName.php index 3fbcfa9..10d9c47 100644 --- a/lib/Base/UrlColumnWithTableName.php +++ b/lib/Base/UrlColumnWithTableName.php @@ -469,11 +469,11 @@ public function setAnchorColumn($anchor_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -481,12 +481,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -511,11 +511,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/Base/ViewsApi.php b/lib/Base/ViewsApi.php index fdfd944..8057979 100644 --- a/lib/Base/ViewsApi.php +++ b/lib/Base/ViewsApi.php @@ -1718,6 +1718,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/Configuration.php b/lib/Configuration.php index 521f4ec..81082d1 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -122,6 +122,20 @@ class Configuration */ protected $tempFolderPath; + /** + * Path to a certificate file, for mTLS + * + * @var string + */ + protected $certFile; + + /** + * Path to a key file, for mTLS + * + * @var string + */ + protected $keyFile; + /** * Constructor */ @@ -395,6 +409,49 @@ public function getTempFolderPath() return $this->tempFolderPath; } + /** + * Sets the certificate file path, for mTLS + * + * @return $this + */ + public function setCertFile($certFile) + { + $this->certFile = $certFile; + return $this; + } + + /** + * Gets the certificate file path, for mTLS + * + * @return string Certificate file path + */ + public function getCertFile() + { + return $this->certFile; + } + + /** + * Sets the certificate key path, for mTLS + * + * @return $this + */ + public function setKeyFile($keyFile) + { + $this->keyFile = $keyFile; + return $this; + } + + /** + * Gets the certificate key path, for mTLS + * + * @return string Certificate key path + */ + public function getKeyFile() + { + return $this->keyFile; + } + + /** * Gets the default configuration instance * diff --git a/lib/File/FilesImagesApi.php b/lib/File/FilesImagesApi.php index adf40ac..ef2fb29 100644 --- a/lib/File/FilesImagesApi.php +++ b/lib/File/FilesImagesApi.php @@ -1286,6 +1286,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/File/FilesImagesCustomFolderApi.php b/lib/File/FilesImagesCustomFolderApi.php index db1491b..73de030 100644 --- a/lib/File/FilesImagesCustomFolderApi.php +++ b/lib/File/FilesImagesCustomFolderApi.php @@ -1538,6 +1538,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/PythonScheduler/RunsApi.php b/lib/PythonScheduler/RunsApi.php index 75d8748..f6055fb 100644 --- a/lib/PythonScheduler/RunsApi.php +++ b/lib/PythonScheduler/RunsApi.php @@ -494,6 +494,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/PythonScheduler/StatisticsApi.php b/lib/PythonScheduler/StatisticsApi.php index bf11a6b..8e5bf34 100644 --- a/lib/PythonScheduler/StatisticsApi.php +++ b/lib/PythonScheduler/StatisticsApi.php @@ -1850,6 +1850,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/AddDepartmentRequest.php b/lib/SysAdmin/AddDepartmentRequest.php index 40ddb7c..1c7cf20 100644 --- a/lib/SysAdmin/AddDepartmentRequest.php +++ b/lib/SysAdmin/AddDepartmentRequest.php @@ -351,11 +351,11 @@ public function setParentGroup($parent_group) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/AddNewUserRequest.php b/lib/SysAdmin/AddNewUserRequest.php index 0d278b1..428e312 100644 --- a/lib/SysAdmin/AddNewUserRequest.php +++ b/lib/SysAdmin/AddNewUserRequest.php @@ -453,11 +453,11 @@ public function setIsActive($is_active) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -465,12 +465,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -495,11 +495,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/AddNotificationToUserRequest.php b/lib/SysAdmin/AddNotificationToUserRequest.php index 507ea2d..d0feca4 100644 --- a/lib/SysAdmin/AddNotificationToUserRequest.php +++ b/lib/SysAdmin/AddNotificationToUserRequest.php @@ -351,11 +351,11 @@ public function setUsername($username) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/AddTeamRequest.php b/lib/SysAdmin/AddTeamRequest.php index ef10282..7105a85 100644 --- a/lib/SysAdmin/AddTeamRequest.php +++ b/lib/SysAdmin/AddTeamRequest.php @@ -462,11 +462,11 @@ public function setWithWorkspace($with_workspace) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -474,12 +474,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -504,11 +504,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/AutomationsApi.php b/lib/SysAdmin/AutomationsApi.php index 71ffeca..b4b23d8 100644 --- a/lib/SysAdmin/AutomationsApi.php +++ b/lib/SysAdmin/AutomationsApi.php @@ -1252,6 +1252,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/BasesApi.php b/lib/SysAdmin/BasesApi.php index 10d5ff0..40c6e45 100644 --- a/lib/SysAdmin/BasesApi.php +++ b/lib/SysAdmin/BasesApi.php @@ -2227,6 +2227,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/CommonDatasetApi.php b/lib/SysAdmin/CommonDatasetApi.php index f78d0cf..9b1a576 100644 --- a/lib/SysAdmin/CommonDatasetApi.php +++ b/lib/SysAdmin/CommonDatasetApi.php @@ -1543,6 +1543,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/CreateGroupRequest.php b/lib/SysAdmin/CreateGroupRequest.php index d2ccb2d..e1875a3 100644 --- a/lib/SysAdmin/CreateGroupRequest.php +++ b/lib/SysAdmin/CreateGroupRequest.php @@ -351,11 +351,11 @@ public function setGroupOwner($group_owner) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/DepartmentsApi.php b/lib/SysAdmin/DepartmentsApi.php index 0081a60..118d0ea 100644 --- a/lib/SysAdmin/DepartmentsApi.php +++ b/lib/SysAdmin/DepartmentsApi.php @@ -1251,6 +1251,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/EnforceTwoFactorRequest.php b/lib/SysAdmin/EnforceTwoFactorRequest.php index f321564..b1cc45b 100644 --- a/lib/SysAdmin/EnforceTwoFactorRequest.php +++ b/lib/SysAdmin/EnforceTwoFactorRequest.php @@ -317,11 +317,11 @@ public function setForce2fa($force_2fa) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/ExportApi.php b/lib/SysAdmin/ExportApi.php index 53a6d69..67cdedd 100644 --- a/lib/SysAdmin/ExportApi.php +++ b/lib/SysAdmin/ExportApi.php @@ -380,6 +380,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/FormsApi.php b/lib/SysAdmin/FormsApi.php index 4b58a6e..5604eb0 100644 --- a/lib/SysAdmin/FormsApi.php +++ b/lib/SysAdmin/FormsApi.php @@ -1203,6 +1203,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/GroupsApi.php b/lib/SysAdmin/GroupsApi.php index 0a2f063..a6a2fb4 100644 --- a/lib/SysAdmin/GroupsApi.php +++ b/lib/SysAdmin/GroupsApi.php @@ -1280,6 +1280,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/ListAuditLogs200Response.php b/lib/SysAdmin/ListAuditLogs200Response.php index e5c943d..763db29 100644 --- a/lib/SysAdmin/ListAuditLogs200Response.php +++ b/lib/SysAdmin/ListAuditLogs200Response.php @@ -351,11 +351,11 @@ public function setTotalCount($total_count) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php index 1bc0f6f..1f78ae1 100644 --- a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php +++ b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php @@ -521,11 +521,11 @@ public function setOrgName($org_name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -533,12 +533,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -563,11 +563,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php index 4d8a24c..2778a70 100644 --- a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php +++ b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php @@ -352,11 +352,11 @@ public function setName($name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -364,12 +364,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -394,11 +394,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/LogsApi.php b/lib/SysAdmin/LogsApi.php index 63cd4b5..14f5b1d 100644 --- a/lib/SysAdmin/LogsApi.php +++ b/lib/SysAdmin/LogsApi.php @@ -3120,6 +3120,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/MaintenanceApi.php b/lib/SysAdmin/MaintenanceApi.php index ad0bc6f..c26c49c 100644 --- a/lib/SysAdmin/MaintenanceApi.php +++ b/lib/SysAdmin/MaintenanceApi.php @@ -415,6 +415,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/NotificationsApi.php b/lib/SysAdmin/NotificationsApi.php index 6ba09e7..cc2d516 100644 --- a/lib/SysAdmin/NotificationsApi.php +++ b/lib/SysAdmin/NotificationsApi.php @@ -1252,6 +1252,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/PluginsApi.php b/lib/SysAdmin/PluginsApi.php index 94db9d9..59cca8a 100644 --- a/lib/SysAdmin/PluginsApi.php +++ b/lib/SysAdmin/PluginsApi.php @@ -1440,6 +1440,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/RepairBase200Response.php b/lib/SysAdmin/RepairBase200Response.php index 32002a3..ff54a81 100644 --- a/lib/SysAdmin/RepairBase200Response.php +++ b/lib/SysAdmin/RepairBase200Response.php @@ -317,11 +317,11 @@ public function setSuccess($success) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/SharingLinksApi.php b/lib/SysAdmin/SharingLinksApi.php index 9cb4d68..06403f8 100644 --- a/lib/SysAdmin/SharingLinksApi.php +++ b/lib/SysAdmin/SharingLinksApi.php @@ -1511,6 +1511,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/StatisticsApi.php b/lib/SysAdmin/StatisticsApi.php index 8a2a500..16d5a76 100644 --- a/lib/SysAdmin/StatisticsApi.php +++ b/lib/SysAdmin/StatisticsApi.php @@ -1964,6 +1964,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/SystemInfoCustomizingApi.php b/lib/SysAdmin/SystemInfoCustomizingApi.php index c4277dc..876a488 100644 --- a/lib/SysAdmin/SystemInfoCustomizingApi.php +++ b/lib/SysAdmin/SystemInfoCustomizingApi.php @@ -1480,6 +1480,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/SystemNotificationsApi.php b/lib/SysAdmin/SystemNotificationsApi.php index 811f69a..288d0d5 100644 --- a/lib/SysAdmin/SystemNotificationsApi.php +++ b/lib/SysAdmin/SystemNotificationsApi.php @@ -971,6 +971,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/TeamsApi.php b/lib/SysAdmin/TeamsApi.php index ad4e1cd..5b8c2fa 100644 --- a/lib/SysAdmin/TeamsApi.php +++ b/lib/SysAdmin/TeamsApi.php @@ -3891,6 +3891,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/SysAdmin/TransferGroupRequest.php b/lib/SysAdmin/TransferGroupRequest.php index ccdb69c..1f8ef24 100644 --- a/lib/SysAdmin/TransferGroupRequest.php +++ b/lib/SysAdmin/TransferGroupRequest.php @@ -317,11 +317,11 @@ public function setNewOwner($new_owner) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/UpdateAbuseReportRequest.php b/lib/SysAdmin/UpdateAbuseReportRequest.php index 50095c3..3425abe 100644 --- a/lib/SysAdmin/UpdateAbuseReportRequest.php +++ b/lib/SysAdmin/UpdateAbuseReportRequest.php @@ -317,11 +317,11 @@ public function setHandled($handled) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/UpdateAdminsRole.php b/lib/SysAdmin/UpdateAdminsRole.php index cd1b69b..c47c46e 100644 --- a/lib/SysAdmin/UpdateAdminsRole.php +++ b/lib/SysAdmin/UpdateAdminsRole.php @@ -351,11 +351,11 @@ public function setRole($role) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/UpdateGeneralSettingsRequest.php b/lib/SysAdmin/UpdateGeneralSettingsRequest.php index 6030fa4..f0c4e13 100644 --- a/lib/SysAdmin/UpdateGeneralSettingsRequest.php +++ b/lib/SysAdmin/UpdateGeneralSettingsRequest.php @@ -793,11 +793,11 @@ public function setEnableSignup($enable_signup) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -805,12 +805,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -835,11 +835,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/UpdateTeamRequest.php b/lib/SysAdmin/UpdateTeamRequest.php index d006222..1018111 100644 --- a/lib/SysAdmin/UpdateTeamRequest.php +++ b/lib/SysAdmin/UpdateTeamRequest.php @@ -453,11 +453,11 @@ public function setAssetQuotaMb($asset_quota_mb) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -465,12 +465,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -495,11 +495,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/UpdateTeamUserRequest.php b/lib/SysAdmin/UpdateTeamUserRequest.php index 8a2baa5..1a62008 100644 --- a/lib/SysAdmin/UpdateTeamUserRequest.php +++ b/lib/SysAdmin/UpdateTeamUserRequest.php @@ -453,11 +453,11 @@ public function setQuotaTotal($quota_total) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -465,12 +465,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -495,11 +495,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/UpdateUserRequest.php b/lib/SysAdmin/UpdateUserRequest.php index f0f4d4d..996f57e 100644 --- a/lib/SysAdmin/UpdateUserRequest.php +++ b/lib/SysAdmin/UpdateUserRequest.php @@ -725,11 +725,11 @@ public function setAssetQuotaMb($asset_quota_mb) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -737,12 +737,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -767,11 +767,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/SysAdmin/UsersApi.php b/lib/SysAdmin/UsersApi.php index 107a5ef..ecde698 100644 --- a/lib/SysAdmin/UsersApi.php +++ b/lib/SysAdmin/UsersApi.php @@ -4320,6 +4320,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/TeamAdmin/ActivitiesLogsApi.php b/lib/TeamAdmin/ActivitiesLogsApi.php index 6f35fa8..3611024 100644 --- a/lib/TeamAdmin/ActivitiesLogsApi.php +++ b/lib/TeamAdmin/ActivitiesLogsApi.php @@ -2503,6 +2503,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/TeamAdmin/BasesApi.php b/lib/TeamAdmin/BasesApi.php index c5fcfb0..8a3dc39 100644 --- a/lib/TeamAdmin/BasesApi.php +++ b/lib/TeamAdmin/BasesApi.php @@ -3813,6 +3813,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/TeamAdmin/CustomizingApi.php b/lib/TeamAdmin/CustomizingApi.php index 8913e21..9b8119f 100644 --- a/lib/TeamAdmin/CustomizingApi.php +++ b/lib/TeamAdmin/CustomizingApi.php @@ -887,6 +887,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/TeamAdmin/EnforceTwofactorRequest.php b/lib/TeamAdmin/EnforceTwofactorRequest.php index 28a036f..78a25c0 100644 --- a/lib/TeamAdmin/EnforceTwofactorRequest.php +++ b/lib/TeamAdmin/EnforceTwofactorRequest.php @@ -317,11 +317,11 @@ public function setForce2fa($force_2fa) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/TeamAdmin/GroupsApi.php b/lib/TeamAdmin/GroupsApi.php index 938d274..2a5413f 100644 --- a/lib/TeamAdmin/GroupsApi.php +++ b/lib/TeamAdmin/GroupsApi.php @@ -3533,6 +3533,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/TeamAdmin/InfoSettingsApi.php b/lib/TeamAdmin/InfoSettingsApi.php index 6bc73cf..3d2f246 100644 --- a/lib/TeamAdmin/InfoSettingsApi.php +++ b/lib/TeamAdmin/InfoSettingsApi.php @@ -1472,6 +1472,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/TeamAdmin/SAMLApi.php b/lib/TeamAdmin/SAMLApi.php index 732beea..80631ef 100644 --- a/lib/TeamAdmin/SAMLApi.php +++ b/lib/TeamAdmin/SAMLApi.php @@ -1195,6 +1195,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/TeamAdmin/SharingLinksApi.php b/lib/TeamAdmin/SharingLinksApi.php index b2208df..c9bec6b 100644 --- a/lib/TeamAdmin/SharingLinksApi.php +++ b/lib/TeamAdmin/SharingLinksApi.php @@ -2502,6 +2502,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/TeamAdmin/StatisticsApi.php b/lib/TeamAdmin/StatisticsApi.php index c6a15ff..e1b565d 100644 --- a/lib/TeamAdmin/StatisticsApi.php +++ b/lib/TeamAdmin/StatisticsApi.php @@ -2237,6 +2237,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php b/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php index 805c8a2..875edf1 100644 --- a/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php +++ b/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php @@ -320,11 +320,11 @@ public function setIsAdmin($is_admin) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -332,12 +332,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -362,11 +362,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/TeamAdmin/UpdateGroupRequest.php b/lib/TeamAdmin/UpdateGroupRequest.php index 55808f3..df71dbe 100644 --- a/lib/TeamAdmin/UpdateGroupRequest.php +++ b/lib/TeamAdmin/UpdateGroupRequest.php @@ -351,11 +351,11 @@ public function setNewGroupName($new_group_name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/TeamAdmin/UpdateInviteLinkRequest.php b/lib/TeamAdmin/UpdateInviteLinkRequest.php index ee37bf6..a45006a 100644 --- a/lib/TeamAdmin/UpdateInviteLinkRequest.php +++ b/lib/TeamAdmin/UpdateInviteLinkRequest.php @@ -385,11 +385,11 @@ public function setExpireDays($expire_days) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/TeamAdmin/UsersApi.php b/lib/TeamAdmin/UsersApi.php index a900748..bcf196d 100644 --- a/lib/TeamAdmin/UsersApi.php +++ b/lib/TeamAdmin/UsersApi.php @@ -2636,6 +2636,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/Action.php b/lib/User/Action.php index 4b854f8..ca8d65f 100644 --- a/lib/User/Action.php +++ b/lib/User/Action.php @@ -351,11 +351,11 @@ public function setUsers($users) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionAddRecord.php b/lib/User/ActionAddRecord.php index e865a40..c0f86c7 100644 --- a/lib/User/ActionAddRecord.php +++ b/lib/User/ActionAddRecord.php @@ -417,11 +417,11 @@ public function setId($_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionAddRecordToOtherTable.php b/lib/User/ActionAddRecordToOtherTable.php index 5a6c17e..c701fba 100644 --- a/lib/User/ActionAddRecordToOtherTable.php +++ b/lib/User/ActionAddRecordToOtherTable.php @@ -451,11 +451,11 @@ public function setRow($row) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -463,12 +463,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -493,11 +493,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionAddRecordToOtherTableRow.php b/lib/User/ActionAddRecordToOtherTableRow.php index 071b2c9..3b2aa85 100644 --- a/lib/User/ActionAddRecordToOtherTableRow.php +++ b/lib/User/ActionAddRecordToOtherTableRow.php @@ -289,11 +289,11 @@ public function valid() /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -301,12 +301,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -331,11 +331,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionCalculateAccumulatedValue.php b/lib/User/ActionCalculateAccumulatedValue.php index c9a4b21..6015f90 100644 --- a/lib/User/ActionCalculateAccumulatedValue.php +++ b/lib/User/ActionCalculateAccumulatedValue.php @@ -451,11 +451,11 @@ public function setCalculateColumn($calculate_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -463,12 +463,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -493,11 +493,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionCalculateDelta.php b/lib/User/ActionCalculateDelta.php index 64d129f..08f49ab 100644 --- a/lib/User/ActionCalculateDelta.php +++ b/lib/User/ActionCalculateDelta.php @@ -451,11 +451,11 @@ public function setCalculateColumn($calculate_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -463,12 +463,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -493,11 +493,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionCalculatePercentage.php b/lib/User/ActionCalculatePercentage.php index fc41d82..bcf9a2b 100644 --- a/lib/User/ActionCalculatePercentage.php +++ b/lib/User/ActionCalculatePercentage.php @@ -451,11 +451,11 @@ public function setCalculateColumn($calculate_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -463,12 +463,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -493,11 +493,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionCalculateRank.php b/lib/User/ActionCalculateRank.php index b3965f0..8d38705 100644 --- a/lib/User/ActionCalculateRank.php +++ b/lib/User/ActionCalculateRank.php @@ -451,11 +451,11 @@ public function setCalculateColumn($calculate_column) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -463,12 +463,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -493,11 +493,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionExtractUserName.php b/lib/User/ActionExtractUserName.php index b670118..c649807 100644 --- a/lib/User/ActionExtractUserName.php +++ b/lib/User/ActionExtractUserName.php @@ -451,11 +451,11 @@ public function setResultColumnKey($result_column_key) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -463,12 +463,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -493,11 +493,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionLinkRecord.php b/lib/User/ActionLinkRecord.php index c36f9de..7bb00be 100644 --- a/lib/User/ActionLinkRecord.php +++ b/lib/User/ActionLinkRecord.php @@ -485,11 +485,11 @@ public function setMatchConditions($match_conditions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -497,12 +497,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -527,11 +527,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionLinkRecordMatchConditionsInner.php b/lib/User/ActionLinkRecordMatchConditionsInner.php index 55ceac0..01f129f 100644 --- a/lib/User/ActionLinkRecordMatchConditionsInner.php +++ b/lib/User/ActionLinkRecordMatchConditionsInner.php @@ -351,11 +351,11 @@ public function setOtherColumnKey($other_column_key) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionLockRecord.php b/lib/User/ActionLockRecord.php index b80c6f6..7601d3d 100644 --- a/lib/User/ActionLockRecord.php +++ b/lib/User/ActionLockRecord.php @@ -449,11 +449,11 @@ public function setId($_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -461,12 +461,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -491,11 +491,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionLookupAndCopy.php b/lib/User/ActionLookupAndCopy.php index c2814cd..aa4fa71 100644 --- a/lib/User/ActionLookupAndCopy.php +++ b/lib/User/ActionLookupAndCopy.php @@ -485,11 +485,11 @@ public function setFillColumnConditions($fill_column_conditions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -497,12 +497,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -527,11 +527,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php b/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php index d9c40d0..549a0b6 100644 --- a/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php +++ b/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php @@ -351,11 +351,11 @@ public function setCopyToColumnKey($copy_to_column_key) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionLookupAndCopyTableCondition.php b/lib/User/ActionLookupAndCopyTableCondition.php index 1b89fc1..f7af732 100644 --- a/lib/User/ActionLookupAndCopyTableCondition.php +++ b/lib/User/ActionLookupAndCopyTableCondition.php @@ -351,11 +351,11 @@ public function setCopyToTableId($copy_to_table_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionNotify.php b/lib/User/ActionNotify.php index 2790f3b..9849d79 100644 --- a/lib/User/ActionNotify.php +++ b/lib/User/ActionNotify.php @@ -485,11 +485,11 @@ public function setUsersColumnKey($users_column_key) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -497,12 +497,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -527,11 +527,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php b/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php index efe27b5..983d43f 100644 --- a/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php +++ b/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php @@ -1075,11 +1075,11 @@ public function setRepoId($repo_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -1087,12 +1087,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -1117,11 +1117,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionRunPeriodicallyInner.php b/lib/User/ActionRunPeriodicallyInner.php index 9653500..d794328 100644 --- a/lib/User/ActionRunPeriodicallyInner.php +++ b/lib/User/ActionRunPeriodicallyInner.php @@ -1185,11 +1185,11 @@ public function setFillColumnConditions($fill_column_conditions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -1197,12 +1197,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -1227,11 +1227,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionRunPeriodicallyOnRecordsInner.php b/lib/User/ActionRunPeriodicallyOnRecordsInner.php index 389fed1..bd673e2 100644 --- a/lib/User/ActionRunPeriodicallyOnRecordsInner.php +++ b/lib/User/ActionRunPeriodicallyOnRecordsInner.php @@ -691,11 +691,11 @@ public function setIsLocked($is_locked) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -703,12 +703,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -733,11 +733,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionRunPythonScript.php b/lib/User/ActionRunPythonScript.php index 27bb8d6..cdaad98 100644 --- a/lib/User/ActionRunPythonScript.php +++ b/lib/User/ActionRunPythonScript.php @@ -553,11 +553,11 @@ public function setRepoId($repo_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -565,12 +565,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -595,11 +595,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionSendEmail.php b/lib/User/ActionSendEmail.php index a3d08e0..98b8a51 100644 --- a/lib/User/ActionSendEmail.php +++ b/lib/User/ActionSendEmail.php @@ -553,11 +553,11 @@ public function setId($_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -565,12 +565,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -595,11 +595,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActionUpdateRecord.php b/lib/User/ActionUpdateRecord.php index e839ead..62392c3 100644 --- a/lib/User/ActionUpdateRecord.php +++ b/lib/User/ActionUpdateRecord.php @@ -417,11 +417,11 @@ public function setId($_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ActivitiesLogsApi.php b/lib/User/ActivitiesLogsApi.php index 197fe00..e523991 100644 --- a/lib/User/ActivitiesLogsApi.php +++ b/lib/User/ActivitiesLogsApi.php @@ -1099,6 +1099,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/AddEmailAccountRequest.php b/lib/User/AddEmailAccountRequest.php index d2afba0..47bb1e7 100644 --- a/lib/User/AddEmailAccountRequest.php +++ b/lib/User/AddEmailAccountRequest.php @@ -385,11 +385,11 @@ public function setDetail($detail) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/AddGroupMemberRequest.php b/lib/User/AddGroupMemberRequest.php index 7282479..eed60cb 100644 --- a/lib/User/AddGroupMemberRequest.php +++ b/lib/User/AddGroupMemberRequest.php @@ -317,11 +317,11 @@ public function setEmail($email) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/AddNotificationRuleRequest.php b/lib/User/AddNotificationRuleRequest.php index 89027f7..dfaa2a1 100644 --- a/lib/User/AddNotificationRuleRequest.php +++ b/lib/User/AddNotificationRuleRequest.php @@ -428,11 +428,11 @@ public function setAction($action) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -440,12 +440,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -470,11 +470,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/AddNotificationRuleRequestAction.php b/lib/User/AddNotificationRuleRequestAction.php index bfa0c7e..6f731bc 100644 --- a/lib/User/AddNotificationRuleRequestAction.php +++ b/lib/User/AddNotificationRuleRequestAction.php @@ -454,11 +454,11 @@ public function setDefaultMsg($default_msg) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -466,12 +466,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -496,11 +496,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/AddNotificationRuleRequestTrigger.php b/lib/User/AddNotificationRuleRequestTrigger.php index 2331d83..1fdf804 100644 --- a/lib/User/AddNotificationRuleRequestTrigger.php +++ b/lib/User/AddNotificationRuleRequestTrigger.php @@ -769,11 +769,11 @@ public function setFilterConjunction($filter_conjunction) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -781,12 +781,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -811,11 +811,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/AddPassword.php b/lib/User/AddPassword.php index 8914c71..e8c82e4 100644 --- a/lib/User/AddPassword.php +++ b/lib/User/AddPassword.php @@ -417,11 +417,11 @@ public function setPassword($password) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/AddRecordToOtherTableRowDate.php b/lib/User/AddRecordToOtherTableRowDate.php index 36f3b94..c8adcc6 100644 --- a/lib/User/AddRecordToOtherTableRowDate.php +++ b/lib/User/AddRecordToOtherTableRowDate.php @@ -289,11 +289,11 @@ public function valid() /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -301,12 +301,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -331,11 +331,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/AddRecordToOtherTableRowDateTime.php b/lib/User/AddRecordToOtherTableRowDateTime.php index 3fa5409..c5f04fd 100644 --- a/lib/User/AddRecordToOtherTableRowDateTime.php +++ b/lib/User/AddRecordToOtherTableRowDateTime.php @@ -289,11 +289,11 @@ public function valid() /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -301,12 +301,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -331,11 +331,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/AppsApi.php b/lib/User/AppsApi.php index 6b75ed2..15b219d 100644 --- a/lib/User/AppsApi.php +++ b/lib/User/AppsApi.php @@ -1330,6 +1330,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/AttachmentApi.php b/lib/User/AttachmentApi.php index 86eb7be..36486de 100644 --- a/lib/User/AttachmentApi.php +++ b/lib/User/AttachmentApi.php @@ -2213,6 +2213,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/AutomationsApi.php b/lib/User/AutomationsApi.php index 63cfb3f..7841d4a 100644 --- a/lib/User/AutomationsApi.php +++ b/lib/User/AutomationsApi.php @@ -1401,6 +1401,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/Base.php b/lib/User/Base.php index 7b3315c..9537b21 100644 --- a/lib/User/Base.php +++ b/lib/User/Base.php @@ -317,11 +317,11 @@ public function setTable($table) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/BasePasswordRequest.php b/lib/User/BasePasswordRequest.php index 1974dab..3917d34 100644 --- a/lib/User/BasePasswordRequest.php +++ b/lib/User/BasePasswordRequest.php @@ -451,11 +451,11 @@ public function setNewPassword($new_password) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -463,12 +463,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -493,11 +493,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/BaseTable.php b/lib/User/BaseTable.php index 84f0eef..898ac3a 100644 --- a/lib/User/BaseTable.php +++ b/lib/User/BaseTable.php @@ -678,11 +678,11 @@ public function setInStorage($in_storage) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -690,12 +690,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -720,11 +720,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/BasesApi.php b/lib/User/BasesApi.php index e1a5ce7..a7d41f4 100644 --- a/lib/User/BasesApi.php +++ b/lib/User/BasesApi.php @@ -5593,6 +5593,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/ChooseADateColumnValue.php b/lib/User/ChooseADateColumnValue.php index cc2ba9f..be25d9b 100644 --- a/lib/User/ChooseADateColumnValue.php +++ b/lib/User/ChooseADateColumnValue.php @@ -383,11 +383,11 @@ public function setDateColumnKey($date_column_key) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -395,12 +395,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -425,11 +425,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/CommonDatasetApi.php b/lib/User/CommonDatasetApi.php index 6f09b7a..89db511 100644 --- a/lib/User/CommonDatasetApi.php +++ b/lib/User/CommonDatasetApi.php @@ -3036,6 +3036,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/Contains.php b/lib/User/Contains.php index bf07876..cc78371 100644 --- a/lib/User/Contains.php +++ b/lib/User/Contains.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ContainsFilterTerm.php b/lib/User/ContainsFilterTerm.php index 034fb1e..479f641 100644 --- a/lib/User/ContainsFilterTerm.php +++ b/lib/User/ContainsFilterTerm.php @@ -289,11 +289,11 @@ public function valid() /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -301,12 +301,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -331,11 +331,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/CreateAutomationRuleRequest.php b/lib/User/CreateAutomationRuleRequest.php index 63a454a..c94b165 100644 --- a/lib/User/CreateAutomationRuleRequest.php +++ b/lib/User/CreateAutomationRuleRequest.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/CreateGroupRequest.php b/lib/User/CreateGroupRequest.php index 3e0678d..c40ecc4 100644 --- a/lib/User/CreateGroupRequest.php +++ b/lib/User/CreateGroupRequest.php @@ -317,11 +317,11 @@ public function setName($name) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/DepartmentsApi.php b/lib/User/DepartmentsApi.php index 78a8a57..8ea22d6 100644 --- a/lib/User/DepartmentsApi.php +++ b/lib/User/DepartmentsApi.php @@ -670,6 +670,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/Detail.php b/lib/User/Detail.php index 87b757f..630adac 100644 --- a/lib/User/Detail.php +++ b/lib/User/Detail.php @@ -419,11 +419,11 @@ public function setPassword($password) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -431,12 +431,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -461,11 +461,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/DoesNotContain.php b/lib/User/DoesNotContain.php index 18850ac..c2edd2c 100644 --- a/lib/User/DoesNotContain.php +++ b/lib/User/DoesNotContain.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/EmailAccountsApi.php b/lib/User/EmailAccountsApi.php index 5c6f2b9..94eefe3 100644 --- a/lib/User/EmailAccountsApi.php +++ b/lib/User/EmailAccountsApi.php @@ -1836,6 +1836,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/Equal.php b/lib/User/Equal.php index b3f32ca..5a57f11 100644 --- a/lib/User/Equal.php +++ b/lib/User/Equal.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/FiltersInner.php b/lib/User/FiltersInner.php index de8d972..3d065a1 100644 --- a/lib/User/FiltersInner.php +++ b/lib/User/FiltersInner.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/FormsApi.php b/lib/User/FormsApi.php index 29ee7f2..d90da08 100644 --- a/lib/User/FormsApi.php +++ b/lib/User/FormsApi.php @@ -2121,6 +2121,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/GetBigDataOperationLogs200Response.php b/lib/User/GetBigDataOperationLogs200Response.php index 7d0f9ba..c8cf586 100644 --- a/lib/User/GetBigDataOperationLogs200Response.php +++ b/lib/User/GetBigDataOperationLogs200Response.php @@ -317,11 +317,11 @@ public function setOperations($operations) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php b/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php index cb49997..c88d0ed 100644 --- a/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php +++ b/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php @@ -453,11 +453,11 @@ public function setOperation($operation) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -465,12 +465,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -495,11 +495,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php b/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php index 0742f96..793105b 100644 --- a/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php +++ b/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php @@ -488,11 +488,11 @@ public function setRowData($row_data) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -500,12 +500,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -530,11 +530,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/Greater.php b/lib/User/Greater.php index 0f61525..069a828 100644 --- a/lib/User/Greater.php +++ b/lib/User/Greater.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/GreaterOrEqual.php b/lib/User/GreaterOrEqual.php index 95e77a9..8088d59 100644 --- a/lib/User/GreaterOrEqual.php +++ b/lib/User/GreaterOrEqual.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/GroupsWorkspacesApi.php b/lib/User/GroupsWorkspacesApi.php index 70b5e60..47c9cfb 100644 --- a/lib/User/GroupsWorkspacesApi.php +++ b/lib/User/GroupsWorkspacesApi.php @@ -4112,6 +4112,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/HasAllOf.php b/lib/User/HasAllOf.php index 674689f..60e8be2 100644 --- a/lib/User/HasAllOf.php +++ b/lib/User/HasAllOf.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/HasAnyOf.php b/lib/User/HasAnyOf.php index 4e092f6..ae2715e 100644 --- a/lib/User/HasAnyOf.php +++ b/lib/User/HasAnyOf.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/HasNoneOf.php b/lib/User/HasNoneOf.php index e507f23..0c90909 100644 --- a/lib/User/HasNoneOf.php +++ b/lib/User/HasNoneOf.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ImportBasefromDTableFile200Response.php b/lib/User/ImportBasefromDTableFile200Response.php index c9da8f5..34bdac5 100644 --- a/lib/User/ImportBasefromDTableFile200Response.php +++ b/lib/User/ImportBasefromDTableFile200Response.php @@ -351,11 +351,11 @@ public function setTable($table) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ImportBasefromDTableFile200ResponseTable.php b/lib/User/ImportBasefromDTableFile200ResponseTable.php index f28067f..9fede31 100644 --- a/lib/User/ImportBasefromDTableFile200ResponseTable.php +++ b/lib/User/ImportBasefromDTableFile200ResponseTable.php @@ -678,11 +678,11 @@ public function setInStorage($in_storage) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -690,12 +690,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -720,11 +720,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ImportExportApi.php b/lib/User/ImportExportApi.php index 1e9435d..8dc90d4 100644 --- a/lib/User/ImportExportApi.php +++ b/lib/User/ImportExportApi.php @@ -3109,6 +3109,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/ImportUsersToAppRequest.php b/lib/User/ImportUsersToAppRequest.php index 08c3efc..63869bf 100644 --- a/lib/User/ImportUsersToAppRequest.php +++ b/lib/User/ImportUsersToAppRequest.php @@ -317,11 +317,11 @@ public function setUsersInfo($users_info) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IncludeMe.php b/lib/User/IncludeMe.php index 1a5e903..3aa2980 100644 --- a/lib/User/IncludeMe.php +++ b/lib/User/IncludeMe.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/Is.php b/lib/User/Is.php index 3543dec..2c7913d 100644 --- a/lib/User/Is.php +++ b/lib/User/Is.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsAnyOf.php b/lib/User/IsAnyOf.php index c31a1aa..d591e59 100644 --- a/lib/User/IsAnyOf.php +++ b/lib/User/IsAnyOf.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsCurrentUserID.php b/lib/User/IsCurrentUserID.php index 570775b..6d8a0d5 100644 --- a/lib/User/IsCurrentUserID.php +++ b/lib/User/IsCurrentUserID.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsEmpty.php b/lib/User/IsEmpty.php index af05880..e63cc68 100644 --- a/lib/User/IsEmpty.php +++ b/lib/User/IsEmpty.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsExactly.php b/lib/User/IsExactly.php index bc2651d..f836bd9 100644 --- a/lib/User/IsExactly.php +++ b/lib/User/IsExactly.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsInactive.php b/lib/User/IsInactive.php index e239616..3fe3be9 100644 --- a/lib/User/IsInactive.php +++ b/lib/User/IsInactive.php @@ -320,11 +320,11 @@ public function setIsInactive($is_inactive) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -332,12 +332,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -362,11 +362,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsNoneOf.php b/lib/User/IsNoneOf.php index a2eb8c5..a473871 100644 --- a/lib/User/IsNoneOf.php +++ b/lib/User/IsNoneOf.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsNot.php b/lib/User/IsNot.php index f9c4c5b..69d0953 100644 --- a/lib/User/IsNot.php +++ b/lib/User/IsNot.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsNotEmpty.php b/lib/User/IsNotEmpty.php index 13c593b..4119225 100644 --- a/lib/User/IsNotEmpty.php +++ b/lib/User/IsNotEmpty.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinTheNextMonth.php b/lib/User/IsWithinTheNextMonth.php index b60ac4f..140f1ac 100644 --- a/lib/User/IsWithinTheNextMonth.php +++ b/lib/User/IsWithinTheNextMonth.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinTheNextNumberOfDays.php b/lib/User/IsWithinTheNextNumberOfDays.php index e05ceec..81d7b83 100644 --- a/lib/User/IsWithinTheNextNumberOfDays.php +++ b/lib/User/IsWithinTheNextNumberOfDays.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinTheNextWeek.php b/lib/User/IsWithinTheNextWeek.php index d254e85..3ef4c32 100644 --- a/lib/User/IsWithinTheNextWeek.php +++ b/lib/User/IsWithinTheNextWeek.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinTheNextYear.php b/lib/User/IsWithinTheNextYear.php index 045aca7..b4277af 100644 --- a/lib/User/IsWithinTheNextYear.php +++ b/lib/User/IsWithinTheNextYear.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinThePastMonth.php b/lib/User/IsWithinThePastMonth.php index 744a575..a112151 100644 --- a/lib/User/IsWithinThePastMonth.php +++ b/lib/User/IsWithinThePastMonth.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinThePastNumberOfDays.php b/lib/User/IsWithinThePastNumberOfDays.php index 5f80af1..7db2ea7 100644 --- a/lib/User/IsWithinThePastNumberOfDays.php +++ b/lib/User/IsWithinThePastNumberOfDays.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinThePastWeek.php b/lib/User/IsWithinThePastWeek.php index a9d417a..e54513b 100644 --- a/lib/User/IsWithinThePastWeek.php +++ b/lib/User/IsWithinThePastWeek.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinThePastYear.php b/lib/User/IsWithinThePastYear.php index 0eaaa61..4061c7c 100644 --- a/lib/User/IsWithinThePastYear.php +++ b/lib/User/IsWithinThePastYear.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinThisMonth.php b/lib/User/IsWithinThisMonth.php index 903e5ab..e50624c 100644 --- a/lib/User/IsWithinThisMonth.php +++ b/lib/User/IsWithinThisMonth.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinThisWeek.php b/lib/User/IsWithinThisWeek.php index 0e89b98..bbd5a81 100644 --- a/lib/User/IsWithinThisWeek.php +++ b/lib/User/IsWithinThisWeek.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/IsWithinThisYear.php b/lib/User/IsWithinThisYear.php index 5a26f24..6b87465 100644 --- a/lib/User/IsWithinThisYear.php +++ b/lib/User/IsWithinThisYear.php @@ -483,11 +483,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -495,12 +495,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -525,11 +525,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/Less.php b/lib/User/Less.php index cf4f6c7..8c03a5a 100644 --- a/lib/User/Less.php +++ b/lib/User/Less.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/LessOrEqual.php b/lib/User/LessOrEqual.php index 90520f7..28095a0 100644 --- a/lib/User/LessOrEqual.php +++ b/lib/User/LessOrEqual.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/ListPublicUserInfosRequest.php b/lib/User/ListPublicUserInfosRequest.php index 3458e3d..91c0176 100644 --- a/lib/User/ListPublicUserInfosRequest.php +++ b/lib/User/ListPublicUserInfosRequest.php @@ -317,11 +317,11 @@ public function setUserIdList($user_id_list) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/MaintenanceApi.php b/lib/User/MaintenanceApi.php index 29e575c..1bfa61d 100644 --- a/lib/User/MaintenanceApi.php +++ b/lib/User/MaintenanceApi.php @@ -415,6 +415,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/ModifyPassword.php b/lib/User/ModifyPassword.php index e160e21..5f6404c 100644 --- a/lib/User/ModifyPassword.php +++ b/lib/User/ModifyPassword.php @@ -451,11 +451,11 @@ public function setNewPassword($new_password) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -463,12 +463,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -493,11 +493,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/NotEqual.php b/lib/User/NotEqual.php index d0ac1eb..7729c37 100644 --- a/lib/User/NotEqual.php +++ b/lib/User/NotEqual.php @@ -417,11 +417,11 @@ public function setFilterTerm($filter_term) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/NotificationsApi.php b/lib/User/NotificationsApi.php index 08c3ba8..d8b7c68 100644 --- a/lib/User/NotificationsApi.php +++ b/lib/User/NotificationsApi.php @@ -1656,6 +1656,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/RecordsMeetSpecificConditionsAfterModification.php b/lib/User/RecordsMeetSpecificConditionsAfterModification.php index a84045e..aa0f739 100644 --- a/lib/User/RecordsMeetSpecificConditionsAfterModification.php +++ b/lib/User/RecordsMeetSpecificConditionsAfterModification.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/RepairBase200Response.php b/lib/User/RepairBase200Response.php index 3de0d23..793c85e 100644 --- a/lib/User/RepairBase200Response.php +++ b/lib/User/RepairBase200Response.php @@ -317,11 +317,11 @@ public function setSuccess($success) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/RowAdded.php b/lib/User/RowAdded.php index 810fcb1..3643bfa 100644 --- a/lib/User/RowAdded.php +++ b/lib/User/RowAdded.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/RunPeriodically.php b/lib/User/RunPeriodically.php index 7d5af1c..dccd4dd 100644 --- a/lib/User/RunPeriodically.php +++ b/lib/User/RunPeriodically.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/RunPeriodicallyOnRecordsMeetConditions.php b/lib/User/RunPeriodicallyOnRecordsMeetConditions.php index 2f35192..75c5047 100644 --- a/lib/User/RunPeriodicallyOnRecordsMeetConditions.php +++ b/lib/User/RunPeriodicallyOnRecordsMeetConditions.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/SharingApi.php b/lib/User/SharingApi.php index 09e0b39..06e8c21 100644 --- a/lib/User/SharingApi.php +++ b/lib/User/SharingApi.php @@ -7517,6 +7517,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/SharingLinksApi.php b/lib/User/SharingLinksApi.php index 81be62e..1677295 100644 --- a/lib/User/SharingLinksApi.php +++ b/lib/User/SharingLinksApi.php @@ -2667,6 +2667,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/SnapshotsApi.php b/lib/User/SnapshotsApi.php index 37b8dd4..4a3c3b2 100644 --- a/lib/User/SnapshotsApi.php +++ b/lib/User/SnapshotsApi.php @@ -1404,6 +1404,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/SpecificDateValue.php b/lib/User/SpecificDateValue.php index 274d0e6..a58d0fd 100644 --- a/lib/User/SpecificDateValue.php +++ b/lib/User/SpecificDateValue.php @@ -383,11 +383,11 @@ public function setValue($value) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -395,12 +395,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -425,11 +425,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/SystemNotificationsApi.php b/lib/User/SystemNotificationsApi.php index 3dac828..863e5c2 100644 --- a/lib/User/SystemNotificationsApi.php +++ b/lib/User/SystemNotificationsApi.php @@ -667,6 +667,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/TheDayRunningTheTaskValue.php b/lib/User/TheDayRunningTheTaskValue.php index 0be31cc..b1e8626 100644 --- a/lib/User/TheDayRunningTheTaskValue.php +++ b/lib/User/TheDayRunningTheTaskValue.php @@ -481,11 +481,11 @@ public function setOffsetBy($offset_by) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -493,12 +493,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -523,11 +523,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/Trigger.php b/lib/User/Trigger.php index 25d9597..52b6c68 100644 --- a/lib/User/Trigger.php +++ b/lib/User/Trigger.php @@ -419,11 +419,11 @@ public function setViewId($view_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -431,12 +431,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -461,11 +461,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php b/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php index 3d6839b..730f243 100644 --- a/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php +++ b/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php @@ -555,11 +555,11 @@ public function setWatchAllColumns($watch_all_columns) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -567,12 +567,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -597,11 +597,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRowAdded.php b/lib/User/TriggerRowAdded.php index eeebb2b..cc95496 100644 --- a/lib/User/TriggerRowAdded.php +++ b/lib/User/TriggerRowAdded.php @@ -587,11 +587,11 @@ public function setWatchAllColumns($watch_all_columns) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -599,12 +599,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -629,11 +629,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php index 261e69b..9511549 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php index 004368d..ddd827e 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php @@ -555,11 +555,11 @@ public function setNotifyHour($notify_hour) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -567,12 +567,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -597,11 +597,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php index 011c8f7..5c9b7ad 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php index a6120ad..8d070ff 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php @@ -589,11 +589,11 @@ public function setNotifyMonthHour($notify_month_hour) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -601,12 +601,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -631,11 +631,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php index 594180b..70ea989 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php index 6717047..b3453ad 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php @@ -589,11 +589,11 @@ public function setNotifyWeekHour($notify_week_hour) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -601,12 +601,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -631,11 +631,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyPerDay.php b/lib/User/TriggerRunPeriodicallyPerDay.php index 517c573..018e62d 100644 --- a/lib/User/TriggerRunPeriodicallyPerDay.php +++ b/lib/User/TriggerRunPeriodicallyPerDay.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyPerDayTrigger.php b/lib/User/TriggerRunPeriodicallyPerDayTrigger.php index 42d0494..f601717 100644 --- a/lib/User/TriggerRunPeriodicallyPerDayTrigger.php +++ b/lib/User/TriggerRunPeriodicallyPerDayTrigger.php @@ -487,11 +487,11 @@ public function setNotifyHour($notify_hour) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -499,12 +499,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -529,11 +529,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyPerMonth.php b/lib/User/TriggerRunPeriodicallyPerMonth.php index 77afe77..b028b3b 100644 --- a/lib/User/TriggerRunPeriodicallyPerMonth.php +++ b/lib/User/TriggerRunPeriodicallyPerMonth.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php b/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php index de2e8a4..b1a33cb 100644 --- a/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php +++ b/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php @@ -521,11 +521,11 @@ public function setNotifyMonthHour($notify_month_hour) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -533,12 +533,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -563,11 +563,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyPerWeek.php b/lib/User/TriggerRunPeriodicallyPerWeek.php index 5416a6a..8de6684 100644 --- a/lib/User/TriggerRunPeriodicallyPerWeek.php +++ b/lib/User/TriggerRunPeriodicallyPerWeek.php @@ -417,11 +417,11 @@ public function setActions($actions) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php b/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php index 7073734..207179b 100644 --- a/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php +++ b/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php @@ -521,11 +521,11 @@ public function setNotifyWeekHour($notify_week_hour) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -533,12 +533,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -563,11 +563,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/UnsetPassword.php b/lib/User/UnsetPassword.php index 49b7496..6105ef3 100644 --- a/lib/User/UnsetPassword.php +++ b/lib/User/UnsetPassword.php @@ -417,11 +417,11 @@ public function setPassword($password) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -429,12 +429,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -459,11 +459,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/UpdateCommonDatasetSyncRequest.php b/lib/User/UpdateCommonDatasetSyncRequest.php index 70b7734..22fb3a0 100644 --- a/lib/User/UpdateCommonDatasetSyncRequest.php +++ b/lib/User/UpdateCommonDatasetSyncRequest.php @@ -385,11 +385,11 @@ public function setDstTableId($dst_table_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/UpdateGroupRequest.php b/lib/User/UpdateGroupRequest.php index fcf4fcf..c4caa7b 100644 --- a/lib/User/UpdateGroupRequest.php +++ b/lib/User/UpdateGroupRequest.php @@ -351,11 +351,11 @@ public function setOwner($owner) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/UpdateGroupRoleRequest.php b/lib/User/UpdateGroupRoleRequest.php index 62ffe24..aa82417 100644 --- a/lib/User/UpdateGroupRoleRequest.php +++ b/lib/User/UpdateGroupRoleRequest.php @@ -317,11 +317,11 @@ public function setIsAdmin($is_admin) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -329,12 +329,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -359,11 +359,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/UpdateNotificationRuleRequest.php b/lib/User/UpdateNotificationRuleRequest.php index 84ebce7..41ea8da 100644 --- a/lib/User/UpdateNotificationRuleRequest.php +++ b/lib/User/UpdateNotificationRuleRequest.php @@ -385,11 +385,11 @@ public function setAction($action) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -397,12 +397,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -427,11 +427,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/UserApi.php b/lib/User/UserApi.php index 5c5368e..8d9b188 100644 --- a/lib/User/UserApi.php +++ b/lib/User/UserApi.php @@ -1757,6 +1757,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/UsersInfo.php b/lib/User/UsersInfo.php index e4fc3bd..fa4d3b7 100644 --- a/lib/User/UsersInfo.php +++ b/lib/User/UsersInfo.php @@ -351,11 +351,11 @@ public function setRoleId($role_id) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -363,12 +363,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -393,11 +393,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/WebhooksApi.php b/lib/User/WebhooksApi.php index d2eadd5..209f3e0 100644 --- a/lib/User/WebhooksApi.php +++ b/lib/User/WebhooksApi.php @@ -1421,6 +1421,14 @@ protected function createHttpClientOption() } } + if ($this->config->getCertFile()) { + $options[RequestOptions::CERT] = $this->config->getCertFile(); + } + + if ($this->config->getKeyFile()) { + $options[RequestOptions::SSL_KEY] = $this->config->getKeyFile(); + } + return $options; } diff --git a/lib/User/XDaysBeforeRunningTheTaskValue.php b/lib/User/XDaysBeforeRunningTheTaskValue.php index 73f73f3..0454866 100644 --- a/lib/User/XDaysBeforeRunningTheTaskValue.php +++ b/lib/User/XDaysBeforeRunningTheTaskValue.php @@ -449,11 +449,11 @@ public function setOffsetBy($offset_by) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -461,12 +461,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -491,11 +491,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxExactDate.php b/lib/User/XxxExactDate.php index 7b49132..613d284 100644 --- a/lib/User/XxxExactDate.php +++ b/lib/User/XxxExactDate.php @@ -503,11 +503,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -515,12 +515,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -545,11 +545,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxNumberOfDaysAgo.php b/lib/User/XxxNumberOfDaysAgo.php index bb99a28..800851a 100644 --- a/lib/User/XxxNumberOfDaysAgo.php +++ b/lib/User/XxxNumberOfDaysAgo.php @@ -494,11 +494,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -506,12 +506,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -536,11 +536,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxNumberOfDaysFromNow.php b/lib/User/XxxNumberOfDaysFromNow.php index 401f7d8..70724c8 100644 --- a/lib/User/XxxNumberOfDaysFromNow.php +++ b/lib/User/XxxNumberOfDaysFromNow.php @@ -494,11 +494,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -506,12 +506,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -536,11 +536,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxOneMonthAgo.php b/lib/User/XxxOneMonthAgo.php index 9c7820a..e22c7c8 100644 --- a/lib/User/XxxOneMonthAgo.php +++ b/lib/User/XxxOneMonthAgo.php @@ -494,11 +494,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -506,12 +506,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -536,11 +536,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxOneMonthFromNow.php b/lib/User/XxxOneMonthFromNow.php index a6637e8..c1da72e 100644 --- a/lib/User/XxxOneMonthFromNow.php +++ b/lib/User/XxxOneMonthFromNow.php @@ -494,11 +494,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -506,12 +506,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -536,11 +536,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxOneWeekAgo.php b/lib/User/XxxOneWeekAgo.php index b822a57..98f7ba8 100644 --- a/lib/User/XxxOneWeekAgo.php +++ b/lib/User/XxxOneWeekAgo.php @@ -494,11 +494,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -506,12 +506,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -536,11 +536,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxOneWeekFromNow.php b/lib/User/XxxOneWeekFromNow.php index 34ceb52..31e17a3 100644 --- a/lib/User/XxxOneWeekFromNow.php +++ b/lib/User/XxxOneWeekFromNow.php @@ -494,11 +494,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -506,12 +506,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -536,11 +536,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxToday.php b/lib/User/XxxToday.php index a569308..683d014 100644 --- a/lib/User/XxxToday.php +++ b/lib/User/XxxToday.php @@ -494,11 +494,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -506,12 +506,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -536,11 +536,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxTomorrow.php b/lib/User/XxxTomorrow.php index a161436..aa1daff 100644 --- a/lib/User/XxxTomorrow.php +++ b/lib/User/XxxTomorrow.php @@ -494,11 +494,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -506,12 +506,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -536,11 +536,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } diff --git a/lib/User/XxxYesterday.php b/lib/User/XxxYesterday.php index 907b8f6..54edf80 100644 --- a/lib/User/XxxYesterday.php +++ b/lib/User/XxxYesterday.php @@ -494,11 +494,11 @@ public function setFilterTermModifier($filter_term_modifier) /** * Returns true if offset exists. False otherwise. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return boolean */ - public function offsetExists($offset): bool + public function offsetExists(mixed $offset): bool { return isset($this->container[$offset]); } @@ -506,12 +506,12 @@ public function offsetExists($offset): bool /** * Gets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return mixed|null */ #[\ReturnTypeWillChange] - public function offsetGet($offset) + public function offsetGet(mixed $offset) { return $this->container[$offset] ?? null; } @@ -536,11 +536,11 @@ public function offsetSet($offset, $value): void /** * Unsets offset. * - * @param integer $offset Offset + * @param integer|string $offset Offset * * @return void */ - public function offsetUnset($offset): void + public function offsetUnset(mixed $offset): void { unset($this->container[$offset]); } From f23e4450705b5ed1d82a203ebbe84ae888940110 Mon Sep 17 00:00:00 2001 From: Christoph Dyllick-Brenzinger Date: Wed, 28 Jan 2026 08:41:31 +0100 Subject: [PATCH 4/7] updated team_admin_account_operations --- .../team_admin_account_operations.yaml | 76 ++++++++++++++++++- 1 file changed, 72 insertions(+), 4 deletions(-) diff --git a/openapi_input/team_admin_account_operations.yaml b/openapi_input/team_admin_account_operations.yaml index 04de9e4..2427c8b 100644 --- a/openapi_input/team_admin_account_operations.yaml +++ b/openapi_input/team_admin_account_operations.yaml @@ -3,7 +3,7 @@ info: title: Account Operations - Team admin description: >- The official SeaTable API Reference (OpenAPI 3.0). - version: "6.0" + version: "6.1" servers: - url: "https://{server}" variables: @@ -79,6 +79,14 @@ components: pattern: '^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$' description: The unique identifier of a base. example: 5c264e76-0e5a-448a-9f34-580b551364ca + base_uuid_query: + name: base_uuid + in: query + schema: + type: string + pattern: '^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$' + description: The unique identifier of a base. + example: 5c264e76-0e5a-448a-9f34-580b551364ca ignore_asset: name: ignore_asset in: query @@ -87,7 +95,7 @@ components: example: "false" description: Set this to `true` to export the base without assets. Default is `false`. login_status: - name: login_status + name: status in: query schema: type: string @@ -121,6 +129,23 @@ components: example: user description: Filter by a specific operation group. By default, all operations are returned. required: false + group_by: + name: group_by + in: query + schema: + type: string + enum: [owner, dtable_uuid] + required: true + description: Query by owner or Base + example: "owner" + date: + name: date + in: query + schema: + type: string + required: true + description: A date string in YYYY-MM-DD format + example: "2025-01-01" #=======================Path parameters=======================# org_id: @@ -2223,8 +2248,8 @@ paths: security: - AccountTokenAuth: [] parameters: - - $ref: "#/components/parameters/dtable_uuid" - name: base_uuid + - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/base_uuid_query" - $ref: "#/components/parameters/start" - $ref: "#/components/parameters/end" - $ref: "#/components/parameters/page" @@ -2480,6 +2505,49 @@ paths: successful_runs: 4 unsuccessful_runs: 0 total_count: 2 + /api/v2.1/org/{org_id}/admin/statistics/ai/: + get: + tags: + - Statistics + summary: Get AI statistics by user/base + operationId: getUserOrBaseAIStatistics + description: Get AI usage statistics monthly by user/base. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/group_by" + - $ref: "#/components/parameters/date" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + - $ref: "#/components/parameters/org_id" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + examples: + group_by_owner: + summary: Query group by owner + value: + results: + - owner: 1@seafile_group + total_cost: 0.15 + group_name: group-11 + - owner: d15ebe61bd684b868344498c73bdeac4@auth.local + total_cost: 0.2 + nickname: test + count: 2 + group_by_base: + summary: Query group by base + value: + results: + - dtable_uuid: f0e6f53caee749b1a5eb65cb2991d6bb + owner: 1@seafile_group + total_cost: 0.04 + group_name: group-11 + count: 1 /api/v2.1/org/{org_id}/admin/org-logo/: post: From fcb53aef9ece1241255ba2f1abf474b7ba9d15f8 Mon Sep 17 00:00:00 2001 From: Christoph Dyllick-Brenzinger Date: Wed, 28 Jan 2026 08:42:54 +0100 Subject: [PATCH 5/7] newest v6.1-dev class --- README_TeamAmin.md | 3 +- docs/TeamAdmin/Api/ActivitiesLogsApi.md | 18 +- docs/TeamAdmin/Api/StatisticsApi.md | 58 +++ lib/TeamAdmin/ActivitiesLogsApi.php | 93 +++-- lib/TeamAdmin/BasesApi.php | 2 +- lib/TeamAdmin/CustomizingApi.php | 2 +- lib/TeamAdmin/EnforceTwofactorRequest.php | 2 +- lib/TeamAdmin/GroupsApi.php | 2 +- lib/TeamAdmin/InfoSettingsApi.php | 2 +- lib/TeamAdmin/ModelInterface.php | 2 +- lib/TeamAdmin/SAMLApi.php | 2 +- lib/TeamAdmin/SharingLinksApi.php | 2 +- lib/TeamAdmin/StatisticsApi.php | 358 +++++++++++++++++- lib/TeamAdmin/TeamAdminPermission.php | 2 +- .../UpdateGroupMemberRoleRequest.php | 2 +- lib/TeamAdmin/UpdateGroupRequest.php | 2 +- lib/TeamAdmin/UpdateInviteLinkRequest.php | 2 +- lib/TeamAdmin/UsersApi.php | 2 +- test/Api/ActivitiesLogsApiTest.php | 2 +- test/Api/CustomizingApiTest.php | 2 +- test/Api/InfoSettingsApiTest.php | 2 +- test/Api/SAMLApiTest.php | 2 +- test/Model/EnforceTwofactorRequestTest.php | 2 +- test/Model/TeamAdminPermissionTest.php | 2 +- .../UpdateGroupMemberRoleRequestTest.php | 2 +- test/Model/UpdateGroupRequestTest.php | 2 +- test/Model/UpdateInviteLinkRequestTest.php | 2 +- 27 files changed, 507 insertions(+), 67 deletions(-) diff --git a/README_TeamAmin.md b/README_TeamAmin.md index 6ad4ed4..e4b957c 100644 --- a/README_TeamAmin.md +++ b/README_TeamAmin.md @@ -60,6 +60,7 @@ Class | Method | HTTP request | Description *StatisticsApi* | [**getLoginLogStatisticsByDay**](docs/TeamAdmin/Api/StatisticsApi.md#getloginlogstatisticsbyday) | **GET** /api/v2.1/org/{org_id}/admin/statistics/login-logs/by-day/ | Login Logs (by Day) *StatisticsApi* | [**getPythonRunStatisticsByBase**](docs/TeamAdmin/Api/StatisticsApi.md#getpythonrunstatisticsbybase) | **GET** /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-base/ | Python Runs (by Base) *StatisticsApi* | [**getPythonRunStatisticsByDay**](docs/TeamAdmin/Api/StatisticsApi.md#getpythonrunstatisticsbyday) | **GET** /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-day/ | Python Runs (by Day) +*StatisticsApi* | [**getUserOrBaseAIStatistics**](docs/TeamAdmin/Api/StatisticsApi.md#getuserorbaseaistatistics) | **GET** /api/v2.1/org/{org_id}/admin/statistics/ai/ | Get AI statistics by user/base *UsersApi* | [**addUser**](docs/TeamAdmin/Api/UsersApi.md#adduser) | **POST** /api/v2.1/org/{org_id}/admin/users/ | Add User *UsersApi* | [**deleteUser**](docs/TeamAdmin/Api/UsersApi.md#deleteuser) | **DELETE** /api/v2.1/org/{org_id}/admin/users/{user_id}/ | Delete User *UsersApi* | [**disableTwoFactor**](docs/TeamAdmin/Api/UsersApi.md#disabletwofactor) | **DELETE** /api/v2.1/org/{org_id}/admin/users/{user_id}/two-factor-auth/ | Disable 2FA @@ -74,5 +75,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.0` +- API version: `6.1` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/docs/TeamAdmin/Api/ActivitiesLogsApi.md b/docs/TeamAdmin/Api/ActivitiesLogsApi.md index 838b553..9c416bf 100644 --- a/docs/TeamAdmin/Api/ActivitiesLogsApi.md +++ b/docs/TeamAdmin/Api/ActivitiesLogsApi.md @@ -179,7 +179,7 @@ AccountTokenAuth ## `listPythonRuns()` ```php -listPythonRuns($dtable_uuid, $start, $end, $page, $per_page): object +listPythonRuns($org_id, $base_uuid, $start, $end, $page, $per_page): object ``` List Python Runs @@ -198,14 +198,15 @@ $apiInstance = new SeaTable\Client\TeamAdmin\ActivitiesLogsApi( new GuzzleHttp\Client(), $config ); -$dtable_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$base_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. $start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. $end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. $page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. $per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. try { - $result = $apiInstance->listPythonRuns($dtable_uuid, $start, $end, $page, $per_page); + $result = $apiInstance->listPythonRuns($org_id, $base_uuid, $start, $end, $page, $per_page); print_r($result); } catch (Exception $e) { echo 'Exception when calling ActivitiesLogsApi->listPythonRuns: ', $e->getMessage(), PHP_EOL; @@ -216,7 +217,8 @@ try { | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | -| **dtable_uuid** | **string**| The unique identifier of a base. | [optional] | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **base_uuid** | **string**| The unique identifier of a base. | [optional] | | **start** | **\DateTime**| Start date in ISO format. | [optional] | | **end** | **\DateTime**| End date in ISO format. | [optional] | | **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | @@ -236,7 +238,7 @@ AccountTokenAuth ## `listTeamLogins()` ```php -listTeamLogins($org_id, $page, $per_page, $login_status, $start, $end): object +listTeamLogins($org_id, $page, $per_page, $status, $start, $end): object ``` List Team Logins @@ -258,12 +260,12 @@ $apiInstance = new SeaTable\Client\TeamAdmin\ActivitiesLogsApi( $org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. $page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. $per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. -$login_status = success; // string | Set this to `success` to only return successful logins. By default, all logins are returned. +$status = success; // string | Set this to `success` to only return successful logins. By default, all logins are returned. $start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. $end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. try { - $result = $apiInstance->listTeamLogins($org_id, $page, $per_page, $login_status, $start, $end); + $result = $apiInstance->listTeamLogins($org_id, $page, $per_page, $status, $start, $end); print_r($result); } catch (Exception $e) { echo 'Exception when calling ActivitiesLogsApi->listTeamLogins: ', $e->getMessage(), PHP_EOL; @@ -277,7 +279,7 @@ try { | **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | | **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | | **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | -| **login_status** | **string**| Set this to `success` to only return successful logins. By default, all logins are returned. | [optional] | +| **status** | **string**| Set this to `success` to only return successful logins. By default, all logins are returned. | [optional] | | **start** | **\DateTime**| Start date in ISO format. | [optional] | | **end** | **\DateTime**| End date in ISO format. | [optional] | diff --git a/docs/TeamAdmin/Api/StatisticsApi.md b/docs/TeamAdmin/Api/StatisticsApi.md index 464f40f..88708f3 100644 --- a/docs/TeamAdmin/Api/StatisticsApi.md +++ b/docs/TeamAdmin/Api/StatisticsApi.md @@ -10,6 +10,7 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi | [**getLoginLogStatisticsByDay()**](StatisticsApi.md#getLoginLogStatisticsByDay) | **GET** /api/v2.1/org/{org_id}/admin/statistics/login-logs/by-day/ | Login Logs (by Day) | | [**getPythonRunStatisticsByBase()**](StatisticsApi.md#getPythonRunStatisticsByBase) | **GET** /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-base/ | Python Runs (by Base) | | [**getPythonRunStatisticsByDay()**](StatisticsApi.md#getPythonRunStatisticsByDay) | **GET** /api/v2.1/org/{org_id}/admin/statistics/python-runs/by-day/ | Python Runs (by Day) | +| [**getUserOrBaseAIStatistics()**](StatisticsApi.md#getUserOrBaseAIStatistics) | **GET** /api/v2.1/org/{org_id}/admin/statistics/ai/ | Get AI statistics by user/base | ## `getAdminLogStatisticsByDay()` @@ -357,3 +358,60 @@ AccountTokenAuth + +## `getUserOrBaseAIStatistics()` + +```php +getUserOrBaseAIStatistics($group_by, $date, $org_id, $page, $per_page): object +``` + +Get AI statistics by user/base + +Get AI usage statistics monthly by user/base. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\StatisticsApi( + new GuzzleHttp\Client(), + $config +); +$group_by = owner; // string | Query by owner or Base +$date = 2025-01-01; // string | A date string in YYYY-MM-DD format +$org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->getUserOrBaseAIStatistics($group_by, $date, $org_id, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling StatisticsApi->getUserOrBaseAIStatistics: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **group_by** | **string**| Query by owner or Base | | +| **date** | **string**| A date string in YYYY-MM-DD format | | +| **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + diff --git a/lib/TeamAdmin/ActivitiesLogsApi.php b/lib/TeamAdmin/ActivitiesLogsApi.php index 3611024..81faf3b 100644 --- a/lib/TeamAdmin/ActivitiesLogsApi.php +++ b/lib/TeamAdmin/ActivitiesLogsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -1110,7 +1110,8 @@ public function listGroupMemberAuditLogsRequest($org_id, $page = null, $per_page * * List Python Runs * - * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $base_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1121,9 +1122,9 @@ public function listGroupMemberAuditLogsRequest($org_id, $page = null, $per_page * @throws \InvalidArgumentException * @return object */ - public function listPythonRuns($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRuns($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - list($response) = $this->listPythonRunsWithHttpInfo($dtable_uuid, $start, $end, $page, $per_page, $contentType); + list($response) = $this->listPythonRunsWithHttpInfo($org_id, $base_uuid, $start, $end, $page, $per_page, $contentType); return $response; } @@ -1132,7 +1133,8 @@ public function listPythonRuns($dtable_uuid = null, $start = null, $end = null, * * List Python Runs * - * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $base_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1143,9 +1145,9 @@ public function listPythonRuns($dtable_uuid = null, $start = null, $end = null, * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listPythonRunsWithHttpInfo($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRunsWithHttpInfo($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - $request = $this->listPythonRunsRequest($dtable_uuid, $start, $end, $page, $per_page, $contentType); + $request = $this->listPythonRunsRequest($org_id, $base_uuid, $start, $end, $page, $per_page, $contentType); try { $options = $this->createHttpClientOption(); @@ -1221,7 +1223,8 @@ public function listPythonRunsWithHttpInfo($dtable_uuid = null, $start = null, $ * * List Python Runs * - * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $base_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1231,9 +1234,9 @@ public function listPythonRunsWithHttpInfo($dtable_uuid = null, $start = null, $ * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listPythonRunsAsync($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRunsAsync($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - return $this->listPythonRunsAsyncWithHttpInfo($dtable_uuid, $start, $end, $page, $per_page, $contentType) + return $this->listPythonRunsAsyncWithHttpInfo($org_id, $base_uuid, $start, $end, $page, $per_page, $contentType) ->then( function ($response) { return $response[0]; @@ -1246,7 +1249,8 @@ function ($response) { * * List Python Runs * - * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $base_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1256,10 +1260,10 @@ function ($response) { * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listPythonRunsAsyncWithHttpInfo($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRunsAsyncWithHttpInfo($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { $returnType = 'object'; - $request = $this->listPythonRunsRequest($dtable_uuid, $start, $end, $page, $per_page, $contentType); + $request = $this->listPythonRunsRequest($org_id, $base_uuid, $start, $end, $page, $per_page, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -1300,7 +1304,8 @@ function ($exception) { /** * Create request for operation 'listPythonRuns' * - * @param string|null $dtable_uuid The unique identifier of a base. (optional) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $base_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1310,11 +1315,21 @@ function ($exception) { * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listPythonRunsRequest($dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRunsRequest($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - if ($dtable_uuid !== null && !preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $dtable_uuid)) { - throw new \InvalidArgumentException("invalid value for \"dtable_uuid\" when calling ActivitiesLogsApi.listPythonRuns, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling listPythonRuns' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listPythonRuns, must be bigger than or equal to 1.'); + } + + if ($base_uuid !== null && !preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $base_uuid)) { + throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling ActivitiesLogsApi.listPythonRuns, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); } @@ -1337,8 +1352,8 @@ public function listPythonRunsRequest($dtable_uuid = null, $start = null, $end = // query params $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( - $dtable_uuid, - 'dtable_uuid', // param base name + $base_uuid, + 'base_uuid', // param base name 'string', // openApiType 'form', // style true, // explode @@ -1382,6 +1397,14 @@ public function listPythonRunsRequest($dtable_uuid = null, $start = null, $end = ) ?? []); + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } $headers = $this->headerSelector->selectHeaders( @@ -1449,7 +1472,7 @@ public function listPythonRunsRequest($dtable_uuid = null, $start = null, $end = * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param string|null $status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation @@ -1458,9 +1481,9 @@ public function listPythonRunsRequest($dtable_uuid = null, $start = null, $end = * @throws \InvalidArgumentException * @return object */ - public function listTeamLogins($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listTeamLogins($org_id, $page = null, $per_page = null, $status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) { - list($response) = $this->listTeamLoginsWithHttpInfo($org_id, $page, $per_page, $login_status, $start, $end, $contentType); + list($response) = $this->listTeamLoginsWithHttpInfo($org_id, $page, $per_page, $status, $start, $end, $contentType); return $response; } @@ -1472,7 +1495,7 @@ public function listTeamLogins($org_id, $page = null, $per_page = null, $login_s * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param string|null $status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation @@ -1481,9 +1504,9 @@ public function listTeamLogins($org_id, $page = null, $per_page = null, $login_s * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listTeamLoginsWithHttpInfo($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listTeamLoginsWithHttpInfo($org_id, $page = null, $per_page = null, $status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) { - $request = $this->listTeamLoginsRequest($org_id, $page, $per_page, $login_status, $start, $end, $contentType); + $request = $this->listTeamLoginsRequest($org_id, $page, $per_page, $status, $start, $end, $contentType); try { $options = $this->createHttpClientOption(); @@ -1562,7 +1585,7 @@ public function listTeamLoginsWithHttpInfo($org_id, $page = null, $per_page = nu * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param string|null $status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation @@ -1570,9 +1593,9 @@ public function listTeamLoginsWithHttpInfo($org_id, $page = null, $per_page = nu * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTeamLoginsAsync($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listTeamLoginsAsync($org_id, $page = null, $per_page = null, $status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) { - return $this->listTeamLoginsAsyncWithHttpInfo($org_id, $page, $per_page, $login_status, $start, $end, $contentType) + return $this->listTeamLoginsAsyncWithHttpInfo($org_id, $page, $per_page, $status, $start, $end, $contentType) ->then( function ($response) { return $response[0]; @@ -1588,7 +1611,7 @@ function ($response) { * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param string|null $status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation @@ -1596,10 +1619,10 @@ function ($response) { * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTeamLoginsAsyncWithHttpInfo($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listTeamLoginsAsyncWithHttpInfo($org_id, $page = null, $per_page = null, $status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) { $returnType = 'object'; - $request = $this->listTeamLoginsRequest($org_id, $page, $per_page, $login_status, $start, $end, $contentType); + $request = $this->listTeamLoginsRequest($org_id, $page, $per_page, $status, $start, $end, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -1643,7 +1666,7 @@ function ($exception) { * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) - * @param string|null $login_status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) + * @param string|null $status Set this to `success` to only return successful logins. By default, all logins are returned. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listTeamLogins'] to see the possible values for this operation @@ -1651,7 +1674,7 @@ function ($exception) { * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listTeamLoginsRequest($org_id, $page = null, $per_page = null, $login_status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) + public function listTeamLoginsRequest($org_id, $page = null, $per_page = null, $status = null, $start = null, $end = null, string $contentType = self::contentTypes['listTeamLogins'][0]) { // verify the required parameter 'org_id' is set @@ -1703,8 +1726,8 @@ public function listTeamLoginsRequest($org_id, $page = null, $per_page = null, $ ) ?? []); // query params $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( - $login_status, - 'login_status', // param base name + $status, + 'status', // param base name 'string', // openApiType 'form', // style true, // explode diff --git a/lib/TeamAdmin/BasesApi.php b/lib/TeamAdmin/BasesApi.php index 8a3dc39..a64c434 100644 --- a/lib/TeamAdmin/BasesApi.php +++ b/lib/TeamAdmin/BasesApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/CustomizingApi.php b/lib/TeamAdmin/CustomizingApi.php index 9b8119f..3f4a9f2 100644 --- a/lib/TeamAdmin/CustomizingApi.php +++ b/lib/TeamAdmin/CustomizingApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/EnforceTwofactorRequest.php b/lib/TeamAdmin/EnforceTwofactorRequest.php index 78a25c0..c0c7317 100644 --- a/lib/TeamAdmin/EnforceTwofactorRequest.php +++ b/lib/TeamAdmin/EnforceTwofactorRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/GroupsApi.php b/lib/TeamAdmin/GroupsApi.php index 2a5413f..35896ce 100644 --- a/lib/TeamAdmin/GroupsApi.php +++ b/lib/TeamAdmin/GroupsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/InfoSettingsApi.php b/lib/TeamAdmin/InfoSettingsApi.php index 3d2f246..47452ca 100644 --- a/lib/TeamAdmin/InfoSettingsApi.php +++ b/lib/TeamAdmin/InfoSettingsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/ModelInterface.php b/lib/TeamAdmin/ModelInterface.php index 6bd430e..66ce62f 100644 --- a/lib/TeamAdmin/ModelInterface.php +++ b/lib/TeamAdmin/ModelInterface.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/SAMLApi.php b/lib/TeamAdmin/SAMLApi.php index 80631ef..c1ad9fd 100644 --- a/lib/TeamAdmin/SAMLApi.php +++ b/lib/TeamAdmin/SAMLApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/SharingLinksApi.php b/lib/TeamAdmin/SharingLinksApi.php index c9bec6b..23affd3 100644 --- a/lib/TeamAdmin/SharingLinksApi.php +++ b/lib/TeamAdmin/SharingLinksApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/StatisticsApi.php b/lib/TeamAdmin/StatisticsApi.php index e1b565d..fd16524 100644 --- a/lib/TeamAdmin/StatisticsApi.php +++ b/lib/TeamAdmin/StatisticsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -91,6 +91,9 @@ class StatisticsApi 'getPythonRunStatisticsByDay' => [ 'application/json', ], + 'getUserOrBaseAIStatistics' => [ + 'application/json', + ], ]; /** @@ -2221,6 +2224,359 @@ public function getPythonRunStatisticsByDayRequest($org_id, $dtable_uuid = null, ); } + /** + * Operation getUserOrBaseAIStatistics + * + * Get AI statistics by user/base + * + * @param string $group_by Query by owner or Base (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getUserOrBaseAIStatistics'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function getUserOrBaseAIStatistics($group_by, $date, $org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['getUserOrBaseAIStatistics'][0]) + { + list($response) = $this->getUserOrBaseAIStatisticsWithHttpInfo($group_by, $date, $org_id, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation getUserOrBaseAIStatisticsWithHttpInfo + * + * Get AI statistics by user/base + * + * @param string $group_by Query by owner or Base (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getUserOrBaseAIStatistics'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function getUserOrBaseAIStatisticsWithHttpInfo($group_by, $date, $org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['getUserOrBaseAIStatistics'][0]) + { + $request = $this->getUserOrBaseAIStatisticsRequest($group_by, $date, $org_id, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation getUserOrBaseAIStatisticsAsync + * + * Get AI statistics by user/base + * + * @param string $group_by Query by owner or Base (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getUserOrBaseAIStatistics'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getUserOrBaseAIStatisticsAsync($group_by, $date, $org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['getUserOrBaseAIStatistics'][0]) + { + return $this->getUserOrBaseAIStatisticsAsyncWithHttpInfo($group_by, $date, $org_id, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation getUserOrBaseAIStatisticsAsyncWithHttpInfo + * + * Get AI statistics by user/base + * + * @param string $group_by Query by owner or Base (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getUserOrBaseAIStatistics'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getUserOrBaseAIStatisticsAsyncWithHttpInfo($group_by, $date, $org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['getUserOrBaseAIStatistics'][0]) + { + $returnType = 'object'; + $request = $this->getUserOrBaseAIStatisticsRequest($group_by, $date, $org_id, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'getUserOrBaseAIStatistics' + * + * @param string $group_by Query by owner or Base (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getUserOrBaseAIStatistics'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function getUserOrBaseAIStatisticsRequest($group_by, $date, $org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['getUserOrBaseAIStatistics'][0]) + { + + // verify the required parameter 'group_by' is set + if ($group_by === null || (is_array($group_by) && count($group_by) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $group_by when calling getUserOrBaseAIStatistics' + ); + } + + // verify the required parameter 'date' is set + if ($date === null || (is_array($date) && count($date) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $date when calling getUserOrBaseAIStatistics' + ); + } + + // verify the required parameter 'org_id' is set + if ($org_id === null || (is_array($org_id) && count($org_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $org_id when calling getUserOrBaseAIStatistics' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling StatisticsApi.getUserOrBaseAIStatistics, must be bigger than or equal to 1.'); + } + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling StatisticsApi.getUserOrBaseAIStatistics, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling StatisticsApi.getUserOrBaseAIStatistics, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/statistics/ai/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $group_by, + 'group_by', // param base name + 'string', // openApiType + 'form', // style + true, // explode + true // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $date, + 'date', // param base name + 'string', // openApiType + 'form', // style + true, // explode + true // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + // path params + if ($org_id !== null) { + $resourcePath = str_replace( + '{' . 'org_id' . '}', + ObjectSerializer::toPathValue($org_id), + $resourcePath + ); + } + + + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + /** * Create http client option * diff --git a/lib/TeamAdmin/TeamAdminPermission.php b/lib/TeamAdmin/TeamAdminPermission.php index 53bf43d..616b4fe 100644 --- a/lib/TeamAdmin/TeamAdminPermission.php +++ b/lib/TeamAdmin/TeamAdminPermission.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php b/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php index 875edf1..5a4f9ba 100644 --- a/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php +++ b/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UpdateGroupRequest.php b/lib/TeamAdmin/UpdateGroupRequest.php index df71dbe..8a7f120 100644 --- a/lib/TeamAdmin/UpdateGroupRequest.php +++ b/lib/TeamAdmin/UpdateGroupRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UpdateInviteLinkRequest.php b/lib/TeamAdmin/UpdateInviteLinkRequest.php index a45006a..b0a7e7f 100644 --- a/lib/TeamAdmin/UpdateInviteLinkRequest.php +++ b/lib/TeamAdmin/UpdateInviteLinkRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UsersApi.php b/lib/TeamAdmin/UsersApi.php index bcf196d..17dfe90 100644 --- a/lib/TeamAdmin/UsersApi.php +++ b/lib/TeamAdmin/UsersApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/ActivitiesLogsApiTest.php b/test/Api/ActivitiesLogsApiTest.php index cac87af..dcb5222 100644 --- a/test/Api/ActivitiesLogsApiTest.php +++ b/test/Api/ActivitiesLogsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/CustomizingApiTest.php b/test/Api/CustomizingApiTest.php index 470e4d8..3c0b267 100644 --- a/test/Api/CustomizingApiTest.php +++ b/test/Api/CustomizingApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/InfoSettingsApiTest.php b/test/Api/InfoSettingsApiTest.php index 2c0b93f..802a4bd 100644 --- a/test/Api/InfoSettingsApiTest.php +++ b/test/Api/InfoSettingsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/SAMLApiTest.php b/test/Api/SAMLApiTest.php index 69cf94c..a6e2ee6 100644 --- a/test/Api/SAMLApiTest.php +++ b/test/Api/SAMLApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/EnforceTwofactorRequestTest.php b/test/Model/EnforceTwofactorRequestTest.php index fbd2b44..f5acc3b 100644 --- a/test/Model/EnforceTwofactorRequestTest.php +++ b/test/Model/EnforceTwofactorRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TeamAdminPermissionTest.php b/test/Model/TeamAdminPermissionTest.php index 7e077e8..ec56c1e 100644 --- a/test/Model/TeamAdminPermissionTest.php +++ b/test/Model/TeamAdminPermissionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateGroupMemberRoleRequestTest.php b/test/Model/UpdateGroupMemberRoleRequestTest.php index d2c255a..c9ed63b 100644 --- a/test/Model/UpdateGroupMemberRoleRequestTest.php +++ b/test/Model/UpdateGroupMemberRoleRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateGroupRequestTest.php b/test/Model/UpdateGroupRequestTest.php index 4f77277..bb19f33 100644 --- a/test/Model/UpdateGroupRequestTest.php +++ b/test/Model/UpdateGroupRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateInviteLinkRequestTest.php b/test/Model/UpdateInviteLinkRequestTest.php index fa1882b..b49b5ab 100644 --- a/test/Model/UpdateInviteLinkRequestTest.php +++ b/test/Model/UpdateInviteLinkRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ From a88f96edcb08af12de85c0b0534886c76511c704 Mon Sep 17 00:00:00 2001 From: Simon Hammes Date: Tue, 10 Feb 2026 12:23:28 +0100 Subject: [PATCH 6/7] Update .yaml files --- openapi_input/authentication.yaml | 2 +- openapi_input/base_operations.yaml | 2 +- openapi_input/file_operations.yaml | 2 +- openapi_input/python-scheduler.yaml | 2 +- .../system_admin_account_operations.yaml | 77 ++++++++++++++++++- .../team_admin_account_operations.yaml | 13 +--- openapi_input/user_account_operations.yaml | 3 +- 7 files changed, 80 insertions(+), 21 deletions(-) diff --git a/openapi_input/authentication.yaml b/openapi_input/authentication.yaml index 6dea57d..b07d0ac 100644 --- a/openapi_input/authentication.yaml +++ b/openapi_input/authentication.yaml @@ -3,7 +3,7 @@ info: title: Authentication description: >- The official SeaTable API Reference (OpenAPI 3.0). - version: "6.0" + version: "6.1" servers: - url: "https://{server}" variables: diff --git a/openapi_input/base_operations.yaml b/openapi_input/base_operations.yaml index f773e00..12d8795 100644 --- a/openapi_input/base_operations.yaml +++ b/openapi_input/base_operations.yaml @@ -3,7 +3,7 @@ info: title: Base Operations description: >- The official SeaTable API Reference (OpenAPI 3.0). - version: "6.0" + version: "6.1" servers: - url: "https://{server}" variables: diff --git a/openapi_input/file_operations.yaml b/openapi_input/file_operations.yaml index 071f845..ff7a5ea 100644 --- a/openapi_input/file_operations.yaml +++ b/openapi_input/file_operations.yaml @@ -3,7 +3,7 @@ info: title: File Operations description: >- The official SeaTable API Reference (OpenAPI 3.0). - version: "6.0" + version: "6.1" servers: - url: "https://{server}" variables: diff --git a/openapi_input/python-scheduler.yaml b/openapi_input/python-scheduler.yaml index 66fb56f..7fb008c 100644 --- a/openapi_input/python-scheduler.yaml +++ b/openapi_input/python-scheduler.yaml @@ -3,7 +3,7 @@ info: title: Python Scheduler description: >- The official SeaTable API Reference (OpenAPI 3.0). - version: "6.0" + version: "6.1" servers: - url: "https://{server}" variables: diff --git a/openapi_input/system_admin_account_operations.yaml b/openapi_input/system_admin_account_operations.yaml index 99adad6..cc13dc2 100644 --- a/openapi_input/system_admin_account_operations.yaml +++ b/openapi_input/system_admin_account_operations.yaml @@ -3,7 +3,7 @@ info: title: "Account Operations: System admin" description: >- The official SeaTable API Reference (OpenAPI 3.0). - version: "6.0" + version: "6.1" servers: - url: "https://{server}" variables: @@ -236,6 +236,23 @@ components: type: boolean example: "false" description: Set this to `true` to export the base without assets. Default is `false`. + group_by: + name: group_by + in: query + schema: + type: string + enum: [owner, org_id] + required: true + description: Query by owner or organization + example: "owner" + date_YYYY_MM_DD: + name: date + in: query + schema: + type: string + required: true + description: A date string in YYYY-MM-DD format + example: "2025-01-01" #=======================Path parameters=======================# base_uuid: @@ -338,7 +355,6 @@ components: in: path schema: type: string - pattern: ^[a-f0-9]{20}$ required: true example: "1f0447eab4df4343ab6d" form_token: @@ -468,6 +484,9 @@ components: asset_quota_mb: type: string description: The asset quota in MB. + monthly_automation_limit_per_user: + type: integer + description: Monthly limit on the number of automation rules per user. file: type: string format: binary @@ -808,6 +827,8 @@ paths: $ref: "#/components/schemas/quota_total" asset_quota_mb: $ref: "#/components/schemas/asset_quota_mb" + monthly_automation_limit_per_user: + $ref: "#/components/schemas/monthly_automation_limit_per_user" security: - AccountTokenAuth: [] parameters: @@ -834,6 +855,7 @@ paths: create_time: "2020-11-18T12:30:31+00:00" role: default update_status_tip: "" + monthly_automation_limit_per_user: 1000 delete: tags: - Users @@ -1969,6 +1991,8 @@ paths: $ref: "#/components/schemas/max_user_number" asset_quota_mb: $ref: "#/components/schemas/asset_quota_mb" + monthly_automation_limit_per_user: + $ref: "#/components/schemas/monthly_automation_limit_per_user" security: - AccountTokenAuth: [] parameters: @@ -1995,6 +2019,7 @@ paths: max_user_number: 3 rows_count: 7185 row_limit: -1 + monthly_automation_limit_per_user: 1000 get: tags: - Teams @@ -3729,8 +3754,7 @@ paths: operationId: addPlugin description: >- Add a plugin with a .zip file. This file could be retrieved from the - internet, for example, from the [SeaTable Plugins - Market](https://cloud.seatable.io/dtable/view-external-links/custom/plugins/). + internet, for example, from the [SeaTable Plugins Market](https://cloud.seatable.io/apps/custom/plugin-archive). requestBody: content: multipart/form-data: @@ -4096,6 +4120,51 @@ paths: latest_visit_at: "2022-07-02T14:09:37+00:00" org_name: SeaTable GmbH count: 1 + /api/v2.1/admin/statistics/ai/: + get: + tags: + - Statistics + summary: Get AI statistics by owner/team + operationId: getOwnerOrTeamAIStatistics + description: Get AI usage statistics monthly by owner/team. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/group_by" + - $ref: "#/components/parameters/date_YYYY_MM_DD" + - $ref: "#/components/parameters/page" + - $ref: "#/components/parameters/per_page" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + examples: + group_by_owner: + summary: Query group by owner + value: + results: + - org_id: 176 + org_name: SeaTable + owner: 1@seafile_group + group_name: group-11 + total_cost: 0.25 + is_department_v2_group: false + - org_id: 176 + org_name: SeaTable + owner: d15ebe61bd684b868344498c73bdeac4@auth.local + nickname: test + count: 2 + group_by_team: + summary: Query group by organization + value: + results: + - org_id: 176 + org_name: SeaTable + total_cost: 0.25 + count: 1 # Maintenance /api/v2.1/admin/dtable/{base_uuid}/repair/: diff --git a/openapi_input/team_admin_account_operations.yaml b/openapi_input/team_admin_account_operations.yaml index 2427c8b..3fe2ecb 100644 --- a/openapi_input/team_admin_account_operations.yaml +++ b/openapi_input/team_admin_account_operations.yaml @@ -79,14 +79,6 @@ components: pattern: '^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$' description: The unique identifier of a base. example: 5c264e76-0e5a-448a-9f34-580b551364ca - base_uuid_query: - name: base_uuid - in: query - schema: - type: string - pattern: '^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$' - description: The unique identifier of a base. - example: 5c264e76-0e5a-448a-9f34-580b551364ca ignore_asset: name: ignore_asset in: query @@ -181,7 +173,6 @@ components: in: path schema: type: string - pattern: "^[0-9a-f]{20}$" required: true example: "d6d006b319ca4d2aa060" view_external_link_token: @@ -189,7 +180,6 @@ components: in: path schema: type: string - pattern: "^[0-9a-f]{20}$" required: true example: "d6d006b319ca4d2aa060" invite_link_token: @@ -2206,6 +2196,7 @@ paths: - AccountTokenAuth: [] parameters: - $ref: "#/components/parameters/org_id" + - $ref: "#/components/parameters/dtable_uuid" - $ref: "#/components/parameters/start" - $ref: "#/components/parameters/end" - $ref: "#/components/parameters/page" @@ -2249,7 +2240,7 @@ paths: - AccountTokenAuth: [] parameters: - $ref: "#/components/parameters/org_id" - - $ref: "#/components/parameters/base_uuid_query" + - $ref: "#/components/parameters/dtable_uuid" - $ref: "#/components/parameters/start" - $ref: "#/components/parameters/end" - $ref: "#/components/parameters/page" diff --git a/openapi_input/user_account_operations.yaml b/openapi_input/user_account_operations.yaml index 718e446..73770ef 100644 --- a/openapi_input/user_account_operations.yaml +++ b/openapi_input/user_account_operations.yaml @@ -3,7 +3,7 @@ info: title: Account Operations - User description: >- The official SeaTable API Reference (OpenAPI 3.0). - version: "6.0" + version: "6.1" servers: - url: "https://{server}" variables: @@ -413,7 +413,6 @@ components: in: path schema: type: string - pattern: "^[0-9a-f]{20}$" required: true example: f234baec8ce44028978a invite_link_token: From 99cf54525c1c3d0d6e40281efffe76850b823258 Mon Sep 17 00:00:00 2001 From: Simon Hammes Date: Tue, 10 Feb 2026 12:24:34 +0100 Subject: [PATCH 7/7] Regenerate code --- README_Auth.md | 2 +- README_Base.md | 2 +- README_File.md | 2 +- README_PythonScheduler.md | 2 +- README_SysAdmin.md | 3 +- README_User.md | 2 +- docs/SysAdmin/Api/PluginsApi.md | 2 +- docs/SysAdmin/Api/StatisticsApi.md | 56 +++ docs/SysAdmin/Model/UpdateTeamRequest.md | 1 + docs/SysAdmin/Model/UpdateUserRequest.md | 1 + docs/TeamAdmin/Api/ActivitiesLogsApi.md | 14 +- lib/ApiException.php | 2 +- lib/Auth/APITokenApi.php | 2 +- lib/Auth/AccessToken.php | 2 +- lib/Auth/AccountToken.php | 2 +- lib/Auth/AccountTokenApi.php | 2 +- lib/Auth/ApiToken.php | 2 +- lib/Auth/ApiTokenList.php | 2 +- lib/Auth/ApiTokenTemporary.php | 2 +- lib/Auth/AuthenticationPermission.php | 2 +- lib/Auth/BaseTokenApi.php | 2 +- lib/Auth/ModelInterface.php | 2 +- lib/Base/ActivitiesLogsApi.php | 2 +- lib/Base/AddSingleMultipleSelectOptions.php | 2 +- ...ingleMultipleSelectOptionsOptionsInner.php | 2 +- lib/Base/AppendColumnsRequest.php | 2 +- lib/Base/AppendColumnsRequestColumnsInner.php | 2 +- lib/Base/AppendRow.php | 2 +- lib/Base/AppendRows.php | 2 +- lib/Base/ArchiveView.php | 2 +- lib/Base/AutomaticFilterPredicate.php | 2 +- lib/Base/AutonumberColumn.php | 2 +- lib/Base/AutonumberColumnFormat.php | 2 +- lib/Base/AutonumberColumnWithTableName.php | 2 +- lib/Base/Base.php | 2 +- lib/Base/BaseInfoApi.php | 2 +- lib/Base/BigDataApi.php | 2 +- lib/Base/ButtonColumn.php | 2 +- lib/Base/ButtonColumnFormat.php | 2 +- ...ButtonColumnFormatSelectedColumnsInner.php | 2 +- lib/Base/ButtonColumnWithTableName.php | 2 +- lib/Base/CheckboxColumn.php | 2 +- lib/Base/CheckboxColumnWithTableName.php | 2 +- lib/Base/CheckboxFilterPredicate.php | 2 +- lib/Base/CollaboratorColumn.php | 2 +- lib/Base/CollaboratorColumnWithTableName.php | 2 +- lib/Base/CollaboratorFilterPredicate.php | 2 +- lib/Base/ColumnsApi.php | 2 +- lib/Base/CreateRowComment.php | 2 +- lib/Base/CreateTableRequest.php | 2 +- lib/Base/CreateTableRequestColumnsInner.php | 2 +- lib/Base/CreatorColumn.php | 2 +- lib/Base/CreatorColumnWithTableName.php | 2 +- lib/Base/CreatorFilterPredicate.php | 2 +- lib/Base/CtimeColumn.php | 2 +- lib/Base/CtimeColumnWithTableName.php | 2 +- lib/Base/DateColumn.php | 2 +- lib/Base/DateColumnFormat.php | 2 +- lib/Base/DateColumnWithTableName.php | 2 +- lib/Base/DateFilterPredicate.php | 2 +- lib/Base/DateFilterTermModifier.php | 2 +- lib/Base/DeleteColumn.php | 2 +- lib/Base/DeleteRow.php | 2 +- lib/Base/DeleteRows.php | 2 +- lib/Base/DeleteSelectOptions.php | 2 +- lib/Base/DeleteTable.php | 2 +- lib/Base/DuplicateTable.php | 2 +- lib/Base/DurationColumn.php | 2 +- lib/Base/DurationColumnFormat.php | 2 +- lib/Base/DurationColumnWithTableName.php | 2 +- lib/Base/EmailColumn.php | 2 +- lib/Base/EmailColumnWithTableName.php | 2 +- lib/Base/EmailFilterPredicate.php | 2 +- lib/Base/FileColumn.php | 2 +- lib/Base/FileColumnWithTableName.php | 2 +- lib/Base/FilterConjunction.php | 2 +- lib/Base/FiltersAutomatic.php | 2 +- lib/Base/FiltersCheckbox.php | 2 +- lib/Base/FiltersCollaborator.php | 2 +- lib/Base/FiltersCreated.php | 2 +- lib/Base/FiltersCreator.php | 2 +- lib/Base/FiltersDate.php | 2 +- lib/Base/FiltersDateTime.php | 2 +- lib/Base/FiltersDuration.php | 2 +- lib/Base/FiltersEditor.php | 2 +- lib/Base/FiltersEmail.php | 2 +- lib/Base/FiltersFile.php | 2 +- lib/Base/FiltersFormula.php | 2 +- lib/Base/FiltersGeolocation.php | 2 +- lib/Base/FiltersImage.php | 2 +- lib/Base/FiltersLink.php | 2 +- lib/Base/FiltersLinkFormula.php | 2 +- lib/Base/FiltersLongText.php | 2 +- lib/Base/FiltersModified.php | 2 +- lib/Base/FiltersMultiSelect.php | 2 +- lib/Base/FiltersNumber.php | 2 +- lib/Base/FiltersPercentage.php | 2 +- lib/Base/FiltersRating.php | 2 +- lib/Base/FiltersSingleSelect.php | 2 +- lib/Base/FiltersText.php | 2 +- lib/Base/FiltersUrl.php | 2 +- lib/Base/FormulaColumn.php | 2 +- lib/Base/FormulaColumnFormat.php | 2 +- lib/Base/FormulaColumnWithTableName.php | 2 +- lib/Base/FreezeUnfreezeColumn.php | 2 +- lib/Base/GenerateSnapshot.php | 2 +- lib/Base/GeoColumnFormat.php | 2 +- lib/Base/GeolocationColumn.php | 2 +- lib/Base/GeolocationColumnWithTableName.php | 2 +- lib/Base/ImageColumn.php | 2 +- lib/Base/ImageColumnWithTableName.php | 2 +- lib/Base/ImageFilterPredicate.php | 2 +- lib/Base/InsertColumnRequest.php | 2 +- lib/Base/InsertRow.php | 2 +- lib/Base/InsertRowsIntoBigData.php | 2 +- lib/Base/LastModifierColumn.php | 2 +- lib/Base/LastModifierColumnWithTableName.php | 2 +- lib/Base/LinkColumn.php | 2 +- lib/Base/LinkColumnFormat.php | 2 +- lib/Base/LinkColumnWithTableName.php | 2 +- lib/Base/LinkFilterPredicate.php | 2 +- lib/Base/LinkFormulaColumn.php | 2 +- lib/Base/LinkFormulaColumnColumnData.php | 2 +- .../LinkFormulaColumnCountLinksFormat.php | 2 +- lib/Base/LinkFormulaColumnFindmaxFormat.php | 2 +- lib/Base/LinkFormulaColumnFindminFormat.php | 2 +- lib/Base/LinkFormulaColumnLookupFormat.php | 2 +- lib/Base/LinkFormulaColumnRollupFormat.php | 2 +- lib/Base/LinkFormulaColumnWithTableName.php | 2 +- lib/Base/LinksApi.php | 2 +- lib/Base/ListRowLinks.php | 2 +- lib/Base/ListRowLinksRowsInner.php | 2 +- lib/Base/LongTextColumn.php | 2 +- lib/Base/LongTextColumnWithTableName.php | 2 +- lib/Base/MatchLinkColumns.php | 2 +- .../MatchLinkColumnsMatchingKeysInner.php | 2 +- lib/Base/ModelInterface.php | 2 +- lib/Base/MoveColumn.php | 2 +- lib/Base/MoveRowsToNormalBackendRequest.php | 2 +- lib/Base/MtimeColumn.php | 2 +- lib/Base/MtimeColumnWithTableName.php | 2 +- lib/Base/MultipleSelectColumn.php | 2 +- .../MultipleSelectColumnWithTableName.php | 2 +- lib/Base/MultipleSelectFilterPredicate.php | 2 +- lib/Base/NewView.php | 2 +- lib/Base/NotificationsApi.php | 2 +- lib/Base/NumberColumn.php | 2 +- lib/Base/NumberColumnFormat.php | 2 +- lib/Base/NumberColumnWithTableName.php | 2 +- lib/Base/NumberFilterPredicate.php | 2 +- lib/Base/RatingColumn.php | 2 +- lib/Base/RatingColumnFormat.php | 2 +- lib/Base/RatingColumnWithTableName.php | 2 +- lib/Base/RatingFilterTerm.php | 2 +- lib/Base/RenameColumn.php | 2 +- lib/Base/RenameTable.php | 2 +- lib/Base/ResizeColumn.php | 2 +- lib/Base/RowCommentsApi.php | 2 +- lib/Base/RowLinkCreateUpdateDelete.php | 2 +- lib/Base/Rows.php | 2 +- lib/Base/RowsApi.php | 2 +- lib/Base/RowsWithTableName.php | 2 +- lib/Base/SelectColumnFormat.php | 2 +- lib/Base/SelectColumnFormatOptionsInner.php | 2 +- lib/Base/SendToastNotificationRequest.php | 2 +- .../SendToastNotificationRequestDetail.php | 2 +- lib/Base/SingleSelectColumn.php | 2 +- lib/Base/SingleSelectColumnWithTableName.php | 2 +- lib/Base/SingleSelectFilterPredicate.php | 2 +- lib/Base/SnapshotsApi.php | 2 +- lib/Base/SortType.php | 2 +- lib/Base/SortsInner.php | 2 +- lib/Base/SqlQuery.php | 2 +- lib/Base/SqlQueryParametersInner.php | 2 +- lib/Base/SqlQueryResponse.php | 2 +- lib/Base/StringFilterPredicate.php | 2 +- lib/Base/TableNameObject.php | 2 +- lib/Base/TableWithRowIds.php | 2 +- lib/Base/TablesApi.php | 2 +- lib/Base/TextColumn.php | 2 +- lib/Base/TextColumnWithTableName.php | 2 +- lib/Base/UpdateColumn.php | 2 +- lib/Base/UpdateColumnType.php | 2 +- lib/Base/UpdateComment.php | 2 +- lib/Base/UpdateCommentOptions.php | 2 +- lib/Base/UpdateRow.php | 2 +- lib/Base/UpdateRows.php | 2 +- lib/Base/UpdateRowsUpdatesInner.php | 2 +- .../UpdateSingleMultipleSelectOptions.php | 2 +- ...ingleMultipleSelectOptionsOptionsInner.php | 2 +- lib/Base/UpdateView.php | 2 +- lib/Base/UpdateViewFiltersInner.php | 2 +- lib/Base/UrlColumn.php | 2 +- lib/Base/UrlColumnWithTableName.php | 2 +- lib/Base/ViewsApi.php | 2 +- lib/Configuration.php | 4 +- lib/File/FilesImagesApi.php | 2 +- lib/File/FilesImagesCustomFolderApi.php | 2 +- lib/File/ModelInterface.php | 2 +- lib/FormDataProcessor.php | 2 +- lib/HeaderSelector.php | 2 +- lib/ObjectSerializer.php | 2 +- lib/PythonScheduler/ModelInterface.php | 2 +- lib/PythonScheduler/RunsApi.php | 2 +- lib/PythonScheduler/StatisticsApi.php | 2 +- lib/SysAdmin/AddDepartmentRequest.php | 2 +- lib/SysAdmin/AddNewUserRequest.php | 2 +- lib/SysAdmin/AddNotificationToUserRequest.php | 2 +- lib/SysAdmin/AddTeamRequest.php | 2 +- lib/SysAdmin/AutomationsApi.php | 2 +- lib/SysAdmin/BasesApi.php | 2 +- lib/SysAdmin/CommonDatasetApi.php | 2 +- lib/SysAdmin/CreateGroupRequest.php | 2 +- lib/SysAdmin/DepartmentsApi.php | 2 +- lib/SysAdmin/EnforceTwoFactorRequest.php | 2 +- lib/SysAdmin/ExportApi.php | 2 +- lib/SysAdmin/FormsApi.php | 2 +- lib/SysAdmin/GroupsApi.php | 2 +- lib/SysAdmin/ListAuditLogs200Response.php | 2 +- ...tAuditLogs200ResponseAuditLogListInner.php | 2 +- ...Logs200ResponseAuditLogListInnerDetail.php | 2 +- lib/SysAdmin/LogsApi.php | 2 +- lib/SysAdmin/MaintenanceApi.php | 2 +- lib/SysAdmin/ModelInterface.php | 2 +- lib/SysAdmin/NotificationsApi.php | 2 +- lib/SysAdmin/PluginsApi.php | 2 +- lib/SysAdmin/RepairBase200Response.php | 2 +- lib/SysAdmin/SharingLinksApi.php | 7 +- lib/SysAdmin/StatisticsApi.php | 335 +++++++++++++++++- lib/SysAdmin/SystemInfoCustomizingApi.php | 2 +- lib/SysAdmin/SystemNotificationsApi.php | 2 +- lib/SysAdmin/TeamsApi.php | 2 +- lib/SysAdmin/TransferGroupRequest.php | 2 +- lib/SysAdmin/UpdateAbuseReportRequest.php | 2 +- lib/SysAdmin/UpdateAdminsRole.php | 2 +- lib/SysAdmin/UpdateGeneralSettingsRequest.php | 2 +- lib/SysAdmin/UpdateTeamRequest.php | 48 ++- lib/SysAdmin/UpdateTeamUserRequest.php | 2 +- lib/SysAdmin/UpdateUserRequest.php | 48 ++- lib/SysAdmin/UsersApi.php | 2 +- lib/TeamAdmin/ActivitiesLogsApi.php | 72 ++-- lib/TeamAdmin/SharingLinksApi.php | 10 +- lib/User/Action.php | 2 +- lib/User/ActionAddRecord.php | 2 +- lib/User/ActionAddRecordToOtherTable.php | 2 +- lib/User/ActionAddRecordToOtherTableRow.php | 2 +- lib/User/ActionCalculateAccumulatedValue.php | 2 +- lib/User/ActionCalculateDelta.php | 2 +- lib/User/ActionCalculatePercentage.php | 2 +- lib/User/ActionCalculateRank.php | 2 +- lib/User/ActionExtractUserName.php | 2 +- lib/User/ActionLinkRecord.php | 2 +- .../ActionLinkRecordMatchConditionsInner.php | 2 +- lib/User/ActionLockRecord.php | 2 +- lib/User/ActionLookupAndCopy.php | 2 +- ...ookupAndCopyEqualColumnConditionsInner.php | 2 +- .../ActionLookupAndCopyTableCondition.php | 2 +- lib/User/ActionNotify.php | 2 +- ...ecificConditionsAfterModificationInner.php | 2 +- lib/User/ActionRunPeriodicallyInner.php | 2 +- .../ActionRunPeriodicallyOnRecordsInner.php | 2 +- lib/User/ActionRunPythonScript.php | 2 +- lib/User/ActionSendEmail.php | 2 +- lib/User/ActionUpdateRecord.php | 2 +- lib/User/ActivitiesLogsApi.php | 2 +- lib/User/AddEmailAccountRequest.php | 2 +- lib/User/AddGroupMemberRequest.php | 2 +- lib/User/AddNotificationRuleRequest.php | 2 +- lib/User/AddNotificationRuleRequestAction.php | 2 +- .../AddNotificationRuleRequestTrigger.php | 2 +- lib/User/AddPassword.php | 2 +- lib/User/AddRecordToOtherTableRowDate.php | 2 +- lib/User/AddRecordToOtherTableRowDateTime.php | 2 +- lib/User/AppsApi.php | 2 +- lib/User/AttachmentApi.php | 2 +- lib/User/AutomationsApi.php | 2 +- lib/User/Base.php | 2 +- lib/User/BasePasswordRequest.php | 2 +- lib/User/BaseTable.php | 2 +- lib/User/BasesApi.php | 2 +- lib/User/ChooseADateColumnValue.php | 2 +- lib/User/CommonDatasetApi.php | 2 +- lib/User/Contains.php | 2 +- lib/User/ContainsFilterTerm.php | 2 +- lib/User/CreateAutomationRuleRequest.php | 2 +- lib/User/CreateGroupRequest.php | 2 +- lib/User/DepartmentsApi.php | 2 +- lib/User/Detail.php | 2 +- lib/User/DoesNotContain.php | 2 +- lib/User/EmailAccountsApi.php | 2 +- lib/User/Equal.php | 2 +- lib/User/FilterTermEmpty.php | 2 +- lib/User/FiltersInner.php | 2 +- lib/User/FormsApi.php | 2 +- .../GetBigDataOperationLogs200Response.php | 2 +- ...perationLogs200ResponseOperationsInner.php | 2 +- ...ogs200ResponseOperationsInnerOperation.php | 2 +- lib/User/Greater.php | 2 +- lib/User/GreaterOrEqual.php | 2 +- lib/User/GroupsWorkspacesApi.php | 2 +- lib/User/HasAllOf.php | 2 +- lib/User/HasAnyOf.php | 2 +- lib/User/HasNoneOf.php | 2 +- .../ImportBasefromDTableFile200Response.php | 2 +- ...portBasefromDTableFile200ResponseTable.php | 2 +- lib/User/ImportExportApi.php | 2 +- lib/User/ImportUsersToAppRequest.php | 2 +- lib/User/IncludeMe.php | 2 +- lib/User/Is.php | 2 +- lib/User/IsAdmin.php | 2 +- lib/User/IsAnyOf.php | 2 +- lib/User/IsCurrentUserID.php | 2 +- lib/User/IsEmpty.php | 2 +- lib/User/IsExactly.php | 2 +- lib/User/IsInactive.php | 2 +- lib/User/IsNoneOf.php | 2 +- lib/User/IsNot.php | 2 +- lib/User/IsNotEmpty.php | 2 +- lib/User/IsWithinTheNextMonth.php | 2 +- lib/User/IsWithinTheNextNumberOfDays.php | 2 +- lib/User/IsWithinTheNextWeek.php | 2 +- lib/User/IsWithinTheNextYear.php | 2 +- lib/User/IsWithinThePastMonth.php | 2 +- lib/User/IsWithinThePastNumberOfDays.php | 2 +- lib/User/IsWithinThePastWeek.php | 2 +- lib/User/IsWithinThePastYear.php | 2 +- lib/User/IsWithinThisMonth.php | 2 +- lib/User/IsWithinThisWeek.php | 2 +- lib/User/IsWithinThisYear.php | 2 +- lib/User/Less.php | 2 +- lib/User/LessOrEqual.php | 2 +- lib/User/ListPublicUserInfosRequest.php | 2 +- lib/User/MaintenanceApi.php | 2 +- lib/User/ModelInterface.php | 2 +- lib/User/ModifyPassword.php | 2 +- lib/User/NotEqual.php | 2 +- lib/User/NotificationsApi.php | 2 +- ...eetSpecificConditionsAfterModification.php | 2 +- lib/User/RepairBase200Response.php | 2 +- lib/User/RowAdded.php | 2 +- lib/User/RunPeriodically.php | 2 +- ...RunPeriodicallyOnRecordsMeetConditions.php | 2 +- lib/User/SharingApi.php | 2 +- lib/User/SharingLinksApi.php | 7 +- lib/User/SnapshotsApi.php | 2 +- lib/User/SpecificDateValue.php | 2 +- lib/User/SystemNotificationsApi.php | 2 +- lib/User/TheDayRunningTheTaskValue.php | 2 +- lib/User/Trigger.php | 2 +- ...eetSpecificConditionsAfterModification.php | 2 +- ...icConditionsAfterModificationCondition.php | 2 +- lib/User/TriggerRowAdded.php | 2 +- lib/User/TriggerRowAddedCondition.php | 2 +- .../TriggerRunPeriodicallyByCondition.php | 2 +- lib/User/TriggerRunPeriodicallyCondition.php | 2 +- ...ggerRunPeriodicallyOnRecordsMeetPerDay.php | 2 +- ...PeriodicallyOnRecordsMeetPerDayTrigger.php | 2 +- ...erRunPeriodicallyOnRecordsMeetPerMonth.php | 2 +- ...riodicallyOnRecordsMeetPerMonthTrigger.php | 2 +- ...gerRunPeriodicallyOnRecordsMeetPerWeek.php | 2 +- ...eriodicallyOnRecordsMeetPerWeekTrigger.php | 2 +- lib/User/TriggerRunPeriodicallyPerDay.php | 2 +- .../TriggerRunPeriodicallyPerDayTrigger.php | 2 +- lib/User/TriggerRunPeriodicallyPerMonth.php | 2 +- .../TriggerRunPeriodicallyPerMonthTrigger.php | 2 +- lib/User/TriggerRunPeriodicallyPerWeek.php | 2 +- .../TriggerRunPeriodicallyPerWeekTrigger.php | 2 +- lib/User/UnsetPassword.php | 2 +- lib/User/UpdateCommonDatasetSyncRequest.php | 2 +- lib/User/UpdateGroupRequest.php | 2 +- lib/User/UpdateGroupRoleRequest.php | 2 +- lib/User/UpdateNotificationRuleRequest.php | 2 +- lib/User/UserApi.php | 2 +- lib/User/UsersInfo.php | 2 +- lib/User/WebhooksApi.php | 2 +- lib/User/XDaysBeforeRunningTheTaskValue.php | 2 +- lib/User/XxxExactDate.php | 2 +- lib/User/XxxNumberOfDaysAgo.php | 2 +- lib/User/XxxNumberOfDaysFromNow.php | 2 +- lib/User/XxxOneMonthAgo.php | 2 +- lib/User/XxxOneMonthFromNow.php | 2 +- lib/User/XxxOneWeekAgo.php | 2 +- lib/User/XxxOneWeekFromNow.php | 2 +- lib/User/XxxToday.php | 2 +- lib/User/XxxTomorrow.php | 2 +- lib/User/XxxYesterday.php | 2 +- test/Api/APITokenApiTest.php | 2 +- test/Api/AccountTokenApiTest.php | 2 +- test/Api/AppsApiTest.php | 2 +- test/Api/AttachmentApiTest.php | 2 +- test/Api/AutomationsApiTest.php | 2 +- test/Api/BaseInfoApiTest.php | 2 +- test/Api/BaseTokenApiTest.php | 2 +- test/Api/BasesApiTest.php | 2 +- test/Api/BigDataApiTest.php | 2 +- test/Api/ColumnsApiTest.php | 2 +- test/Api/CommonDatasetApiTest.php | 2 +- test/Api/DepartmentsApiTest.php | 2 +- test/Api/EmailAccountsApiTest.php | 2 +- test/Api/ExportApiTest.php | 2 +- test/Api/FilesImagesApiTest.php | 2 +- test/Api/FilesImagesCustomFolderApiTest.php | 2 +- test/Api/FormsApiTest.php | 2 +- test/Api/GroupsApiTest.php | 2 +- test/Api/GroupsWorkspacesApiTest.php | 2 +- test/Api/ImportExportApiTest.php | 2 +- test/Api/LinksApiTest.php | 2 +- test/Api/LogsApiTest.php | 2 +- test/Api/MaintenanceApiTest.php | 2 +- test/Api/NotificationsApiTest.php | 2 +- test/Api/PluginsApiTest.php | 2 +- test/Api/RowCommentsApiTest.php | 2 +- test/Api/RowsApiTest.php | 2 +- test/Api/RunsApiTest.php | 2 +- test/Api/SharingApiTest.php | 2 +- test/Api/SharingLinksApiTest.php | 2 +- test/Api/SnapshotsApiTest.php | 2 +- test/Api/StatisticsApiTest.php | 14 +- test/Api/SystemInfoCustomizingApiTest.php | 2 +- test/Api/SystemNotificationsApiTest.php | 2 +- test/Api/TablesApiTest.php | 2 +- test/Api/TeamsApiTest.php | 2 +- test/Api/UserApiTest.php | 2 +- test/Api/UsersApiTest.php | 2 +- test/Api/ViewsApiTest.php | 2 +- test/Api/WebhooksApiTest.php | 2 +- test/Model/AccessTokenTest.php | 2 +- test/Model/AccountTokenTest.php | 2 +- test/Model/ActionAddRecordTest.php | 2 +- .../ActionAddRecordToOtherTableRowTest.php | 2 +- .../Model/ActionAddRecordToOtherTableTest.php | 2 +- .../ActionCalculateAccumulatedValueTest.php | 2 +- test/Model/ActionCalculateDeltaTest.php | 2 +- test/Model/ActionCalculatePercentageTest.php | 2 +- test/Model/ActionCalculateRankTest.php | 2 +- test/Model/ActionExtractUserNameTest.php | 2 +- ...tionLinkRecordMatchConditionsInnerTest.php | 2 +- test/Model/ActionLinkRecordTest.php | 2 +- test/Model/ActionLockRecordTest.php | 2 +- ...pAndCopyEqualColumnConditionsInnerTest.php | 2 +- .../ActionLookupAndCopyTableConditionTest.php | 2 +- test/Model/ActionLookupAndCopyTest.php | 2 +- test/Model/ActionNotifyTest.php | 2 +- ...icConditionsAfterModificationInnerTest.php | 2 +- test/Model/ActionRunPeriodicallyInnerTest.php | 2 +- ...ctionRunPeriodicallyOnRecordsInnerTest.php | 2 +- test/Model/ActionRunPythonScriptTest.php | 2 +- test/Model/ActionSendEmailTest.php | 2 +- test/Model/ActionTest.php | 2 +- test/Model/ActionUpdateRecordTest.php | 2 +- test/Model/AddDepartmentRequestTest.php | 2 +- test/Model/AddEmailAccountRequestTest.php | 2 +- test/Model/AddGroupMemberRequestTest.php | 2 +- test/Model/AddNewUserRequestTest.php | 2 +- .../AddNotificationRuleRequestActionTest.php | 2 +- test/Model/AddNotificationRuleRequestTest.php | 2 +- .../AddNotificationRuleRequestTriggerTest.php | 2 +- .../AddNotificationToUserRequestTest.php | 2 +- test/Model/AddPasswordTest.php | 2 +- .../AddRecordToOtherTableRowDateTest.php | 2 +- .../AddRecordToOtherTableRowDateTimeTest.php | 2 +- ...eMultipleSelectOptionsOptionsInnerTest.php | 2 +- .../AddSingleMultipleSelectOptionsTest.php | 2 +- test/Model/AddTeamRequestTest.php | 2 +- test/Model/ApiTokenListTest.php | 2 +- test/Model/ApiTokenTemporaryTest.php | 2 +- test/Model/ApiTokenTest.php | 2 +- .../AppendColumnsRequestColumnsInnerTest.php | 2 +- test/Model/AppendColumnsRequestTest.php | 2 +- test/Model/AppendRowTest.php | 2 +- test/Model/AppendRowsTest.php | 2 +- test/Model/ArchiveViewTest.php | 2 +- test/Model/AuthenticationPermissionTest.php | 2 +- test/Model/AutomaticFilterPredicateTest.php | 2 +- test/Model/AutonumberColumnFormatTest.php | 2 +- test/Model/AutonumberColumnTest.php | 2 +- .../AutonumberColumnWithTableNameTest.php | 2 +- test/Model/BasePasswordRequestTest.php | 2 +- test/Model/BaseTableTest.php | 2 +- test/Model/BaseTest.php | 2 +- ...onColumnFormatSelectedColumnsInnerTest.php | 2 +- test/Model/ButtonColumnFormatTest.php | 2 +- test/Model/ButtonColumnTest.php | 2 +- test/Model/ButtonColumnWithTableNameTest.php | 2 +- test/Model/CheckboxColumnTest.php | 2 +- .../Model/CheckboxColumnWithTableNameTest.php | 2 +- test/Model/CheckboxFilterPredicateTest.php | 2 +- test/Model/ChooseADateColumnValueTest.php | 2 +- test/Model/CollaboratorColumnTest.php | 2 +- .../CollaboratorColumnWithTableNameTest.php | 2 +- .../Model/CollaboratorFilterPredicateTest.php | 2 +- test/Model/ContainsFilterTermTest.php | 2 +- test/Model/ContainsTest.php | 2 +- .../Model/CreateAutomationRuleRequestTest.php | 2 +- test/Model/CreateGroupRequestTest.php | 2 +- test/Model/CreateRowCommentTest.php | 2 +- .../CreateTableRequestColumnsInnerTest.php | 2 +- test/Model/CreateTableRequestTest.php | 2 +- test/Model/CreatorColumnTest.php | 2 +- test/Model/CreatorColumnWithTableNameTest.php | 2 +- test/Model/CreatorFilterPredicateTest.php | 2 +- test/Model/CtimeColumnTest.php | 2 +- test/Model/CtimeColumnWithTableNameTest.php | 2 +- test/Model/DateColumnFormatTest.php | 2 +- test/Model/DateColumnTest.php | 2 +- test/Model/DateColumnWithTableNameTest.php | 2 +- test/Model/DateFilterPredicateTest.php | 2 +- test/Model/DateFilterTermModifierTest.php | 2 +- test/Model/DeleteColumnTest.php | 2 +- test/Model/DeleteRowTest.php | 2 +- test/Model/DeleteRowsTest.php | 2 +- test/Model/DeleteSelectOptionsTest.php | 2 +- test/Model/DeleteTableTest.php | 2 +- test/Model/DetailTest.php | 2 +- test/Model/DoesNotContainTest.php | 2 +- test/Model/DuplicateTableTest.php | 2 +- test/Model/DurationColumnFormatTest.php | 2 +- test/Model/DurationColumnTest.php | 2 +- .../Model/DurationColumnWithTableNameTest.php | 2 +- test/Model/EmailColumnTest.php | 2 +- test/Model/EmailColumnWithTableNameTest.php | 2 +- test/Model/EmailFilterPredicateTest.php | 2 +- test/Model/EnforceTwoFactorRequestTest.php | 2 +- test/Model/EqualTest.php | 2 +- test/Model/FileColumnTest.php | 2 +- test/Model/FileColumnWithTableNameTest.php | 2 +- test/Model/FilterConjunctionTest.php | 2 +- test/Model/FilterTermEmptyTest.php | 2 +- test/Model/FiltersAutomaticTest.php | 2 +- test/Model/FiltersCheckboxTest.php | 2 +- test/Model/FiltersCollaboratorTest.php | 2 +- test/Model/FiltersCreatedTest.php | 2 +- test/Model/FiltersCreatorTest.php | 2 +- test/Model/FiltersDateTest.php | 2 +- test/Model/FiltersDateTimeTest.php | 2 +- test/Model/FiltersDurationTest.php | 2 +- test/Model/FiltersEditorTest.php | 2 +- test/Model/FiltersEmailTest.php | 2 +- test/Model/FiltersFileTest.php | 2 +- test/Model/FiltersFormulaTest.php | 2 +- test/Model/FiltersGeolocationTest.php | 2 +- test/Model/FiltersImageTest.php | 2 +- test/Model/FiltersInnerTest.php | 2 +- test/Model/FiltersLinkFormulaTest.php | 2 +- test/Model/FiltersLinkTest.php | 2 +- test/Model/FiltersLongTextTest.php | 2 +- test/Model/FiltersModifiedTest.php | 2 +- test/Model/FiltersMultiSelectTest.php | 2 +- test/Model/FiltersNumberTest.php | 2 +- test/Model/FiltersPercentageTest.php | 2 +- test/Model/FiltersRatingTest.php | 2 +- test/Model/FiltersSingleSelectTest.php | 2 +- test/Model/FiltersTextTest.php | 2 +- test/Model/FiltersUrlTest.php | 2 +- test/Model/FormulaColumnFormatTest.php | 2 +- test/Model/FormulaColumnTest.php | 2 +- test/Model/FormulaColumnWithTableNameTest.php | 2 +- test/Model/FreezeUnfreezeColumnTest.php | 2 +- test/Model/GenerateSnapshotTest.php | 2 +- test/Model/GeoColumnFormatTest.php | 2 +- test/Model/GeolocationColumnTest.php | 2 +- .../GeolocationColumnWithTableNameTest.php | 2 +- ...00ResponseOperationsInnerOperationTest.php | 2 +- ...tionLogs200ResponseOperationsInnerTest.php | 2 +- ...GetBigDataOperationLogs200ResponseTest.php | 2 +- test/Model/GreaterOrEqualTest.php | 2 +- test/Model/GreaterTest.php | 2 +- test/Model/HasAllOfTest.php | 2 +- test/Model/HasAnyOfTest.php | 2 +- test/Model/HasNoneOfTest.php | 2 +- test/Model/ImageColumnTest.php | 2 +- test/Model/ImageColumnWithTableNameTest.php | 2 +- test/Model/ImageFilterPredicateTest.php | 2 +- ...BasefromDTableFile200ResponseTableTest.php | 2 +- ...mportBasefromDTableFile200ResponseTest.php | 2 +- test/Model/ImportUsersToAppRequestTest.php | 2 +- test/Model/IncludeMeTest.php | 2 +- test/Model/InsertColumnRequestTest.php | 2 +- test/Model/InsertRowTest.php | 2 +- test/Model/InsertRowsIntoBigDataTest.php | 2 +- test/Model/IsAdminTest.php | 2 +- test/Model/IsAnyOfTest.php | 2 +- test/Model/IsCurrentUserIDTest.php | 2 +- test/Model/IsEmptyTest.php | 2 +- test/Model/IsExactlyTest.php | 2 +- test/Model/IsInactiveTest.php | 2 +- test/Model/IsNoneOfTest.php | 2 +- test/Model/IsNotEmptyTest.php | 2 +- test/Model/IsNotTest.php | 2 +- test/Model/IsTest.php | 2 +- test/Model/IsWithinTheNextMonthTest.php | 2 +- .../Model/IsWithinTheNextNumberOfDaysTest.php | 2 +- test/Model/IsWithinTheNextWeekTest.php | 2 +- test/Model/IsWithinTheNextYearTest.php | 2 +- test/Model/IsWithinThePastMonthTest.php | 2 +- .../Model/IsWithinThePastNumberOfDaysTest.php | 2 +- test/Model/IsWithinThePastWeekTest.php | 2 +- test/Model/IsWithinThePastYearTest.php | 2 +- test/Model/IsWithinThisMonthTest.php | 2 +- test/Model/IsWithinThisWeekTest.php | 2 +- test/Model/IsWithinThisYearTest.php | 2 +- test/Model/LastModifierColumnTest.php | 2 +- .../LastModifierColumnWithTableNameTest.php | 2 +- test/Model/LessOrEqualTest.php | 2 +- test/Model/LessTest.php | 2 +- test/Model/LinkColumnFormatTest.php | 2 +- test/Model/LinkColumnTest.php | 2 +- test/Model/LinkColumnWithTableNameTest.php | 2 +- test/Model/LinkFilterPredicateTest.php | 2 +- .../Model/LinkFormulaColumnColumnDataTest.php | 2 +- .../LinkFormulaColumnCountLinksFormatTest.php | 2 +- .../LinkFormulaColumnFindmaxFormatTest.php | 2 +- .../LinkFormulaColumnFindminFormatTest.php | 2 +- .../LinkFormulaColumnLookupFormatTest.php | 2 +- .../LinkFormulaColumnRollupFormatTest.php | 2 +- test/Model/LinkFormulaColumnTest.php | 2 +- .../LinkFormulaColumnWithTableNameTest.php | 2 +- ...200ResponseAuditLogListInnerDetailTest.php | 2 +- ...itLogs200ResponseAuditLogListInnerTest.php | 2 +- test/Model/ListAuditLogs200ResponseTest.php | 2 +- test/Model/ListPublicUserInfosRequestTest.php | 2 +- test/Model/ListRowLinksRowsInnerTest.php | 2 +- test/Model/ListRowLinksTest.php | 2 +- test/Model/LongTextColumnTest.php | 2 +- .../Model/LongTextColumnWithTableNameTest.php | 2 +- .../MatchLinkColumnsMatchingKeysInnerTest.php | 2 +- test/Model/MatchLinkColumnsTest.php | 2 +- test/Model/ModifyPasswordTest.php | 2 +- test/Model/MoveColumnTest.php | 2 +- .../MoveRowsToNormalBackendRequestTest.php | 2 +- test/Model/MtimeColumnTest.php | 2 +- test/Model/MtimeColumnWithTableNameTest.php | 2 +- test/Model/MultipleSelectColumnTest.php | 2 +- .../MultipleSelectColumnWithTableNameTest.php | 2 +- .../MultipleSelectFilterPredicateTest.php | 2 +- test/Model/NewViewTest.php | 2 +- test/Model/NotEqualTest.php | 2 +- test/Model/NumberColumnFormatTest.php | 2 +- test/Model/NumberColumnTest.php | 2 +- test/Model/NumberColumnWithTableNameTest.php | 2 +- test/Model/NumberFilterPredicateTest.php | 2 +- test/Model/RatingColumnFormatTest.php | 2 +- test/Model/RatingColumnTest.php | 2 +- test/Model/RatingColumnWithTableNameTest.php | 2 +- test/Model/RatingFilterTermTest.php | 2 +- ...pecificConditionsAfterModificationTest.php | 2 +- test/Model/RenameColumnTest.php | 2 +- test/Model/RenameTableTest.php | 2 +- test/Model/RepairBase200ResponseTest.php | 2 +- test/Model/ResizeColumnTest.php | 2 +- test/Model/RowAddedTest.php | 2 +- test/Model/RowLinkCreateUpdateDeleteTest.php | 2 +- test/Model/RowsTest.php | 2 +- test/Model/RowsWithTableNameTest.php | 2 +- ...eriodicallyOnRecordsMeetConditionsTest.php | 2 +- test/Model/RunPeriodicallyTest.php | 2 +- .../SelectColumnFormatOptionsInnerTest.php | 2 +- test/Model/SelectColumnFormatTest.php | 2 +- ...SendToastNotificationRequestDetailTest.php | 2 +- .../SendToastNotificationRequestTest.php | 2 +- test/Model/SingleSelectColumnTest.php | 2 +- .../SingleSelectColumnWithTableNameTest.php | 2 +- .../Model/SingleSelectFilterPredicateTest.php | 2 +- test/Model/SortTypeTest.php | 2 +- test/Model/SortsInnerTest.php | 2 +- test/Model/SpecificDateValueTest.php | 2 +- test/Model/SqlQueryParametersInnerTest.php | 2 +- test/Model/SqlQueryResponseTest.php | 2 +- test/Model/SqlQueryTest.php | 2 +- test/Model/StringFilterPredicateTest.php | 2 +- test/Model/TableNameObjectTest.php | 2 +- test/Model/TableWithRowIdsTest.php | 2 +- test/Model/TextColumnTest.php | 2 +- test/Model/TextColumnWithTableNameTest.php | 2 +- test/Model/TheDayRunningTheTaskValueTest.php | 2 +- test/Model/TransferGroupRequestTest.php | 2 +- ...nditionsAfterModificationConditionTest.php | 2 +- ...pecificConditionsAfterModificationTest.php | 2 +- test/Model/TriggerRowAddedConditionTest.php | 2 +- test/Model/TriggerRowAddedTest.php | 2 +- .../TriggerRunPeriodicallyByConditionTest.php | 2 +- .../TriggerRunPeriodicallyConditionTest.php | 2 +- ...RunPeriodicallyOnRecordsMeetPerDayTest.php | 2 +- ...odicallyOnRecordsMeetPerDayTriggerTest.php | 2 +- ...nPeriodicallyOnRecordsMeetPerMonthTest.php | 2 +- ...icallyOnRecordsMeetPerMonthTriggerTest.php | 2 +- ...unPeriodicallyOnRecordsMeetPerWeekTest.php | 2 +- ...dicallyOnRecordsMeetPerWeekTriggerTest.php | 2 +- .../TriggerRunPeriodicallyPerDayTest.php | 2 +- ...riggerRunPeriodicallyPerDayTriggerTest.php | 2 +- .../TriggerRunPeriodicallyPerMonthTest.php | 2 +- ...ggerRunPeriodicallyPerMonthTriggerTest.php | 2 +- .../TriggerRunPeriodicallyPerWeekTest.php | 2 +- ...iggerRunPeriodicallyPerWeekTriggerTest.php | 2 +- test/Model/TriggerTest.php | 2 +- test/Model/UnsetPasswordTest.php | 2 +- test/Model/UpdateAbuseReportRequestTest.php | 2 +- test/Model/UpdateAdminsRoleTest.php | 2 +- test/Model/UpdateColumnTest.php | 2 +- test/Model/UpdateColumnTypeTest.php | 2 +- test/Model/UpdateCommentOptionsTest.php | 2 +- test/Model/UpdateCommentTest.php | 2 +- .../UpdateCommonDatasetSyncRequestTest.php | 2 +- .../UpdateGeneralSettingsRequestTest.php | 2 +- test/Model/UpdateGroupRoleRequestTest.php | 2 +- .../UpdateNotificationRuleRequestTest.php | 2 +- test/Model/UpdateRowTest.php | 2 +- test/Model/UpdateRowsTest.php | 2 +- test/Model/UpdateRowsUpdatesInnerTest.php | 2 +- ...eMultipleSelectOptionsOptionsInnerTest.php | 2 +- .../UpdateSingleMultipleSelectOptionsTest.php | 2 +- test/Model/UpdateTeamRequestTest.php | 11 +- test/Model/UpdateTeamUserRequestTest.php | 2 +- test/Model/UpdateUserRequestTest.php | 11 +- test/Model/UpdateViewFiltersInnerTest.php | 2 +- test/Model/UpdateViewTest.php | 2 +- test/Model/UrlColumnTest.php | 2 +- test/Model/UrlColumnWithTableNameTest.php | 2 +- test/Model/UsersInfoTest.php | 2 +- .../XDaysBeforeRunningTheTaskValueTest.php | 2 +- test/Model/XxxExactDateTest.php | 2 +- test/Model/XxxNumberOfDaysAgoTest.php | 2 +- test/Model/XxxNumberOfDaysFromNowTest.php | 2 +- test/Model/XxxOneMonthAgoTest.php | 2 +- test/Model/XxxOneMonthFromNowTest.php | 2 +- test/Model/XxxOneWeekAgoTest.php | 2 +- test/Model/XxxOneWeekFromNowTest.php | 2 +- test/Model/XxxTodayTest.php | 2 +- test/Model/XxxTomorrowTest.php | 2 +- test/Model/XxxYesterdayTest.php | 2 +- 730 files changed, 1284 insertions(+), 786 deletions(-) diff --git a/README_Auth.md b/README_Auth.md index 976f70b..9108970 100644 --- a/README_Auth.md +++ b/README_Auth.md @@ -19,5 +19,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.0` +- API version: `6.1` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_Base.md b/README_Base.md index c00830d..7288d2c 100644 --- a/README_Base.md +++ b/README_Base.md @@ -63,5 +63,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.0` +- API version: `6.1` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_File.md b/README_File.md index 12c80a4..85337b7 100644 --- a/README_File.md +++ b/README_File.md @@ -19,5 +19,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.0` +- API version: `6.1` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_PythonScheduler.md b/README_PythonScheduler.md index 885ba85..8602eb7 100644 --- a/README_PythonScheduler.md +++ b/README_PythonScheduler.md @@ -16,5 +16,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.0` +- API version: `6.1` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_SysAdmin.md b/README_SysAdmin.md index 0444f15..f35fe7d 100644 --- a/README_SysAdmin.md +++ b/README_SysAdmin.md @@ -62,6 +62,7 @@ Class | Method | HTTP request | Description *StatisticsApi* | [**getActiveUsersPerDay**](docs/SysAdmin/Api/StatisticsApi.md#getactiveusersperday) | **GET** /api/v2.1/admin/statistics/active-users/ | Get Active Users (per Day) *StatisticsApi* | [**getAutomationRules**](docs/SysAdmin/Api/StatisticsApi.md#getautomationrules) | **GET** /api/v2.1/admin/statistics/auto-rules/ | Get Automation Rules *StatisticsApi* | [**getExternalApps**](docs/SysAdmin/Api/StatisticsApi.md#getexternalapps) | **GET** /api/v2.1/admin/statistics/external-apps/ | Get External Apps +*StatisticsApi* | [**getOwnerOrTeamAIStatistics**](docs/SysAdmin/Api/StatisticsApi.md#getownerorteamaistatistics) | **GET** /api/v2.1/admin/statistics/ai/ | Get AI statistics by owner/team *StatisticsApi* | [**getScriptRunningCountByUser**](docs/SysAdmin/Api/StatisticsApi.md#getscriptrunningcountbyuser) | **GET** /api/v2.1/admin/statistics/scripts-running/ | Get Script Running Count by User *StatisticsApi* | [**listActiveUsersByDay**](docs/SysAdmin/Api/StatisticsApi.md#listactiveusersbyday) | **GET** /api/v2.1/admin/daily-active-users/ | List Active Users (one Day) *StatisticsApi* | [**listScriptTasks**](docs/SysAdmin/Api/StatisticsApi.md#listscripttasks) | **GET** /api/v2.1/admin/scripts-tasks/ | List Scripts Tasks @@ -107,5 +108,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.0` +- API version: `6.1` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_User.md b/README_User.md index 61698a0..e5ac2b1 100644 --- a/README_User.md +++ b/README_User.md @@ -151,5 +151,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.0` +- API version: `6.1` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/docs/SysAdmin/Api/PluginsApi.md b/docs/SysAdmin/Api/PluginsApi.md index 6b90371..7e600a9 100644 --- a/docs/SysAdmin/Api/PluginsApi.md +++ b/docs/SysAdmin/Api/PluginsApi.md @@ -19,7 +19,7 @@ addPlugin($plugin): object Add Plugin -Add a plugin with a .zip file. This file could be retrieved from the internet, for example, from the [SeaTable Plugins Market](https://cloud.seatable.io/dtable/view-external-links/custom/plugins/). +Add a plugin with a .zip file. This file could be retrieved from the internet, for example, from the [SeaTable Plugins Market](https://cloud.seatable.io/apps/custom/plugin-archive). ### Example diff --git a/docs/SysAdmin/Api/StatisticsApi.md b/docs/SysAdmin/Api/StatisticsApi.md index d7b5073..4e58f93 100644 --- a/docs/SysAdmin/Api/StatisticsApi.md +++ b/docs/SysAdmin/Api/StatisticsApi.md @@ -7,6 +7,7 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi | [**getActiveUsersPerDay()**](StatisticsApi.md#getActiveUsersPerDay) | **GET** /api/v2.1/admin/statistics/active-users/ | Get Active Users (per Day) | | [**getAutomationRules()**](StatisticsApi.md#getAutomationRules) | **GET** /api/v2.1/admin/statistics/auto-rules/ | Get Automation Rules | | [**getExternalApps()**](StatisticsApi.md#getExternalApps) | **GET** /api/v2.1/admin/statistics/external-apps/ | Get External Apps | +| [**getOwnerOrTeamAIStatistics()**](StatisticsApi.md#getOwnerOrTeamAIStatistics) | **GET** /api/v2.1/admin/statistics/ai/ | Get AI statistics by owner/team | | [**getScriptRunningCountByUser()**](StatisticsApi.md#getScriptRunningCountByUser) | **GET** /api/v2.1/admin/statistics/scripts-running/ | Get Script Running Count by User | | [**listActiveUsersByDay()**](StatisticsApi.md#listActiveUsersByDay) | **GET** /api/v2.1/admin/daily-active-users/ | List Active Users (one Day) | | [**listScriptTasks()**](StatisticsApi.md#listScriptTasks) | **GET** /api/v2.1/admin/scripts-tasks/ | List Scripts Tasks | @@ -169,6 +170,61 @@ AccountTokenAuth +## `getOwnerOrTeamAIStatistics()` + +```php +getOwnerOrTeamAIStatistics($group_by, $date, $page, $per_page): object +``` + +Get AI statistics by owner/team + +Get AI usage statistics monthly by owner/team. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\SysAdmin\StatisticsApi( + new GuzzleHttp\Client(), + $config +); +$group_by = owner; // string | Query by owner or organization +$date = 2025-01-01; // string | A date string in YYYY-MM-DD format +$page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. +$per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. + +try { + $result = $apiInstance->getOwnerOrTeamAIStatistics($group_by, $date, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling StatisticsApi->getOwnerOrTeamAIStatistics: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **group_by** | **string**| Query by owner or organization | | +| **date** | **string**| A date string in YYYY-MM-DD format | | +| **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | +| **per_page** | **int**| The number of results that should be returned. If no value is provided, 25 results will be returned. | [optional] | + +### Return type + +**object** + +### Authorization + +AccountTokenAuth + + + + ## `getScriptRunningCountByUser()` ```php diff --git a/docs/SysAdmin/Model/UpdateTeamRequest.md b/docs/SysAdmin/Model/UpdateTeamRequest.md index aa7b0e5..4572c11 100644 --- a/docs/SysAdmin/Model/UpdateTeamRequest.md +++ b/docs/SysAdmin/Model/UpdateTeamRequest.md @@ -9,4 +9,5 @@ Name | Type | Description | Notes **row_limit** | **int** | User's total row limit in number. For example 10000. | [optional] **max_user_number** | **string** | The maximum user number. | [optional] **asset_quota_mb** | **string** | The asset quota in MB. | [optional] +**monthly_automation_limit_per_user** | **int** | Monthly limit on the number of automation rules per user. | [optional] diff --git a/docs/SysAdmin/Model/UpdateUserRequest.md b/docs/SysAdmin/Model/UpdateUserRequest.md index 2b3fbcd..af8ad40 100644 --- a/docs/SysAdmin/Model/UpdateUserRequest.md +++ b/docs/SysAdmin/Model/UpdateUserRequest.md @@ -17,4 +17,5 @@ Name | Type | Description | Notes **row_limit** | **int** | User's total row limit in number. For example 10000. | [optional] **quota_total** | **string** | Update their total quota in MB. | [optional] **asset_quota_mb** | **string** | The asset quota in MB. | [optional] +**monthly_automation_limit_per_user** | **int** | Monthly limit on the number of automation rules per user. | [optional] diff --git a/docs/TeamAdmin/Api/ActivitiesLogsApi.md b/docs/TeamAdmin/Api/ActivitiesLogsApi.md index 9c416bf..e313222 100644 --- a/docs/TeamAdmin/Api/ActivitiesLogsApi.md +++ b/docs/TeamAdmin/Api/ActivitiesLogsApi.md @@ -16,7 +16,7 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi ## `listAutomationLogs()` ```php -listAutomationLogs($org_id, $start, $end, $page, $per_page): object +listAutomationLogs($org_id, $dtable_uuid, $start, $end, $page, $per_page): object ``` List Automation Logs @@ -36,13 +36,14 @@ $apiInstance = new SeaTable\Client\TeamAdmin\ActivitiesLogsApi( $config ); $org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. +$dtable_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. $start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. $end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. $page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. $per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. try { - $result = $apiInstance->listAutomationLogs($org_id, $start, $end, $page, $per_page); + $result = $apiInstance->listAutomationLogs($org_id, $dtable_uuid, $start, $end, $page, $per_page); print_r($result); } catch (Exception $e) { echo 'Exception when calling ActivitiesLogsApi->listAutomationLogs: ', $e->getMessage(), PHP_EOL; @@ -54,6 +55,7 @@ try { | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | +| **dtable_uuid** | **string**| The unique identifier of a base. | [optional] | | **start** | **\DateTime**| Start date in ISO format. | [optional] | | **end** | **\DateTime**| End date in ISO format. | [optional] | | **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | @@ -179,7 +181,7 @@ AccountTokenAuth ## `listPythonRuns()` ```php -listPythonRuns($org_id, $base_uuid, $start, $end, $page, $per_page): object +listPythonRuns($org_id, $dtable_uuid, $start, $end, $page, $per_page): object ``` List Python Runs @@ -199,14 +201,14 @@ $apiInstance = new SeaTable\Client\TeamAdmin\ActivitiesLogsApi( $config ); $org_id = 1; // int | The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. -$base_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. +$dtable_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. $start = 2025-11-01T06:00:00+01:00; // \DateTime | Start date in ISO format. $end = 2025-11-30T18:00:00+01:00; // \DateTime | End date in ISO format. $page = 1; // int | The page number you want to start showing the entries. If no value is provided, 1 will be used. $per_page = 25; // int | The number of results that should be returned. If no value is provided, 25 results will be returned. try { - $result = $apiInstance->listPythonRuns($org_id, $base_uuid, $start, $end, $page, $per_page); + $result = $apiInstance->listPythonRuns($org_id, $dtable_uuid, $start, $end, $page, $per_page); print_r($result); } catch (Exception $e) { echo 'Exception when calling ActivitiesLogsApi->listPythonRuns: ', $e->getMessage(), PHP_EOL; @@ -218,7 +220,7 @@ try { | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | | **org_id** | **int**| The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. | | -| **base_uuid** | **string**| The unique identifier of a base. | [optional] | +| **dtable_uuid** | **string**| The unique identifier of a base. | [optional] | | **start** | **\DateTime**| Start date in ISO format. | [optional] | | **end** | **\DateTime**| End date in ISO format. | [optional] | | **page** | **int**| The page number you want to start showing the entries. If no value is provided, 1 will be used. | [optional] | diff --git a/lib/ApiException.php b/lib/ApiException.php index d68cb63..5e5ca38 100644 --- a/lib/ApiException.php +++ b/lib/ApiException.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/APITokenApi.php b/lib/Auth/APITokenApi.php index b12bd35..9c85925 100644 --- a/lib/Auth/APITokenApi.php +++ b/lib/Auth/APITokenApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/AccessToken.php b/lib/Auth/AccessToken.php index f125b6e..a3cc65d 100644 --- a/lib/Auth/AccessToken.php +++ b/lib/Auth/AccessToken.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/AccountToken.php b/lib/Auth/AccountToken.php index cd286b0..bdb75b9 100644 --- a/lib/Auth/AccountToken.php +++ b/lib/Auth/AccountToken.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/AccountTokenApi.php b/lib/Auth/AccountTokenApi.php index ba9e56c..5c22422 100644 --- a/lib/Auth/AccountTokenApi.php +++ b/lib/Auth/AccountTokenApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/ApiToken.php b/lib/Auth/ApiToken.php index ed8db06..fb1b35e 100644 --- a/lib/Auth/ApiToken.php +++ b/lib/Auth/ApiToken.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/ApiTokenList.php b/lib/Auth/ApiTokenList.php index 02e5966..6397830 100644 --- a/lib/Auth/ApiTokenList.php +++ b/lib/Auth/ApiTokenList.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/ApiTokenTemporary.php b/lib/Auth/ApiTokenTemporary.php index e9734e3..d0c24cd 100644 --- a/lib/Auth/ApiTokenTemporary.php +++ b/lib/Auth/ApiTokenTemporary.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/AuthenticationPermission.php b/lib/Auth/AuthenticationPermission.php index b5b017f..775b97d 100644 --- a/lib/Auth/AuthenticationPermission.php +++ b/lib/Auth/AuthenticationPermission.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/BaseTokenApi.php b/lib/Auth/BaseTokenApi.php index d7c2ebc..44f5755 100644 --- a/lib/Auth/BaseTokenApi.php +++ b/lib/Auth/BaseTokenApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/ModelInterface.php b/lib/Auth/ModelInterface.php index 7d611d8..de754cd 100644 --- a/lib/Auth/ModelInterface.php +++ b/lib/Auth/ModelInterface.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ActivitiesLogsApi.php b/lib/Base/ActivitiesLogsApi.php index 4528b5f..f7353d7 100644 --- a/lib/Base/ActivitiesLogsApi.php +++ b/lib/Base/ActivitiesLogsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AddSingleMultipleSelectOptions.php b/lib/Base/AddSingleMultipleSelectOptions.php index c27fde3..ad138ec 100644 --- a/lib/Base/AddSingleMultipleSelectOptions.php +++ b/lib/Base/AddSingleMultipleSelectOptions.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php b/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php index 8049fa3..c903ab6 100644 --- a/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php +++ b/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AppendColumnsRequest.php b/lib/Base/AppendColumnsRequest.php index 4f03170..e93fc9c 100644 --- a/lib/Base/AppendColumnsRequest.php +++ b/lib/Base/AppendColumnsRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AppendColumnsRequestColumnsInner.php b/lib/Base/AppendColumnsRequestColumnsInner.php index 66e520f..464c183 100644 --- a/lib/Base/AppendColumnsRequestColumnsInner.php +++ b/lib/Base/AppendColumnsRequestColumnsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AppendRow.php b/lib/Base/AppendRow.php index c6c9cda..9b7dfe7 100644 --- a/lib/Base/AppendRow.php +++ b/lib/Base/AppendRow.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AppendRows.php b/lib/Base/AppendRows.php index 7153e0c..0391825 100644 --- a/lib/Base/AppendRows.php +++ b/lib/Base/AppendRows.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ArchiveView.php b/lib/Base/ArchiveView.php index 469166a..6844395 100644 --- a/lib/Base/ArchiveView.php +++ b/lib/Base/ArchiveView.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AutomaticFilterPredicate.php b/lib/Base/AutomaticFilterPredicate.php index bf906a8..b092519 100644 --- a/lib/Base/AutomaticFilterPredicate.php +++ b/lib/Base/AutomaticFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AutonumberColumn.php b/lib/Base/AutonumberColumn.php index fa699a0..b13eaf6 100644 --- a/lib/Base/AutonumberColumn.php +++ b/lib/Base/AutonumberColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AutonumberColumnFormat.php b/lib/Base/AutonumberColumnFormat.php index 790a5e0..0f8aba5 100644 --- a/lib/Base/AutonumberColumnFormat.php +++ b/lib/Base/AutonumberColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AutonumberColumnWithTableName.php b/lib/Base/AutonumberColumnWithTableName.php index 57545b0..64cefa4 100644 --- a/lib/Base/AutonumberColumnWithTableName.php +++ b/lib/Base/AutonumberColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/Base.php b/lib/Base/Base.php index 752b593..ed9961e 100644 --- a/lib/Base/Base.php +++ b/lib/Base/Base.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/BaseInfoApi.php b/lib/Base/BaseInfoApi.php index 2888bde..c425397 100644 --- a/lib/Base/BaseInfoApi.php +++ b/lib/Base/BaseInfoApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/BigDataApi.php b/lib/Base/BigDataApi.php index c961a55..9d98d97 100644 --- a/lib/Base/BigDataApi.php +++ b/lib/Base/BigDataApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ButtonColumn.php b/lib/Base/ButtonColumn.php index bdd01bd..23e6ea3 100644 --- a/lib/Base/ButtonColumn.php +++ b/lib/Base/ButtonColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ButtonColumnFormat.php b/lib/Base/ButtonColumnFormat.php index c90bc3e..0c7f19e 100644 --- a/lib/Base/ButtonColumnFormat.php +++ b/lib/Base/ButtonColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ButtonColumnFormatSelectedColumnsInner.php b/lib/Base/ButtonColumnFormatSelectedColumnsInner.php index 3c1b01c..2d1edc5 100644 --- a/lib/Base/ButtonColumnFormatSelectedColumnsInner.php +++ b/lib/Base/ButtonColumnFormatSelectedColumnsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ButtonColumnWithTableName.php b/lib/Base/ButtonColumnWithTableName.php index 49e2ae0..1104342 100644 --- a/lib/Base/ButtonColumnWithTableName.php +++ b/lib/Base/ButtonColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CheckboxColumn.php b/lib/Base/CheckboxColumn.php index 4a53505..53a8ac9 100644 --- a/lib/Base/CheckboxColumn.php +++ b/lib/Base/CheckboxColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CheckboxColumnWithTableName.php b/lib/Base/CheckboxColumnWithTableName.php index 54f2783..dc10805 100644 --- a/lib/Base/CheckboxColumnWithTableName.php +++ b/lib/Base/CheckboxColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CheckboxFilterPredicate.php b/lib/Base/CheckboxFilterPredicate.php index 78f8953..8865cd1 100644 --- a/lib/Base/CheckboxFilterPredicate.php +++ b/lib/Base/CheckboxFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CollaboratorColumn.php b/lib/Base/CollaboratorColumn.php index cb23ca4..1da1a00 100644 --- a/lib/Base/CollaboratorColumn.php +++ b/lib/Base/CollaboratorColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CollaboratorColumnWithTableName.php b/lib/Base/CollaboratorColumnWithTableName.php index 1464750..22ef34e 100644 --- a/lib/Base/CollaboratorColumnWithTableName.php +++ b/lib/Base/CollaboratorColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CollaboratorFilterPredicate.php b/lib/Base/CollaboratorFilterPredicate.php index 4790412..477bced 100644 --- a/lib/Base/CollaboratorFilterPredicate.php +++ b/lib/Base/CollaboratorFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ColumnsApi.php b/lib/Base/ColumnsApi.php index 2467c01..b466217 100644 --- a/lib/Base/ColumnsApi.php +++ b/lib/Base/ColumnsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreateRowComment.php b/lib/Base/CreateRowComment.php index 53e003d..83e45e6 100644 --- a/lib/Base/CreateRowComment.php +++ b/lib/Base/CreateRowComment.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreateTableRequest.php b/lib/Base/CreateTableRequest.php index bcd3674..3d8650f 100644 --- a/lib/Base/CreateTableRequest.php +++ b/lib/Base/CreateTableRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreateTableRequestColumnsInner.php b/lib/Base/CreateTableRequestColumnsInner.php index 8087a9a..23dd5dd 100644 --- a/lib/Base/CreateTableRequestColumnsInner.php +++ b/lib/Base/CreateTableRequestColumnsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreatorColumn.php b/lib/Base/CreatorColumn.php index 3b1024f..5f02e70 100644 --- a/lib/Base/CreatorColumn.php +++ b/lib/Base/CreatorColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreatorColumnWithTableName.php b/lib/Base/CreatorColumnWithTableName.php index 93d8a95..ca26ee2 100644 --- a/lib/Base/CreatorColumnWithTableName.php +++ b/lib/Base/CreatorColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreatorFilterPredicate.php b/lib/Base/CreatorFilterPredicate.php index 308e190..ee98854 100644 --- a/lib/Base/CreatorFilterPredicate.php +++ b/lib/Base/CreatorFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CtimeColumn.php b/lib/Base/CtimeColumn.php index 2b6e515..a7a7788 100644 --- a/lib/Base/CtimeColumn.php +++ b/lib/Base/CtimeColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CtimeColumnWithTableName.php b/lib/Base/CtimeColumnWithTableName.php index 34883d2..892e71a 100644 --- a/lib/Base/CtimeColumnWithTableName.php +++ b/lib/Base/CtimeColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateColumn.php b/lib/Base/DateColumn.php index 4f02d8c..4c06eee 100644 --- a/lib/Base/DateColumn.php +++ b/lib/Base/DateColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateColumnFormat.php b/lib/Base/DateColumnFormat.php index 94952c3..1f559e4 100644 --- a/lib/Base/DateColumnFormat.php +++ b/lib/Base/DateColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateColumnWithTableName.php b/lib/Base/DateColumnWithTableName.php index 33ddf11..4e4fefb 100644 --- a/lib/Base/DateColumnWithTableName.php +++ b/lib/Base/DateColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateFilterPredicate.php b/lib/Base/DateFilterPredicate.php index 7a5d20c..d69c999 100644 --- a/lib/Base/DateFilterPredicate.php +++ b/lib/Base/DateFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateFilterTermModifier.php b/lib/Base/DateFilterTermModifier.php index 926bca1..519dd87 100644 --- a/lib/Base/DateFilterTermModifier.php +++ b/lib/Base/DateFilterTermModifier.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteColumn.php b/lib/Base/DeleteColumn.php index c30052a..6278ab2 100644 --- a/lib/Base/DeleteColumn.php +++ b/lib/Base/DeleteColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteRow.php b/lib/Base/DeleteRow.php index aecf714..cac521e 100644 --- a/lib/Base/DeleteRow.php +++ b/lib/Base/DeleteRow.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteRows.php b/lib/Base/DeleteRows.php index 502c1fd..ff8aba1 100644 --- a/lib/Base/DeleteRows.php +++ b/lib/Base/DeleteRows.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteSelectOptions.php b/lib/Base/DeleteSelectOptions.php index aa27efd..872bc40 100644 --- a/lib/Base/DeleteSelectOptions.php +++ b/lib/Base/DeleteSelectOptions.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteTable.php b/lib/Base/DeleteTable.php index 4122cb0..00b708e 100644 --- a/lib/Base/DeleteTable.php +++ b/lib/Base/DeleteTable.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DuplicateTable.php b/lib/Base/DuplicateTable.php index f3b1d5f..1dbf540 100644 --- a/lib/Base/DuplicateTable.php +++ b/lib/Base/DuplicateTable.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DurationColumn.php b/lib/Base/DurationColumn.php index e7f8244..d7c590c 100644 --- a/lib/Base/DurationColumn.php +++ b/lib/Base/DurationColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DurationColumnFormat.php b/lib/Base/DurationColumnFormat.php index cac5cb4..8ebbb21 100644 --- a/lib/Base/DurationColumnFormat.php +++ b/lib/Base/DurationColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DurationColumnWithTableName.php b/lib/Base/DurationColumnWithTableName.php index 7aa4aa1..78331de 100644 --- a/lib/Base/DurationColumnWithTableName.php +++ b/lib/Base/DurationColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/EmailColumn.php b/lib/Base/EmailColumn.php index 7a10b33..e3ac357 100644 --- a/lib/Base/EmailColumn.php +++ b/lib/Base/EmailColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/EmailColumnWithTableName.php b/lib/Base/EmailColumnWithTableName.php index 04b177a..b229b00 100644 --- a/lib/Base/EmailColumnWithTableName.php +++ b/lib/Base/EmailColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/EmailFilterPredicate.php b/lib/Base/EmailFilterPredicate.php index 26b42f0..5061fd7 100644 --- a/lib/Base/EmailFilterPredicate.php +++ b/lib/Base/EmailFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FileColumn.php b/lib/Base/FileColumn.php index ff9c231..2663890 100644 --- a/lib/Base/FileColumn.php +++ b/lib/Base/FileColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FileColumnWithTableName.php b/lib/Base/FileColumnWithTableName.php index 36bf808..56fd24f 100644 --- a/lib/Base/FileColumnWithTableName.php +++ b/lib/Base/FileColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FilterConjunction.php b/lib/Base/FilterConjunction.php index 58d55b0..6acda3d 100644 --- a/lib/Base/FilterConjunction.php +++ b/lib/Base/FilterConjunction.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersAutomatic.php b/lib/Base/FiltersAutomatic.php index 217cb52..1f712f3 100644 --- a/lib/Base/FiltersAutomatic.php +++ b/lib/Base/FiltersAutomatic.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersCheckbox.php b/lib/Base/FiltersCheckbox.php index 628831a..f951e2c 100644 --- a/lib/Base/FiltersCheckbox.php +++ b/lib/Base/FiltersCheckbox.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersCollaborator.php b/lib/Base/FiltersCollaborator.php index 0311eea..9a5f538 100644 --- a/lib/Base/FiltersCollaborator.php +++ b/lib/Base/FiltersCollaborator.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersCreated.php b/lib/Base/FiltersCreated.php index 6fa5a63..cad6d38 100644 --- a/lib/Base/FiltersCreated.php +++ b/lib/Base/FiltersCreated.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersCreator.php b/lib/Base/FiltersCreator.php index f2e5f3f..ff458a5 100644 --- a/lib/Base/FiltersCreator.php +++ b/lib/Base/FiltersCreator.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersDate.php b/lib/Base/FiltersDate.php index a1ec796..1a43670 100644 --- a/lib/Base/FiltersDate.php +++ b/lib/Base/FiltersDate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersDateTime.php b/lib/Base/FiltersDateTime.php index 393f018..48b3c89 100644 --- a/lib/Base/FiltersDateTime.php +++ b/lib/Base/FiltersDateTime.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersDuration.php b/lib/Base/FiltersDuration.php index 109989f..2266a00 100644 --- a/lib/Base/FiltersDuration.php +++ b/lib/Base/FiltersDuration.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersEditor.php b/lib/Base/FiltersEditor.php index 2cece4c..f49b45d 100644 --- a/lib/Base/FiltersEditor.php +++ b/lib/Base/FiltersEditor.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersEmail.php b/lib/Base/FiltersEmail.php index b8966c3..19fd333 100644 --- a/lib/Base/FiltersEmail.php +++ b/lib/Base/FiltersEmail.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersFile.php b/lib/Base/FiltersFile.php index 1599139..0ac6b73 100644 --- a/lib/Base/FiltersFile.php +++ b/lib/Base/FiltersFile.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersFormula.php b/lib/Base/FiltersFormula.php index c09488b..c91def4 100644 --- a/lib/Base/FiltersFormula.php +++ b/lib/Base/FiltersFormula.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersGeolocation.php b/lib/Base/FiltersGeolocation.php index 86b1e1f..2848463 100644 --- a/lib/Base/FiltersGeolocation.php +++ b/lib/Base/FiltersGeolocation.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersImage.php b/lib/Base/FiltersImage.php index be6f1fe..3aceae4 100644 --- a/lib/Base/FiltersImage.php +++ b/lib/Base/FiltersImage.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersLink.php b/lib/Base/FiltersLink.php index 58c5542..bbfb5bd 100644 --- a/lib/Base/FiltersLink.php +++ b/lib/Base/FiltersLink.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersLinkFormula.php b/lib/Base/FiltersLinkFormula.php index 8159a96..9b08278 100644 --- a/lib/Base/FiltersLinkFormula.php +++ b/lib/Base/FiltersLinkFormula.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersLongText.php b/lib/Base/FiltersLongText.php index 8eee141..88ac1a1 100644 --- a/lib/Base/FiltersLongText.php +++ b/lib/Base/FiltersLongText.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersModified.php b/lib/Base/FiltersModified.php index 67e4cfe..8522084 100644 --- a/lib/Base/FiltersModified.php +++ b/lib/Base/FiltersModified.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersMultiSelect.php b/lib/Base/FiltersMultiSelect.php index 006e10a..2cef0af 100644 --- a/lib/Base/FiltersMultiSelect.php +++ b/lib/Base/FiltersMultiSelect.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersNumber.php b/lib/Base/FiltersNumber.php index 00f5f7d..fb2944e 100644 --- a/lib/Base/FiltersNumber.php +++ b/lib/Base/FiltersNumber.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersPercentage.php b/lib/Base/FiltersPercentage.php index 862e1ed..de24068 100644 --- a/lib/Base/FiltersPercentage.php +++ b/lib/Base/FiltersPercentage.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersRating.php b/lib/Base/FiltersRating.php index 9a70ff2..a271bf8 100644 --- a/lib/Base/FiltersRating.php +++ b/lib/Base/FiltersRating.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersSingleSelect.php b/lib/Base/FiltersSingleSelect.php index 0f8727a..d0f874d 100644 --- a/lib/Base/FiltersSingleSelect.php +++ b/lib/Base/FiltersSingleSelect.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersText.php b/lib/Base/FiltersText.php index 9d4b66d..74735f3 100644 --- a/lib/Base/FiltersText.php +++ b/lib/Base/FiltersText.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersUrl.php b/lib/Base/FiltersUrl.php index ba0eba5..8fee562 100644 --- a/lib/Base/FiltersUrl.php +++ b/lib/Base/FiltersUrl.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FormulaColumn.php b/lib/Base/FormulaColumn.php index 4b2fdaa..5a5aa28 100644 --- a/lib/Base/FormulaColumn.php +++ b/lib/Base/FormulaColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FormulaColumnFormat.php b/lib/Base/FormulaColumnFormat.php index e66aa96..d23fc41 100644 --- a/lib/Base/FormulaColumnFormat.php +++ b/lib/Base/FormulaColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FormulaColumnWithTableName.php b/lib/Base/FormulaColumnWithTableName.php index 60e5cc1..0040fed 100644 --- a/lib/Base/FormulaColumnWithTableName.php +++ b/lib/Base/FormulaColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FreezeUnfreezeColumn.php b/lib/Base/FreezeUnfreezeColumn.php index 3837f97..65c9310 100644 --- a/lib/Base/FreezeUnfreezeColumn.php +++ b/lib/Base/FreezeUnfreezeColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GenerateSnapshot.php b/lib/Base/GenerateSnapshot.php index 08f4651..34ae5b7 100644 --- a/lib/Base/GenerateSnapshot.php +++ b/lib/Base/GenerateSnapshot.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GeoColumnFormat.php b/lib/Base/GeoColumnFormat.php index ba679d8..600e822 100644 --- a/lib/Base/GeoColumnFormat.php +++ b/lib/Base/GeoColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GeolocationColumn.php b/lib/Base/GeolocationColumn.php index 4ac83d9..291b6aa 100644 --- a/lib/Base/GeolocationColumn.php +++ b/lib/Base/GeolocationColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GeolocationColumnWithTableName.php b/lib/Base/GeolocationColumnWithTableName.php index e383e1f..38099cc 100644 --- a/lib/Base/GeolocationColumnWithTableName.php +++ b/lib/Base/GeolocationColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ImageColumn.php b/lib/Base/ImageColumn.php index 1719f08..9def4b4 100644 --- a/lib/Base/ImageColumn.php +++ b/lib/Base/ImageColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ImageColumnWithTableName.php b/lib/Base/ImageColumnWithTableName.php index a4c4cc7..135edd4 100644 --- a/lib/Base/ImageColumnWithTableName.php +++ b/lib/Base/ImageColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ImageFilterPredicate.php b/lib/Base/ImageFilterPredicate.php index 1e479f1..03a26e2 100644 --- a/lib/Base/ImageFilterPredicate.php +++ b/lib/Base/ImageFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/InsertColumnRequest.php b/lib/Base/InsertColumnRequest.php index 6eef775..39b8505 100644 --- a/lib/Base/InsertColumnRequest.php +++ b/lib/Base/InsertColumnRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/InsertRow.php b/lib/Base/InsertRow.php index 6e9b055..9c43a86 100644 --- a/lib/Base/InsertRow.php +++ b/lib/Base/InsertRow.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/InsertRowsIntoBigData.php b/lib/Base/InsertRowsIntoBigData.php index 89438cb..2d6aebc 100644 --- a/lib/Base/InsertRowsIntoBigData.php +++ b/lib/Base/InsertRowsIntoBigData.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LastModifierColumn.php b/lib/Base/LastModifierColumn.php index afb7838..3f4a043 100644 --- a/lib/Base/LastModifierColumn.php +++ b/lib/Base/LastModifierColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LastModifierColumnWithTableName.php b/lib/Base/LastModifierColumnWithTableName.php index 19deb7f..73c8f92 100644 --- a/lib/Base/LastModifierColumnWithTableName.php +++ b/lib/Base/LastModifierColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkColumn.php b/lib/Base/LinkColumn.php index 767a110..d3d4558 100644 --- a/lib/Base/LinkColumn.php +++ b/lib/Base/LinkColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkColumnFormat.php b/lib/Base/LinkColumnFormat.php index 39fd842..5bad17f 100644 --- a/lib/Base/LinkColumnFormat.php +++ b/lib/Base/LinkColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkColumnWithTableName.php b/lib/Base/LinkColumnWithTableName.php index 6eeb841..be323bf 100644 --- a/lib/Base/LinkColumnWithTableName.php +++ b/lib/Base/LinkColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFilterPredicate.php b/lib/Base/LinkFilterPredicate.php index 07da2a5..bdcac6f 100644 --- a/lib/Base/LinkFilterPredicate.php +++ b/lib/Base/LinkFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumn.php b/lib/Base/LinkFormulaColumn.php index 7f6604f..67a2def 100644 --- a/lib/Base/LinkFormulaColumn.php +++ b/lib/Base/LinkFormulaColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnColumnData.php b/lib/Base/LinkFormulaColumnColumnData.php index 22d716c..7e4d3ef 100644 --- a/lib/Base/LinkFormulaColumnColumnData.php +++ b/lib/Base/LinkFormulaColumnColumnData.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnCountLinksFormat.php b/lib/Base/LinkFormulaColumnCountLinksFormat.php index 90de5c9..874ff86 100644 --- a/lib/Base/LinkFormulaColumnCountLinksFormat.php +++ b/lib/Base/LinkFormulaColumnCountLinksFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnFindmaxFormat.php b/lib/Base/LinkFormulaColumnFindmaxFormat.php index 6b47e69..d1e31bb 100644 --- a/lib/Base/LinkFormulaColumnFindmaxFormat.php +++ b/lib/Base/LinkFormulaColumnFindmaxFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnFindminFormat.php b/lib/Base/LinkFormulaColumnFindminFormat.php index 449aea6..e43c950 100644 --- a/lib/Base/LinkFormulaColumnFindminFormat.php +++ b/lib/Base/LinkFormulaColumnFindminFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnLookupFormat.php b/lib/Base/LinkFormulaColumnLookupFormat.php index a38a85b..ce24390 100644 --- a/lib/Base/LinkFormulaColumnLookupFormat.php +++ b/lib/Base/LinkFormulaColumnLookupFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnRollupFormat.php b/lib/Base/LinkFormulaColumnRollupFormat.php index b6897cb..e5dd3ca 100644 --- a/lib/Base/LinkFormulaColumnRollupFormat.php +++ b/lib/Base/LinkFormulaColumnRollupFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnWithTableName.php b/lib/Base/LinkFormulaColumnWithTableName.php index a85fccf..f84255a 100644 --- a/lib/Base/LinkFormulaColumnWithTableName.php +++ b/lib/Base/LinkFormulaColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinksApi.php b/lib/Base/LinksApi.php index d95820e..a70502f 100644 --- a/lib/Base/LinksApi.php +++ b/lib/Base/LinksApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ListRowLinks.php b/lib/Base/ListRowLinks.php index b20be2a..09553f5 100644 --- a/lib/Base/ListRowLinks.php +++ b/lib/Base/ListRowLinks.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ListRowLinksRowsInner.php b/lib/Base/ListRowLinksRowsInner.php index df41d52..24ae016 100644 --- a/lib/Base/ListRowLinksRowsInner.php +++ b/lib/Base/ListRowLinksRowsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LongTextColumn.php b/lib/Base/LongTextColumn.php index 8a7a7d0..54f362d 100644 --- a/lib/Base/LongTextColumn.php +++ b/lib/Base/LongTextColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LongTextColumnWithTableName.php b/lib/Base/LongTextColumnWithTableName.php index 35c4519..b34d84e 100644 --- a/lib/Base/LongTextColumnWithTableName.php +++ b/lib/Base/LongTextColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MatchLinkColumns.php b/lib/Base/MatchLinkColumns.php index dbebd56..471172f 100644 --- a/lib/Base/MatchLinkColumns.php +++ b/lib/Base/MatchLinkColumns.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MatchLinkColumnsMatchingKeysInner.php b/lib/Base/MatchLinkColumnsMatchingKeysInner.php index 9670ce9..5148d76 100644 --- a/lib/Base/MatchLinkColumnsMatchingKeysInner.php +++ b/lib/Base/MatchLinkColumnsMatchingKeysInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ModelInterface.php b/lib/Base/ModelInterface.php index 4092882..3d3054c 100644 --- a/lib/Base/ModelInterface.php +++ b/lib/Base/ModelInterface.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MoveColumn.php b/lib/Base/MoveColumn.php index 101119a..c93283a 100644 --- a/lib/Base/MoveColumn.php +++ b/lib/Base/MoveColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MoveRowsToNormalBackendRequest.php b/lib/Base/MoveRowsToNormalBackendRequest.php index 7e66649..5b3a401 100644 --- a/lib/Base/MoveRowsToNormalBackendRequest.php +++ b/lib/Base/MoveRowsToNormalBackendRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MtimeColumn.php b/lib/Base/MtimeColumn.php index 2ebce7d..2e452c6 100644 --- a/lib/Base/MtimeColumn.php +++ b/lib/Base/MtimeColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MtimeColumnWithTableName.php b/lib/Base/MtimeColumnWithTableName.php index 1c65463..cbdeb4a 100644 --- a/lib/Base/MtimeColumnWithTableName.php +++ b/lib/Base/MtimeColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MultipleSelectColumn.php b/lib/Base/MultipleSelectColumn.php index b7cc418..d74e42d 100644 --- a/lib/Base/MultipleSelectColumn.php +++ b/lib/Base/MultipleSelectColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MultipleSelectColumnWithTableName.php b/lib/Base/MultipleSelectColumnWithTableName.php index f0df713..7ef32cb 100644 --- a/lib/Base/MultipleSelectColumnWithTableName.php +++ b/lib/Base/MultipleSelectColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MultipleSelectFilterPredicate.php b/lib/Base/MultipleSelectFilterPredicate.php index c43366f..0dfed88 100644 --- a/lib/Base/MultipleSelectFilterPredicate.php +++ b/lib/Base/MultipleSelectFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NewView.php b/lib/Base/NewView.php index b1cf8f1..500ee0d 100644 --- a/lib/Base/NewView.php +++ b/lib/Base/NewView.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NotificationsApi.php b/lib/Base/NotificationsApi.php index f8330c4..2324306 100644 --- a/lib/Base/NotificationsApi.php +++ b/lib/Base/NotificationsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NumberColumn.php b/lib/Base/NumberColumn.php index e979475..fe4b51b 100644 --- a/lib/Base/NumberColumn.php +++ b/lib/Base/NumberColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NumberColumnFormat.php b/lib/Base/NumberColumnFormat.php index f219025..df3f4e9 100644 --- a/lib/Base/NumberColumnFormat.php +++ b/lib/Base/NumberColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NumberColumnWithTableName.php b/lib/Base/NumberColumnWithTableName.php index aa672ec..f7e8b84 100644 --- a/lib/Base/NumberColumnWithTableName.php +++ b/lib/Base/NumberColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NumberFilterPredicate.php b/lib/Base/NumberFilterPredicate.php index ea11fcc..c34c110 100644 --- a/lib/Base/NumberFilterPredicate.php +++ b/lib/Base/NumberFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RatingColumn.php b/lib/Base/RatingColumn.php index 9a9a22e..e177197 100644 --- a/lib/Base/RatingColumn.php +++ b/lib/Base/RatingColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RatingColumnFormat.php b/lib/Base/RatingColumnFormat.php index b703fd3..3b64cbc 100644 --- a/lib/Base/RatingColumnFormat.php +++ b/lib/Base/RatingColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RatingColumnWithTableName.php b/lib/Base/RatingColumnWithTableName.php index 5408e49..bcc84c1 100644 --- a/lib/Base/RatingColumnWithTableName.php +++ b/lib/Base/RatingColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RatingFilterTerm.php b/lib/Base/RatingFilterTerm.php index 2fdd398..fa97beb 100644 --- a/lib/Base/RatingFilterTerm.php +++ b/lib/Base/RatingFilterTerm.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RenameColumn.php b/lib/Base/RenameColumn.php index 0ce4da0..e8c9bdf 100644 --- a/lib/Base/RenameColumn.php +++ b/lib/Base/RenameColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RenameTable.php b/lib/Base/RenameTable.php index 44f3634..9700df0 100644 --- a/lib/Base/RenameTable.php +++ b/lib/Base/RenameTable.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ResizeColumn.php b/lib/Base/ResizeColumn.php index f32bf20..b5aecae 100644 --- a/lib/Base/ResizeColumn.php +++ b/lib/Base/ResizeColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RowCommentsApi.php b/lib/Base/RowCommentsApi.php index 7a32845..353a3a9 100644 --- a/lib/Base/RowCommentsApi.php +++ b/lib/Base/RowCommentsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RowLinkCreateUpdateDelete.php b/lib/Base/RowLinkCreateUpdateDelete.php index 4d44b7f..98f29e0 100644 --- a/lib/Base/RowLinkCreateUpdateDelete.php +++ b/lib/Base/RowLinkCreateUpdateDelete.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/Rows.php b/lib/Base/Rows.php index 5915354..9bf6aad 100644 --- a/lib/Base/Rows.php +++ b/lib/Base/Rows.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RowsApi.php b/lib/Base/RowsApi.php index f86bac3..3541b72 100644 --- a/lib/Base/RowsApi.php +++ b/lib/Base/RowsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RowsWithTableName.php b/lib/Base/RowsWithTableName.php index 237ace7..8b1160b 100644 --- a/lib/Base/RowsWithTableName.php +++ b/lib/Base/RowsWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SelectColumnFormat.php b/lib/Base/SelectColumnFormat.php index 9c12fd1..9388478 100644 --- a/lib/Base/SelectColumnFormat.php +++ b/lib/Base/SelectColumnFormat.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SelectColumnFormatOptionsInner.php b/lib/Base/SelectColumnFormatOptionsInner.php index 56db4a5..a1ebbc0 100644 --- a/lib/Base/SelectColumnFormatOptionsInner.php +++ b/lib/Base/SelectColumnFormatOptionsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SendToastNotificationRequest.php b/lib/Base/SendToastNotificationRequest.php index 2117923..514775b 100644 --- a/lib/Base/SendToastNotificationRequest.php +++ b/lib/Base/SendToastNotificationRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SendToastNotificationRequestDetail.php b/lib/Base/SendToastNotificationRequestDetail.php index 01872b7..6990667 100644 --- a/lib/Base/SendToastNotificationRequestDetail.php +++ b/lib/Base/SendToastNotificationRequestDetail.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SingleSelectColumn.php b/lib/Base/SingleSelectColumn.php index c14944e..281f27e 100644 --- a/lib/Base/SingleSelectColumn.php +++ b/lib/Base/SingleSelectColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SingleSelectColumnWithTableName.php b/lib/Base/SingleSelectColumnWithTableName.php index f79a10a..bf5df9d 100644 --- a/lib/Base/SingleSelectColumnWithTableName.php +++ b/lib/Base/SingleSelectColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SingleSelectFilterPredicate.php b/lib/Base/SingleSelectFilterPredicate.php index c2aba74..9ab00ea 100644 --- a/lib/Base/SingleSelectFilterPredicate.php +++ b/lib/Base/SingleSelectFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SnapshotsApi.php b/lib/Base/SnapshotsApi.php index d70d620..1b3a71f 100644 --- a/lib/Base/SnapshotsApi.php +++ b/lib/Base/SnapshotsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SortType.php b/lib/Base/SortType.php index 264bb46..93dbe26 100644 --- a/lib/Base/SortType.php +++ b/lib/Base/SortType.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SortsInner.php b/lib/Base/SortsInner.php index 1996bd0..d8a7b1e 100644 --- a/lib/Base/SortsInner.php +++ b/lib/Base/SortsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SqlQuery.php b/lib/Base/SqlQuery.php index 3504f92..a3fc0d0 100644 --- a/lib/Base/SqlQuery.php +++ b/lib/Base/SqlQuery.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SqlQueryParametersInner.php b/lib/Base/SqlQueryParametersInner.php index 41808c7..38c1e6b 100644 --- a/lib/Base/SqlQueryParametersInner.php +++ b/lib/Base/SqlQueryParametersInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SqlQueryResponse.php b/lib/Base/SqlQueryResponse.php index d6b450d..9ca39ab 100644 --- a/lib/Base/SqlQueryResponse.php +++ b/lib/Base/SqlQueryResponse.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/StringFilterPredicate.php b/lib/Base/StringFilterPredicate.php index 3bb57a6..b00a40b 100644 --- a/lib/Base/StringFilterPredicate.php +++ b/lib/Base/StringFilterPredicate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TableNameObject.php b/lib/Base/TableNameObject.php index 802b360..6576d96 100644 --- a/lib/Base/TableNameObject.php +++ b/lib/Base/TableNameObject.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TableWithRowIds.php b/lib/Base/TableWithRowIds.php index 0ea5d4b..a1a336d 100644 --- a/lib/Base/TableWithRowIds.php +++ b/lib/Base/TableWithRowIds.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TablesApi.php b/lib/Base/TablesApi.php index 598ab2a..3915e94 100644 --- a/lib/Base/TablesApi.php +++ b/lib/Base/TablesApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TextColumn.php b/lib/Base/TextColumn.php index 1202292..317f4e5 100644 --- a/lib/Base/TextColumn.php +++ b/lib/Base/TextColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TextColumnWithTableName.php b/lib/Base/TextColumnWithTableName.php index 26f6c69..1b21e8e 100644 --- a/lib/Base/TextColumnWithTableName.php +++ b/lib/Base/TextColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateColumn.php b/lib/Base/UpdateColumn.php index e21ea37..5bfa23a 100644 --- a/lib/Base/UpdateColumn.php +++ b/lib/Base/UpdateColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateColumnType.php b/lib/Base/UpdateColumnType.php index be1e93f..ec36536 100644 --- a/lib/Base/UpdateColumnType.php +++ b/lib/Base/UpdateColumnType.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateComment.php b/lib/Base/UpdateComment.php index 7eca419..69b9c02 100644 --- a/lib/Base/UpdateComment.php +++ b/lib/Base/UpdateComment.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateCommentOptions.php b/lib/Base/UpdateCommentOptions.php index 3dca002..c6cd7e4 100644 --- a/lib/Base/UpdateCommentOptions.php +++ b/lib/Base/UpdateCommentOptions.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateRow.php b/lib/Base/UpdateRow.php index a5a84c7..e02c7b5 100644 --- a/lib/Base/UpdateRow.php +++ b/lib/Base/UpdateRow.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateRows.php b/lib/Base/UpdateRows.php index 9de4cde..c4a1908 100644 --- a/lib/Base/UpdateRows.php +++ b/lib/Base/UpdateRows.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateRowsUpdatesInner.php b/lib/Base/UpdateRowsUpdatesInner.php index dba4938..caa940b 100644 --- a/lib/Base/UpdateRowsUpdatesInner.php +++ b/lib/Base/UpdateRowsUpdatesInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateSingleMultipleSelectOptions.php b/lib/Base/UpdateSingleMultipleSelectOptions.php index 5f5bafa..542bbda 100644 --- a/lib/Base/UpdateSingleMultipleSelectOptions.php +++ b/lib/Base/UpdateSingleMultipleSelectOptions.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php b/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php index 9c3b7f5..f0cda21 100644 --- a/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php +++ b/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateView.php b/lib/Base/UpdateView.php index a02830b..3d0c47a 100644 --- a/lib/Base/UpdateView.php +++ b/lib/Base/UpdateView.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateViewFiltersInner.php b/lib/Base/UpdateViewFiltersInner.php index 593f409..3e2032b 100644 --- a/lib/Base/UpdateViewFiltersInner.php +++ b/lib/Base/UpdateViewFiltersInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UrlColumn.php b/lib/Base/UrlColumn.php index 777b759..05d93a6 100644 --- a/lib/Base/UrlColumn.php +++ b/lib/Base/UrlColumn.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UrlColumnWithTableName.php b/lib/Base/UrlColumnWithTableName.php index 10d9c47..5c8ee6e 100644 --- a/lib/Base/UrlColumnWithTableName.php +++ b/lib/Base/UrlColumnWithTableName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ViewsApi.php b/lib/Base/ViewsApi.php index 8057979..9ca599f 100644 --- a/lib/Base/ViewsApi.php +++ b/lib/Base/ViewsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Configuration.php b/lib/Configuration.php index 81082d1..c8bf1ff 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -488,7 +488,7 @@ public static function toDebugReport() $report = 'PHP SDK (SeaTable\Client) Debug Report:' . PHP_EOL; $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; - $report .= ' The version of the OpenAPI document: 6.0' . PHP_EOL; + $report .= ' The version of the OpenAPI document: 6.1' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/lib/File/FilesImagesApi.php b/lib/File/FilesImagesApi.php index ef2fb29..4f935d3 100644 --- a/lib/File/FilesImagesApi.php +++ b/lib/File/FilesImagesApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/File/FilesImagesCustomFolderApi.php b/lib/File/FilesImagesCustomFolderApi.php index 73de030..315084a 100644 --- a/lib/File/FilesImagesCustomFolderApi.php +++ b/lib/File/FilesImagesCustomFolderApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/File/ModelInterface.php b/lib/File/ModelInterface.php index afa8243..1563926 100644 --- a/lib/File/ModelInterface.php +++ b/lib/File/ModelInterface.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/FormDataProcessor.php b/lib/FormDataProcessor.php index 5384a28..83c6f9b 100644 --- a/lib/FormDataProcessor.php +++ b/lib/FormDataProcessor.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/HeaderSelector.php b/lib/HeaderSelector.php index 42c0d74..e5097fe 100644 --- a/lib/HeaderSelector.php +++ b/lib/HeaderSelector.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/ObjectSerializer.php b/lib/ObjectSerializer.php index d215567..8e8792a 100644 --- a/lib/ObjectSerializer.php +++ b/lib/ObjectSerializer.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ /** diff --git a/lib/PythonScheduler/ModelInterface.php b/lib/PythonScheduler/ModelInterface.php index cc48dbf..b63f4a2 100644 --- a/lib/PythonScheduler/ModelInterface.php +++ b/lib/PythonScheduler/ModelInterface.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/PythonScheduler/RunsApi.php b/lib/PythonScheduler/RunsApi.php index f6055fb..840b9d5 100644 --- a/lib/PythonScheduler/RunsApi.php +++ b/lib/PythonScheduler/RunsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/PythonScheduler/StatisticsApi.php b/lib/PythonScheduler/StatisticsApi.php index 8e5bf34..055eaa8 100644 --- a/lib/PythonScheduler/StatisticsApi.php +++ b/lib/PythonScheduler/StatisticsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddDepartmentRequest.php b/lib/SysAdmin/AddDepartmentRequest.php index 1c7cf20..5e020b3 100644 --- a/lib/SysAdmin/AddDepartmentRequest.php +++ b/lib/SysAdmin/AddDepartmentRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddNewUserRequest.php b/lib/SysAdmin/AddNewUserRequest.php index 428e312..bc8e58a 100644 --- a/lib/SysAdmin/AddNewUserRequest.php +++ b/lib/SysAdmin/AddNewUserRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddNotificationToUserRequest.php b/lib/SysAdmin/AddNotificationToUserRequest.php index d0feca4..9247fdb 100644 --- a/lib/SysAdmin/AddNotificationToUserRequest.php +++ b/lib/SysAdmin/AddNotificationToUserRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddTeamRequest.php b/lib/SysAdmin/AddTeamRequest.php index 7105a85..5e37fa4 100644 --- a/lib/SysAdmin/AddTeamRequest.php +++ b/lib/SysAdmin/AddTeamRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AutomationsApi.php b/lib/SysAdmin/AutomationsApi.php index b4b23d8..ade737b 100644 --- a/lib/SysAdmin/AutomationsApi.php +++ b/lib/SysAdmin/AutomationsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/BasesApi.php b/lib/SysAdmin/BasesApi.php index 40c6e45..be356e9 100644 --- a/lib/SysAdmin/BasesApi.php +++ b/lib/SysAdmin/BasesApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/CommonDatasetApi.php b/lib/SysAdmin/CommonDatasetApi.php index 9b1a576..09c679c 100644 --- a/lib/SysAdmin/CommonDatasetApi.php +++ b/lib/SysAdmin/CommonDatasetApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/CreateGroupRequest.php b/lib/SysAdmin/CreateGroupRequest.php index e1875a3..14ebf98 100644 --- a/lib/SysAdmin/CreateGroupRequest.php +++ b/lib/SysAdmin/CreateGroupRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/DepartmentsApi.php b/lib/SysAdmin/DepartmentsApi.php index 118d0ea..f93fbcb 100644 --- a/lib/SysAdmin/DepartmentsApi.php +++ b/lib/SysAdmin/DepartmentsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/EnforceTwoFactorRequest.php b/lib/SysAdmin/EnforceTwoFactorRequest.php index b1cc45b..df49ed3 100644 --- a/lib/SysAdmin/EnforceTwoFactorRequest.php +++ b/lib/SysAdmin/EnforceTwoFactorRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ExportApi.php b/lib/SysAdmin/ExportApi.php index 67cdedd..ceebebe 100644 --- a/lib/SysAdmin/ExportApi.php +++ b/lib/SysAdmin/ExportApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/FormsApi.php b/lib/SysAdmin/FormsApi.php index 5604eb0..76d713c 100644 --- a/lib/SysAdmin/FormsApi.php +++ b/lib/SysAdmin/FormsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/GroupsApi.php b/lib/SysAdmin/GroupsApi.php index a6a2fb4..059de3c 100644 --- a/lib/SysAdmin/GroupsApi.php +++ b/lib/SysAdmin/GroupsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ListAuditLogs200Response.php b/lib/SysAdmin/ListAuditLogs200Response.php index 763db29..00686bf 100644 --- a/lib/SysAdmin/ListAuditLogs200Response.php +++ b/lib/SysAdmin/ListAuditLogs200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php index 1f78ae1..1c8e9de 100644 --- a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php +++ b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php index 2778a70..b2a6b2e 100644 --- a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php +++ b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/LogsApi.php b/lib/SysAdmin/LogsApi.php index 14f5b1d..be923df 100644 --- a/lib/SysAdmin/LogsApi.php +++ b/lib/SysAdmin/LogsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/MaintenanceApi.php b/lib/SysAdmin/MaintenanceApi.php index c26c49c..435b300 100644 --- a/lib/SysAdmin/MaintenanceApi.php +++ b/lib/SysAdmin/MaintenanceApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ModelInterface.php b/lib/SysAdmin/ModelInterface.php index ec489e4..7696105 100644 --- a/lib/SysAdmin/ModelInterface.php +++ b/lib/SysAdmin/ModelInterface.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/NotificationsApi.php b/lib/SysAdmin/NotificationsApi.php index cc2d516..06c6bb7 100644 --- a/lib/SysAdmin/NotificationsApi.php +++ b/lib/SysAdmin/NotificationsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/PluginsApi.php b/lib/SysAdmin/PluginsApi.php index 59cca8a..63a1482 100644 --- a/lib/SysAdmin/PluginsApi.php +++ b/lib/SysAdmin/PluginsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/RepairBase200Response.php b/lib/SysAdmin/RepairBase200Response.php index ff54a81..6f54bd9 100644 --- a/lib/SysAdmin/RepairBase200Response.php +++ b/lib/SysAdmin/RepairBase200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/SharingLinksApi.php b/lib/SysAdmin/SharingLinksApi.php index 06403f8..7e42921 100644 --- a/lib/SysAdmin/SharingLinksApi.php +++ b/lib/SysAdmin/SharingLinksApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -602,10 +602,7 @@ public function deleteViewExternalLinkRequest($view_external_link_token, string 'Missing the required parameter $view_external_link_token when calling deleteViewExternalLink' ); } - if (!preg_match("/^[a-f0-9]{20}$/", $view_external_link_token)) { - throw new \InvalidArgumentException("invalid value for \"view_external_link_token\" when calling SharingLinksApi.deleteViewExternalLink, must conform to the pattern /^[a-f0-9]{20}$/."); - } - + $resourcePath = '/api/v2.1/admin/view-external-links/{view_external_link_token}/'; $formParams = []; diff --git a/lib/SysAdmin/StatisticsApi.php b/lib/SysAdmin/StatisticsApi.php index 16d5a76..6f8a049 100644 --- a/lib/SysAdmin/StatisticsApi.php +++ b/lib/SysAdmin/StatisticsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -82,6 +82,9 @@ class StatisticsApi 'getExternalApps' => [ 'application/json', ], + 'getOwnerOrTeamAIStatistics' => [ + 'application/json', + ], 'getScriptRunningCountByUser' => [ 'application/json', ], @@ -988,6 +991,336 @@ public function getExternalAppsRequest($is_user, $month = null, $page = null, $p + $headers = $this->headerSelector->selectHeaders( + ['application/json', ], + $contentType, + $multipart + ); + + // for model (json/xml) + if (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue]; + foreach ($formParamValueItems as $formParamValueItem) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValueItem + ]; + } + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif (stripos($headers['Content-Type'], 'application/json') !== false) { + # if Content-Type contains "application/json", json_encode the form parameters + $httpBody = \GuzzleHttp\Utils::jsonEncode($formParams); + } else { + // for HTTP post (form) + $httpBody = ObjectSerializer::buildQuery($formParams); + } + } + + // this endpoint requires Bearer authentication (access token) + if (!empty($this->config->getAccessToken())) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $operationHost = $this->config->getHost(); + $query = ObjectSerializer::buildQuery($queryParams); + return new Request( + 'GET', + $operationHost . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + + /** + * Operation getOwnerOrTeamAIStatistics + * + * Get AI statistics by owner/team + * + * @param string $group_by Query by owner or organization (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getOwnerOrTeamAIStatistics'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return object + */ + public function getOwnerOrTeamAIStatistics($group_by, $date, $page = null, $per_page = null, string $contentType = self::contentTypes['getOwnerOrTeamAIStatistics'][0]) + { + list($response) = $this->getOwnerOrTeamAIStatisticsWithHttpInfo($group_by, $date, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation getOwnerOrTeamAIStatisticsWithHttpInfo + * + * Get AI statistics by owner/team + * + * @param string $group_by Query by owner or organization (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getOwnerOrTeamAIStatistics'] to see the possible values for this operation + * + * @throws \SeaTable\Client\ApiException on non-2xx response or if the response body is not in the expected format + * @throws \InvalidArgumentException + * @return array of object, HTTP status code, HTTP response headers (array of strings) + */ + public function getOwnerOrTeamAIStatisticsWithHttpInfo($group_by, $date, $page = null, $per_page = null, string $contentType = self::contentTypes['getOwnerOrTeamAIStatistics'][0]) + { + $request = $this->getOwnerOrTeamAIStatisticsRequest($group_by, $date, $page, $per_page, $contentType); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? (string) $e->getResponse()->getBody() : null + ); + } catch (ConnectException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + (int) $e->getCode(), + null, + null + ); + } + + $statusCode = $response->getStatusCode(); + + + switch($statusCode) { + case 200: + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } + + + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + (string) $request->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + + return $this->handleResponseWithDataType( + 'object', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + 'object', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation getOwnerOrTeamAIStatisticsAsync + * + * Get AI statistics by owner/team + * + * @param string $group_by Query by owner or organization (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getOwnerOrTeamAIStatistics'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getOwnerOrTeamAIStatisticsAsync($group_by, $date, $page = null, $per_page = null, string $contentType = self::contentTypes['getOwnerOrTeamAIStatistics'][0]) + { + return $this->getOwnerOrTeamAIStatisticsAsyncWithHttpInfo($group_by, $date, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation getOwnerOrTeamAIStatisticsAsyncWithHttpInfo + * + * Get AI statistics by owner/team + * + * @param string $group_by Query by owner or organization (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getOwnerOrTeamAIStatistics'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getOwnerOrTeamAIStatisticsAsyncWithHttpInfo($group_by, $date, $page = null, $per_page = null, string $contentType = self::contentTypes['getOwnerOrTeamAIStatistics'][0]) + { + $returnType = 'object'; + $request = $this->getOwnerOrTeamAIStatisticsRequest($group_by, $date, $page, $per_page, $contentType); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + if ($returnType === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; + }, + function ($exception) { + $response = $exception->getResponse(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + (string) $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'getOwnerOrTeamAIStatistics' + * + * @param string $group_by Query by owner or organization (required) + * @param string $date A date string in YYYY-MM-DD format (required) + * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) + * @param int|null $per_page The number of results that should be returned. If no value is provided, 25 results will be returned. (optional) + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['getOwnerOrTeamAIStatistics'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function getOwnerOrTeamAIStatisticsRequest($group_by, $date, $page = null, $per_page = null, string $contentType = self::contentTypes['getOwnerOrTeamAIStatistics'][0]) + { + + // verify the required parameter 'group_by' is set + if ($group_by === null || (is_array($group_by) && count($group_by) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $group_by when calling getOwnerOrTeamAIStatistics' + ); + } + + // verify the required parameter 'date' is set + if ($date === null || (is_array($date) && count($date) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $date when calling getOwnerOrTeamAIStatistics' + ); + } + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling StatisticsApi.getOwnerOrTeamAIStatistics, must be bigger than or equal to 1.'); + } + + if ($per_page !== null && $per_page < 1) { + throw new \InvalidArgumentException('invalid value for "$per_page" when calling StatisticsApi.getOwnerOrTeamAIStatistics, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/admin/statistics/ai/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $group_by, + 'group_by', // param base name + 'string', // openApiType + 'form', // style + true, // explode + true // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $date, + 'date', // param base name + 'string', // openApiType + 'form', // style + true, // explode + true // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $page, + 'page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $per_page, + 'per_page', // param base name + 'integer', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); + + + + $headers = $this->headerSelector->selectHeaders( ['application/json', ], $contentType, diff --git a/lib/SysAdmin/SystemInfoCustomizingApi.php b/lib/SysAdmin/SystemInfoCustomizingApi.php index 876a488..d86b116 100644 --- a/lib/SysAdmin/SystemInfoCustomizingApi.php +++ b/lib/SysAdmin/SystemInfoCustomizingApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/SystemNotificationsApi.php b/lib/SysAdmin/SystemNotificationsApi.php index 288d0d5..1d895cf 100644 --- a/lib/SysAdmin/SystemNotificationsApi.php +++ b/lib/SysAdmin/SystemNotificationsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/TeamsApi.php b/lib/SysAdmin/TeamsApi.php index 5b8c2fa..9943779 100644 --- a/lib/SysAdmin/TeamsApi.php +++ b/lib/SysAdmin/TeamsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/TransferGroupRequest.php b/lib/SysAdmin/TransferGroupRequest.php index 1f8ef24..70aa1cf 100644 --- a/lib/SysAdmin/TransferGroupRequest.php +++ b/lib/SysAdmin/TransferGroupRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateAbuseReportRequest.php b/lib/SysAdmin/UpdateAbuseReportRequest.php index 3425abe..5668171 100644 --- a/lib/SysAdmin/UpdateAbuseReportRequest.php +++ b/lib/SysAdmin/UpdateAbuseReportRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateAdminsRole.php b/lib/SysAdmin/UpdateAdminsRole.php index c47c46e..f388fe6 100644 --- a/lib/SysAdmin/UpdateAdminsRole.php +++ b/lib/SysAdmin/UpdateAdminsRole.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateGeneralSettingsRequest.php b/lib/SysAdmin/UpdateGeneralSettingsRequest.php index f0c4e13..d7e4ee4 100644 --- a/lib/SysAdmin/UpdateGeneralSettingsRequest.php +++ b/lib/SysAdmin/UpdateGeneralSettingsRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateTeamRequest.php b/lib/SysAdmin/UpdateTeamRequest.php index 1018111..3901d59 100644 --- a/lib/SysAdmin/UpdateTeamRequest.php +++ b/lib/SysAdmin/UpdateTeamRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -60,7 +60,8 @@ class UpdateTeamRequest implements ModelInterface, ArrayAccess, \JsonSerializabl 'role' => 'string', 'row_limit' => 'int', 'max_user_number' => 'string', - 'asset_quota_mb' => 'string' + 'asset_quota_mb' => 'string', + 'monthly_automation_limit_per_user' => 'int' ]; /** @@ -75,7 +76,8 @@ class UpdateTeamRequest implements ModelInterface, ArrayAccess, \JsonSerializabl 'role' => null, 'row_limit' => null, 'max_user_number' => null, - 'asset_quota_mb' => null + 'asset_quota_mb' => null, + 'monthly_automation_limit_per_user' => null ]; /** @@ -88,7 +90,8 @@ class UpdateTeamRequest implements ModelInterface, ArrayAccess, \JsonSerializabl 'role' => false, 'row_limit' => false, 'max_user_number' => false, - 'asset_quota_mb' => false + 'asset_quota_mb' => false, + 'monthly_automation_limit_per_user' => false ]; /** @@ -181,7 +184,8 @@ public function isNullableSetToNull(string $property): bool 'role' => 'role', 'row_limit' => 'row_limit', 'max_user_number' => 'max_user_number', - 'asset_quota_mb' => 'asset_quota_mb' + 'asset_quota_mb' => 'asset_quota_mb', + 'monthly_automation_limit_per_user' => 'monthly_automation_limit_per_user' ]; /** @@ -194,7 +198,8 @@ public function isNullableSetToNull(string $property): bool 'role' => 'setRole', 'row_limit' => 'setRowLimit', 'max_user_number' => 'setMaxUserNumber', - 'asset_quota_mb' => 'setAssetQuotaMb' + 'asset_quota_mb' => 'setAssetQuotaMb', + 'monthly_automation_limit_per_user' => 'setMonthlyAutomationLimitPerUser' ]; /** @@ -207,7 +212,8 @@ public function isNullableSetToNull(string $property): bool 'role' => 'getRole', 'row_limit' => 'getRowLimit', 'max_user_number' => 'getMaxUserNumber', - 'asset_quota_mb' => 'getAssetQuotaMb' + 'asset_quota_mb' => 'getAssetQuotaMb', + 'monthly_automation_limit_per_user' => 'getMonthlyAutomationLimitPerUser' ]; /** @@ -272,6 +278,7 @@ public function __construct(?array $data = null) $this->setIfExists('row_limit', $data ?? [], null); $this->setIfExists('max_user_number', $data ?? [], null); $this->setIfExists('asset_quota_mb', $data ?? [], null); + $this->setIfExists('monthly_automation_limit_per_user', $data ?? [], null); } /** @@ -450,6 +457,33 @@ public function setAssetQuotaMb($asset_quota_mb) return $this; } + + /** + * Gets monthly_automation_limit_per_user + * + * @return int|null + */ + public function getMonthlyAutomationLimitPerUser() + { + return $this->container['monthly_automation_limit_per_user']; + } + + /** + * Sets monthly_automation_limit_per_user + * + * @param int|null $monthly_automation_limit_per_user Monthly limit on the number of automation rules per user. + * + * @return self + */ + public function setMonthlyAutomationLimitPerUser($monthly_automation_limit_per_user) + { + if (is_null($monthly_automation_limit_per_user)) { + throw new \InvalidArgumentException('non-nullable monthly_automation_limit_per_user cannot be null'); + } + $this->container['monthly_automation_limit_per_user'] = $monthly_automation_limit_per_user; + + return $this; + } /** * Returns true if offset exists. False otherwise. * diff --git a/lib/SysAdmin/UpdateTeamUserRequest.php b/lib/SysAdmin/UpdateTeamUserRequest.php index 1a62008..9f88af2 100644 --- a/lib/SysAdmin/UpdateTeamUserRequest.php +++ b/lib/SysAdmin/UpdateTeamUserRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateUserRequest.php b/lib/SysAdmin/UpdateUserRequest.php index 996f57e..a2325b9 100644 --- a/lib/SysAdmin/UpdateUserRequest.php +++ b/lib/SysAdmin/UpdateUserRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -68,7 +68,8 @@ class UpdateUserRequest implements ModelInterface, ArrayAccess, \JsonSerializabl 'institution' => 'string', 'row_limit' => 'int', 'quota_total' => 'string', - 'asset_quota_mb' => 'string' + 'asset_quota_mb' => 'string', + 'monthly_automation_limit_per_user' => 'int' ]; /** @@ -91,7 +92,8 @@ class UpdateUserRequest implements ModelInterface, ArrayAccess, \JsonSerializabl 'institution' => null, 'row_limit' => null, 'quota_total' => null, - 'asset_quota_mb' => null + 'asset_quota_mb' => null, + 'monthly_automation_limit_per_user' => null ]; /** @@ -112,7 +114,8 @@ class UpdateUserRequest implements ModelInterface, ArrayAccess, \JsonSerializabl 'institution' => false, 'row_limit' => false, 'quota_total' => false, - 'asset_quota_mb' => false + 'asset_quota_mb' => false, + 'monthly_automation_limit_per_user' => false ]; /** @@ -213,7 +216,8 @@ public function isNullableSetToNull(string $property): bool 'institution' => 'institution', 'row_limit' => 'row_limit', 'quota_total' => 'quota_total', - 'asset_quota_mb' => 'asset_quota_mb' + 'asset_quota_mb' => 'asset_quota_mb', + 'monthly_automation_limit_per_user' => 'monthly_automation_limit_per_user' ]; /** @@ -234,7 +238,8 @@ public function isNullableSetToNull(string $property): bool 'institution' => 'setInstitution', 'row_limit' => 'setRowLimit', 'quota_total' => 'setQuotaTotal', - 'asset_quota_mb' => 'setAssetQuotaMb' + 'asset_quota_mb' => 'setAssetQuotaMb', + 'monthly_automation_limit_per_user' => 'setMonthlyAutomationLimitPerUser' ]; /** @@ -255,7 +260,8 @@ public function isNullableSetToNull(string $property): bool 'institution' => 'getInstitution', 'row_limit' => 'getRowLimit', 'quota_total' => 'getQuotaTotal', - 'asset_quota_mb' => 'getAssetQuotaMb' + 'asset_quota_mb' => 'getAssetQuotaMb', + 'monthly_automation_limit_per_user' => 'getMonthlyAutomationLimitPerUser' ]; /** @@ -328,6 +334,7 @@ public function __construct(?array $data = null) $this->setIfExists('row_limit', $data ?? [], null); $this->setIfExists('quota_total', $data ?? [], null); $this->setIfExists('asset_quota_mb', $data ?? [], null); + $this->setIfExists('monthly_automation_limit_per_user', $data ?? [], null); } /** @@ -722,6 +729,33 @@ public function setAssetQuotaMb($asset_quota_mb) return $this; } + + /** + * Gets monthly_automation_limit_per_user + * + * @return int|null + */ + public function getMonthlyAutomationLimitPerUser() + { + return $this->container['monthly_automation_limit_per_user']; + } + + /** + * Sets monthly_automation_limit_per_user + * + * @param int|null $monthly_automation_limit_per_user Monthly limit on the number of automation rules per user. + * + * @return self + */ + public function setMonthlyAutomationLimitPerUser($monthly_automation_limit_per_user) + { + if (is_null($monthly_automation_limit_per_user)) { + throw new \InvalidArgumentException('non-nullable monthly_automation_limit_per_user cannot be null'); + } + $this->container['monthly_automation_limit_per_user'] = $monthly_automation_limit_per_user; + + return $this; + } /** * Returns true if offset exists. False otherwise. * diff --git a/lib/SysAdmin/UsersApi.php b/lib/SysAdmin/UsersApi.php index ecde698..37c793b 100644 --- a/lib/SysAdmin/UsersApi.php +++ b/lib/SysAdmin/UsersApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/ActivitiesLogsApi.php b/lib/TeamAdmin/ActivitiesLogsApi.php index 81faf3b..5ed60e7 100644 --- a/lib/TeamAdmin/ActivitiesLogsApi.php +++ b/lib/TeamAdmin/ActivitiesLogsApi.php @@ -148,6 +148,7 @@ public function getConfig() * List Automation Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -158,9 +159,9 @@ public function getConfig() * @throws \InvalidArgumentException * @return object */ - public function listAutomationLogs($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) + public function listAutomationLogs($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { - list($response) = $this->listAutomationLogsWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType); + list($response) = $this->listAutomationLogsWithHttpInfo($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); return $response; } @@ -170,6 +171,7 @@ public function listAutomationLogs($org_id, $start = null, $end = null, $page = * List Automation Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -180,9 +182,9 @@ public function listAutomationLogs($org_id, $start = null, $end = null, $page = * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listAutomationLogsWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) + public function listAutomationLogsWithHttpInfo($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { - $request = $this->listAutomationLogsRequest($org_id, $start, $end, $page, $per_page, $contentType); + $request = $this->listAutomationLogsRequest($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); try { $options = $this->createHttpClientOption(); @@ -259,6 +261,7 @@ public function listAutomationLogsWithHttpInfo($org_id, $start = null, $end = nu * List Automation Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -268,9 +271,9 @@ public function listAutomationLogsWithHttpInfo($org_id, $start = null, $end = nu * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listAutomationLogsAsync($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) + public function listAutomationLogsAsync($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { - return $this->listAutomationLogsAsyncWithHttpInfo($org_id, $start, $end, $page, $per_page, $contentType) + return $this->listAutomationLogsAsyncWithHttpInfo($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType) ->then( function ($response) { return $response[0]; @@ -284,6 +287,7 @@ function ($response) { * List Automation Logs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -293,10 +297,10 @@ function ($response) { * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listAutomationLogsAsyncWithHttpInfo($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) + public function listAutomationLogsAsyncWithHttpInfo($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { $returnType = 'object'; - $request = $this->listAutomationLogsRequest($org_id, $start, $end, $page, $per_page, $contentType); + $request = $this->listAutomationLogsRequest($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -338,6 +342,7 @@ function ($exception) { * Create request for operation 'listAutomationLogs' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -347,7 +352,7 @@ function ($exception) { * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listAutomationLogsRequest($org_id, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) + public function listAutomationLogsRequest($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listAutomationLogs'][0]) { // verify the required parameter 'org_id' is set @@ -360,6 +365,10 @@ public function listAutomationLogsRequest($org_id, $start = null, $end = null, $ throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listAutomationLogs, must be bigger than or equal to 1.'); } + if ($dtable_uuid !== null && !preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $dtable_uuid)) { + throw new \InvalidArgumentException("invalid value for \"dtable_uuid\" when calling ActivitiesLogsApi.listAutomationLogs, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); + } + if ($page !== null && $page < 1) { @@ -378,6 +387,15 @@ public function listAutomationLogsRequest($org_id, $start = null, $end = null, $ $httpBody = ''; $multipart = false; + // query params + $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( + $dtable_uuid, + 'dtable_uuid', // param base name + 'string', // openApiType + 'form', // style + true, // explode + false // required + ) ?? []); // query params $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( $start, @@ -1111,7 +1129,7 @@ public function listGroupMemberAuditLogsRequest($org_id, $page = null, $per_page * List Python Runs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param string|null $base_uuid The unique identifier of a base. (optional) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1122,9 +1140,9 @@ public function listGroupMemberAuditLogsRequest($org_id, $page = null, $per_page * @throws \InvalidArgumentException * @return object */ - public function listPythonRuns($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRuns($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - list($response) = $this->listPythonRunsWithHttpInfo($org_id, $base_uuid, $start, $end, $page, $per_page, $contentType); + list($response) = $this->listPythonRunsWithHttpInfo($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); return $response; } @@ -1134,7 +1152,7 @@ public function listPythonRuns($org_id, $base_uuid = null, $start = null, $end = * List Python Runs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param string|null $base_uuid The unique identifier of a base. (optional) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1145,9 +1163,9 @@ public function listPythonRuns($org_id, $base_uuid = null, $start = null, $end = * @throws \InvalidArgumentException * @return array of object, HTTP status code, HTTP response headers (array of strings) */ - public function listPythonRunsWithHttpInfo($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRunsWithHttpInfo($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - $request = $this->listPythonRunsRequest($org_id, $base_uuid, $start, $end, $page, $per_page, $contentType); + $request = $this->listPythonRunsRequest($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); try { $options = $this->createHttpClientOption(); @@ -1224,7 +1242,7 @@ public function listPythonRunsWithHttpInfo($org_id, $base_uuid = null, $start = * List Python Runs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param string|null $base_uuid The unique identifier of a base. (optional) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1234,9 +1252,9 @@ public function listPythonRunsWithHttpInfo($org_id, $base_uuid = null, $start = * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listPythonRunsAsync($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRunsAsync($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { - return $this->listPythonRunsAsyncWithHttpInfo($org_id, $base_uuid, $start, $end, $page, $per_page, $contentType) + return $this->listPythonRunsAsyncWithHttpInfo($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType) ->then( function ($response) { return $response[0]; @@ -1250,7 +1268,7 @@ function ($response) { * List Python Runs * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param string|null $base_uuid The unique identifier of a base. (optional) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1260,10 +1278,10 @@ function ($response) { * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listPythonRunsAsyncWithHttpInfo($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRunsAsyncWithHttpInfo($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { $returnType = 'object'; - $request = $this->listPythonRunsRequest($org_id, $base_uuid, $start, $end, $page, $per_page, $contentType); + $request = $this->listPythonRunsRequest($org_id, $dtable_uuid, $start, $end, $page, $per_page, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -1305,7 +1323,7 @@ function ($exception) { * Create request for operation 'listPythonRuns' * * @param int $org_id The ID of your team/organization. Numeric. Get it from [Get Team](/reference/getteaminfo). Contact your team admin, if you are not the admin. (required) - * @param string|null $base_uuid The unique identifier of a base. (optional) + * @param string|null $dtable_uuid The unique identifier of a base. (optional) * @param \DateTime|null $start Start date in ISO format. (optional) * @param \DateTime|null $end End date in ISO format. (optional) * @param int|null $page The page number you want to start showing the entries. If no value is provided, 1 will be used. (optional) @@ -1315,7 +1333,7 @@ function ($exception) { * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listPythonRunsRequest($org_id, $base_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) + public function listPythonRunsRequest($org_id, $dtable_uuid = null, $start = null, $end = null, $page = null, $per_page = null, string $contentType = self::contentTypes['listPythonRuns'][0]) { // verify the required parameter 'org_id' is set @@ -1328,8 +1346,8 @@ public function listPythonRunsRequest($org_id, $base_uuid = null, $start = null, throw new \InvalidArgumentException('invalid value for "$org_id" when calling ActivitiesLogsApi.listPythonRuns, must be bigger than or equal to 1.'); } - if ($base_uuid !== null && !preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $base_uuid)) { - throw new \InvalidArgumentException("invalid value for \"base_uuid\" when calling ActivitiesLogsApi.listPythonRuns, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); + if ($dtable_uuid !== null && !preg_match("/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/", $dtable_uuid)) { + throw new \InvalidArgumentException("invalid value for \"dtable_uuid\" when calling ActivitiesLogsApi.listPythonRuns, must conform to the pattern /^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/."); } @@ -1352,8 +1370,8 @@ public function listPythonRunsRequest($org_id, $base_uuid = null, $start = null, // query params $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( - $base_uuid, - 'base_uuid', // param base name + $dtable_uuid, + 'dtable_uuid', // param base name 'string', // openApiType 'form', // style true, // explode diff --git a/lib/TeamAdmin/SharingLinksApi.php b/lib/TeamAdmin/SharingLinksApi.php index 23affd3..04ffa05 100644 --- a/lib/TeamAdmin/SharingLinksApi.php +++ b/lib/TeamAdmin/SharingLinksApi.php @@ -354,10 +354,7 @@ public function deleteExternalLinkRequest($org_id, $external_link_token, string 'Missing the required parameter $external_link_token when calling deleteExternalLink' ); } - if (!preg_match("/^[0-9a-f]{20}$/", $external_link_token)) { - throw new \InvalidArgumentException("invalid value for \"external_link_token\" when calling SharingLinksApi.deleteExternalLink, must conform to the pattern /^[0-9a-f]{20}$/."); - } - + $resourcePath = '/api/v2.1/org/{org_id}/admin/external-links/{external_link_token}/'; $formParams = []; @@ -950,10 +947,7 @@ public function deleteViewExternalLinkRequest($org_id, $view_external_link_token 'Missing the required parameter $view_external_link_token when calling deleteViewExternalLink' ); } - if (!preg_match("/^[0-9a-f]{20}$/", $view_external_link_token)) { - throw new \InvalidArgumentException("invalid value for \"view_external_link_token\" when calling SharingLinksApi.deleteViewExternalLink, must conform to the pattern /^[0-9a-f]{20}$/."); - } - + $resourcePath = '/api/v2.1/org/{org_id}/admin/view-external-links/{view_external_link_token}/'; $formParams = []; diff --git a/lib/User/Action.php b/lib/User/Action.php index ca8d65f..60f10bf 100644 --- a/lib/User/Action.php +++ b/lib/User/Action.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionAddRecord.php b/lib/User/ActionAddRecord.php index c0f86c7..c62fe1d 100644 --- a/lib/User/ActionAddRecord.php +++ b/lib/User/ActionAddRecord.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionAddRecordToOtherTable.php b/lib/User/ActionAddRecordToOtherTable.php index c701fba..0200c8a 100644 --- a/lib/User/ActionAddRecordToOtherTable.php +++ b/lib/User/ActionAddRecordToOtherTable.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionAddRecordToOtherTableRow.php b/lib/User/ActionAddRecordToOtherTableRow.php index 3b2aa85..4a04b8d 100644 --- a/lib/User/ActionAddRecordToOtherTableRow.php +++ b/lib/User/ActionAddRecordToOtherTableRow.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionCalculateAccumulatedValue.php b/lib/User/ActionCalculateAccumulatedValue.php index 6015f90..73b8749 100644 --- a/lib/User/ActionCalculateAccumulatedValue.php +++ b/lib/User/ActionCalculateAccumulatedValue.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionCalculateDelta.php b/lib/User/ActionCalculateDelta.php index 08f49ab..d0ec2c6 100644 --- a/lib/User/ActionCalculateDelta.php +++ b/lib/User/ActionCalculateDelta.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionCalculatePercentage.php b/lib/User/ActionCalculatePercentage.php index bcf9a2b..ffb3041 100644 --- a/lib/User/ActionCalculatePercentage.php +++ b/lib/User/ActionCalculatePercentage.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionCalculateRank.php b/lib/User/ActionCalculateRank.php index 8d38705..8a529f0 100644 --- a/lib/User/ActionCalculateRank.php +++ b/lib/User/ActionCalculateRank.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionExtractUserName.php b/lib/User/ActionExtractUserName.php index c649807..1b61341 100644 --- a/lib/User/ActionExtractUserName.php +++ b/lib/User/ActionExtractUserName.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLinkRecord.php b/lib/User/ActionLinkRecord.php index 7bb00be..add9b1f 100644 --- a/lib/User/ActionLinkRecord.php +++ b/lib/User/ActionLinkRecord.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLinkRecordMatchConditionsInner.php b/lib/User/ActionLinkRecordMatchConditionsInner.php index 01f129f..a73240d 100644 --- a/lib/User/ActionLinkRecordMatchConditionsInner.php +++ b/lib/User/ActionLinkRecordMatchConditionsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLockRecord.php b/lib/User/ActionLockRecord.php index 7601d3d..f3d8820 100644 --- a/lib/User/ActionLockRecord.php +++ b/lib/User/ActionLockRecord.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLookupAndCopy.php b/lib/User/ActionLookupAndCopy.php index aa4fa71..4c503a7 100644 --- a/lib/User/ActionLookupAndCopy.php +++ b/lib/User/ActionLookupAndCopy.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php b/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php index 549a0b6..3c5e937 100644 --- a/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php +++ b/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLookupAndCopyTableCondition.php b/lib/User/ActionLookupAndCopyTableCondition.php index f7af732..46292d9 100644 --- a/lib/User/ActionLookupAndCopyTableCondition.php +++ b/lib/User/ActionLookupAndCopyTableCondition.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionNotify.php b/lib/User/ActionNotify.php index 9849d79..d882c94 100644 --- a/lib/User/ActionNotify.php +++ b/lib/User/ActionNotify.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php b/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php index 983d43f..195b914 100644 --- a/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php +++ b/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionRunPeriodicallyInner.php b/lib/User/ActionRunPeriodicallyInner.php index d794328..fa9be06 100644 --- a/lib/User/ActionRunPeriodicallyInner.php +++ b/lib/User/ActionRunPeriodicallyInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionRunPeriodicallyOnRecordsInner.php b/lib/User/ActionRunPeriodicallyOnRecordsInner.php index bd673e2..7d02734 100644 --- a/lib/User/ActionRunPeriodicallyOnRecordsInner.php +++ b/lib/User/ActionRunPeriodicallyOnRecordsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionRunPythonScript.php b/lib/User/ActionRunPythonScript.php index cdaad98..1363c65 100644 --- a/lib/User/ActionRunPythonScript.php +++ b/lib/User/ActionRunPythonScript.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionSendEmail.php b/lib/User/ActionSendEmail.php index 98b8a51..2d4b021 100644 --- a/lib/User/ActionSendEmail.php +++ b/lib/User/ActionSendEmail.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionUpdateRecord.php b/lib/User/ActionUpdateRecord.php index 62392c3..6307ba7 100644 --- a/lib/User/ActionUpdateRecord.php +++ b/lib/User/ActionUpdateRecord.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActivitiesLogsApi.php b/lib/User/ActivitiesLogsApi.php index e523991..01ea05c 100644 --- a/lib/User/ActivitiesLogsApi.php +++ b/lib/User/ActivitiesLogsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddEmailAccountRequest.php b/lib/User/AddEmailAccountRequest.php index 47bb1e7..a1f4abb 100644 --- a/lib/User/AddEmailAccountRequest.php +++ b/lib/User/AddEmailAccountRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddGroupMemberRequest.php b/lib/User/AddGroupMemberRequest.php index eed60cb..93d9cda 100644 --- a/lib/User/AddGroupMemberRequest.php +++ b/lib/User/AddGroupMemberRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddNotificationRuleRequest.php b/lib/User/AddNotificationRuleRequest.php index dfaa2a1..081adef 100644 --- a/lib/User/AddNotificationRuleRequest.php +++ b/lib/User/AddNotificationRuleRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddNotificationRuleRequestAction.php b/lib/User/AddNotificationRuleRequestAction.php index 6f731bc..680f6c9 100644 --- a/lib/User/AddNotificationRuleRequestAction.php +++ b/lib/User/AddNotificationRuleRequestAction.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddNotificationRuleRequestTrigger.php b/lib/User/AddNotificationRuleRequestTrigger.php index 1fdf804..050fb2f 100644 --- a/lib/User/AddNotificationRuleRequestTrigger.php +++ b/lib/User/AddNotificationRuleRequestTrigger.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddPassword.php b/lib/User/AddPassword.php index e8c82e4..f945f2c 100644 --- a/lib/User/AddPassword.php +++ b/lib/User/AddPassword.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddRecordToOtherTableRowDate.php b/lib/User/AddRecordToOtherTableRowDate.php index c8adcc6..c3a0aa5 100644 --- a/lib/User/AddRecordToOtherTableRowDate.php +++ b/lib/User/AddRecordToOtherTableRowDate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddRecordToOtherTableRowDateTime.php b/lib/User/AddRecordToOtherTableRowDateTime.php index c5f04fd..a67cc85 100644 --- a/lib/User/AddRecordToOtherTableRowDateTime.php +++ b/lib/User/AddRecordToOtherTableRowDateTime.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AppsApi.php b/lib/User/AppsApi.php index 15b219d..c3d9566 100644 --- a/lib/User/AppsApi.php +++ b/lib/User/AppsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AttachmentApi.php b/lib/User/AttachmentApi.php index 36486de..9edc087 100644 --- a/lib/User/AttachmentApi.php +++ b/lib/User/AttachmentApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AutomationsApi.php b/lib/User/AutomationsApi.php index 7841d4a..dcfe1ae 100644 --- a/lib/User/AutomationsApi.php +++ b/lib/User/AutomationsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Base.php b/lib/User/Base.php index 9537b21..9727304 100644 --- a/lib/User/Base.php +++ b/lib/User/Base.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/BasePasswordRequest.php b/lib/User/BasePasswordRequest.php index 3917d34..404c93f 100644 --- a/lib/User/BasePasswordRequest.php +++ b/lib/User/BasePasswordRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/BaseTable.php b/lib/User/BaseTable.php index 898ac3a..1239ee8 100644 --- a/lib/User/BaseTable.php +++ b/lib/User/BaseTable.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/BasesApi.php b/lib/User/BasesApi.php index a7d41f4..3d59c38 100644 --- a/lib/User/BasesApi.php +++ b/lib/User/BasesApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ChooseADateColumnValue.php b/lib/User/ChooseADateColumnValue.php index be25d9b..7e1ce37 100644 --- a/lib/User/ChooseADateColumnValue.php +++ b/lib/User/ChooseADateColumnValue.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CommonDatasetApi.php b/lib/User/CommonDatasetApi.php index 89db511..9174b56 100644 --- a/lib/User/CommonDatasetApi.php +++ b/lib/User/CommonDatasetApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Contains.php b/lib/User/Contains.php index cc78371..10e2411 100644 --- a/lib/User/Contains.php +++ b/lib/User/Contains.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ContainsFilterTerm.php b/lib/User/ContainsFilterTerm.php index 479f641..fdeaab9 100644 --- a/lib/User/ContainsFilterTerm.php +++ b/lib/User/ContainsFilterTerm.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateAutomationRuleRequest.php b/lib/User/CreateAutomationRuleRequest.php index c94b165..f3e0717 100644 --- a/lib/User/CreateAutomationRuleRequest.php +++ b/lib/User/CreateAutomationRuleRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateGroupRequest.php b/lib/User/CreateGroupRequest.php index c40ecc4..999b5ce 100644 --- a/lib/User/CreateGroupRequest.php +++ b/lib/User/CreateGroupRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/DepartmentsApi.php b/lib/User/DepartmentsApi.php index 8ea22d6..00cb42d 100644 --- a/lib/User/DepartmentsApi.php +++ b/lib/User/DepartmentsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Detail.php b/lib/User/Detail.php index 630adac..6ebffb3 100644 --- a/lib/User/Detail.php +++ b/lib/User/Detail.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/DoesNotContain.php b/lib/User/DoesNotContain.php index c2edd2c..3be9d31 100644 --- a/lib/User/DoesNotContain.php +++ b/lib/User/DoesNotContain.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/EmailAccountsApi.php b/lib/User/EmailAccountsApi.php index 94eefe3..2921825 100644 --- a/lib/User/EmailAccountsApi.php +++ b/lib/User/EmailAccountsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Equal.php b/lib/User/Equal.php index 5a57f11..c60ce20 100644 --- a/lib/User/Equal.php +++ b/lib/User/Equal.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/FilterTermEmpty.php b/lib/User/FilterTermEmpty.php index dd85d93..23d7d54 100644 --- a/lib/User/FilterTermEmpty.php +++ b/lib/User/FilterTermEmpty.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/FiltersInner.php b/lib/User/FiltersInner.php index 3d065a1..0c2cf1c 100644 --- a/lib/User/FiltersInner.php +++ b/lib/User/FiltersInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/FormsApi.php b/lib/User/FormsApi.php index d90da08..50ed514 100644 --- a/lib/User/FormsApi.php +++ b/lib/User/FormsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetBigDataOperationLogs200Response.php b/lib/User/GetBigDataOperationLogs200Response.php index c8cf586..7916855 100644 --- a/lib/User/GetBigDataOperationLogs200Response.php +++ b/lib/User/GetBigDataOperationLogs200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php b/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php index c88d0ed..574cb8a 100644 --- a/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php +++ b/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php b/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php index 793105b..4b97f75 100644 --- a/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php +++ b/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Greater.php b/lib/User/Greater.php index 069a828..061aeef 100644 --- a/lib/User/Greater.php +++ b/lib/User/Greater.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GreaterOrEqual.php b/lib/User/GreaterOrEqual.php index 8088d59..1f37f6e 100644 --- a/lib/User/GreaterOrEqual.php +++ b/lib/User/GreaterOrEqual.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GroupsWorkspacesApi.php b/lib/User/GroupsWorkspacesApi.php index 47c9cfb..e065180 100644 --- a/lib/User/GroupsWorkspacesApi.php +++ b/lib/User/GroupsWorkspacesApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/HasAllOf.php b/lib/User/HasAllOf.php index 60e8be2..ea52e5a 100644 --- a/lib/User/HasAllOf.php +++ b/lib/User/HasAllOf.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/HasAnyOf.php b/lib/User/HasAnyOf.php index ae2715e..996cdec 100644 --- a/lib/User/HasAnyOf.php +++ b/lib/User/HasAnyOf.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/HasNoneOf.php b/lib/User/HasNoneOf.php index 0c90909..7531ea3 100644 --- a/lib/User/HasNoneOf.php +++ b/lib/User/HasNoneOf.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ImportBasefromDTableFile200Response.php b/lib/User/ImportBasefromDTableFile200Response.php index 34bdac5..ffbd91f 100644 --- a/lib/User/ImportBasefromDTableFile200Response.php +++ b/lib/User/ImportBasefromDTableFile200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ImportBasefromDTableFile200ResponseTable.php b/lib/User/ImportBasefromDTableFile200ResponseTable.php index 9fede31..1151d56 100644 --- a/lib/User/ImportBasefromDTableFile200ResponseTable.php +++ b/lib/User/ImportBasefromDTableFile200ResponseTable.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ImportExportApi.php b/lib/User/ImportExportApi.php index 8dc90d4..385ed79 100644 --- a/lib/User/ImportExportApi.php +++ b/lib/User/ImportExportApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ImportUsersToAppRequest.php b/lib/User/ImportUsersToAppRequest.php index 63869bf..c363a52 100644 --- a/lib/User/ImportUsersToAppRequest.php +++ b/lib/User/ImportUsersToAppRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IncludeMe.php b/lib/User/IncludeMe.php index 3aa2980..7b75f45 100644 --- a/lib/User/IncludeMe.php +++ b/lib/User/IncludeMe.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Is.php b/lib/User/Is.php index 2c7913d..3a7e71d 100644 --- a/lib/User/Is.php +++ b/lib/User/Is.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsAdmin.php b/lib/User/IsAdmin.php index 2fe6373..c4d7bfc 100644 --- a/lib/User/IsAdmin.php +++ b/lib/User/IsAdmin.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsAnyOf.php b/lib/User/IsAnyOf.php index d591e59..88b70dd 100644 --- a/lib/User/IsAnyOf.php +++ b/lib/User/IsAnyOf.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsCurrentUserID.php b/lib/User/IsCurrentUserID.php index 6d8a0d5..f157288 100644 --- a/lib/User/IsCurrentUserID.php +++ b/lib/User/IsCurrentUserID.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsEmpty.php b/lib/User/IsEmpty.php index e63cc68..2c84fbe 100644 --- a/lib/User/IsEmpty.php +++ b/lib/User/IsEmpty.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsExactly.php b/lib/User/IsExactly.php index f836bd9..2befbb2 100644 --- a/lib/User/IsExactly.php +++ b/lib/User/IsExactly.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsInactive.php b/lib/User/IsInactive.php index 3fe3be9..a454b2b 100644 --- a/lib/User/IsInactive.php +++ b/lib/User/IsInactive.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsNoneOf.php b/lib/User/IsNoneOf.php index a473871..ece3f9d 100644 --- a/lib/User/IsNoneOf.php +++ b/lib/User/IsNoneOf.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsNot.php b/lib/User/IsNot.php index 69d0953..7f6a5ab 100644 --- a/lib/User/IsNot.php +++ b/lib/User/IsNot.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsNotEmpty.php b/lib/User/IsNotEmpty.php index 4119225..7e63ef9 100644 --- a/lib/User/IsNotEmpty.php +++ b/lib/User/IsNotEmpty.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinTheNextMonth.php b/lib/User/IsWithinTheNextMonth.php index 140f1ac..8a411c2 100644 --- a/lib/User/IsWithinTheNextMonth.php +++ b/lib/User/IsWithinTheNextMonth.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinTheNextNumberOfDays.php b/lib/User/IsWithinTheNextNumberOfDays.php index 81d7b83..59d0cf2 100644 --- a/lib/User/IsWithinTheNextNumberOfDays.php +++ b/lib/User/IsWithinTheNextNumberOfDays.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinTheNextWeek.php b/lib/User/IsWithinTheNextWeek.php index 3ef4c32..272d13b 100644 --- a/lib/User/IsWithinTheNextWeek.php +++ b/lib/User/IsWithinTheNextWeek.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinTheNextYear.php b/lib/User/IsWithinTheNextYear.php index b4277af..2af1ae5 100644 --- a/lib/User/IsWithinTheNextYear.php +++ b/lib/User/IsWithinTheNextYear.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThePastMonth.php b/lib/User/IsWithinThePastMonth.php index a112151..68f7cc6 100644 --- a/lib/User/IsWithinThePastMonth.php +++ b/lib/User/IsWithinThePastMonth.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThePastNumberOfDays.php b/lib/User/IsWithinThePastNumberOfDays.php index 7db2ea7..26a6423 100644 --- a/lib/User/IsWithinThePastNumberOfDays.php +++ b/lib/User/IsWithinThePastNumberOfDays.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThePastWeek.php b/lib/User/IsWithinThePastWeek.php index e54513b..595c0ce 100644 --- a/lib/User/IsWithinThePastWeek.php +++ b/lib/User/IsWithinThePastWeek.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThePastYear.php b/lib/User/IsWithinThePastYear.php index 4061c7c..b9c0a68 100644 --- a/lib/User/IsWithinThePastYear.php +++ b/lib/User/IsWithinThePastYear.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThisMonth.php b/lib/User/IsWithinThisMonth.php index e50624c..c6da761 100644 --- a/lib/User/IsWithinThisMonth.php +++ b/lib/User/IsWithinThisMonth.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThisWeek.php b/lib/User/IsWithinThisWeek.php index bbd5a81..01ad513 100644 --- a/lib/User/IsWithinThisWeek.php +++ b/lib/User/IsWithinThisWeek.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThisYear.php b/lib/User/IsWithinThisYear.php index 6b87465..90e9d55 100644 --- a/lib/User/IsWithinThisYear.php +++ b/lib/User/IsWithinThisYear.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Less.php b/lib/User/Less.php index 8c03a5a..57c3518 100644 --- a/lib/User/Less.php +++ b/lib/User/Less.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/LessOrEqual.php b/lib/User/LessOrEqual.php index 28095a0..e97a6be 100644 --- a/lib/User/LessOrEqual.php +++ b/lib/User/LessOrEqual.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ListPublicUserInfosRequest.php b/lib/User/ListPublicUserInfosRequest.php index 91c0176..f40880e 100644 --- a/lib/User/ListPublicUserInfosRequest.php +++ b/lib/User/ListPublicUserInfosRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/MaintenanceApi.php b/lib/User/MaintenanceApi.php index 1bfa61d..18bb710 100644 --- a/lib/User/MaintenanceApi.php +++ b/lib/User/MaintenanceApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ModelInterface.php b/lib/User/ModelInterface.php index b981eb5..9597596 100644 --- a/lib/User/ModelInterface.php +++ b/lib/User/ModelInterface.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ModifyPassword.php b/lib/User/ModifyPassword.php index 5f6404c..2fd5565 100644 --- a/lib/User/ModifyPassword.php +++ b/lib/User/ModifyPassword.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/NotEqual.php b/lib/User/NotEqual.php index 7729c37..3c75da0 100644 --- a/lib/User/NotEqual.php +++ b/lib/User/NotEqual.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/NotificationsApi.php b/lib/User/NotificationsApi.php index d8b7c68..58c3023 100644 --- a/lib/User/NotificationsApi.php +++ b/lib/User/NotificationsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RecordsMeetSpecificConditionsAfterModification.php b/lib/User/RecordsMeetSpecificConditionsAfterModification.php index aa0f739..6cb67fc 100644 --- a/lib/User/RecordsMeetSpecificConditionsAfterModification.php +++ b/lib/User/RecordsMeetSpecificConditionsAfterModification.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RepairBase200Response.php b/lib/User/RepairBase200Response.php index 793c85e..3a7e802 100644 --- a/lib/User/RepairBase200Response.php +++ b/lib/User/RepairBase200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RowAdded.php b/lib/User/RowAdded.php index 3643bfa..1023c76 100644 --- a/lib/User/RowAdded.php +++ b/lib/User/RowAdded.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RunPeriodically.php b/lib/User/RunPeriodically.php index dccd4dd..70fffa3 100644 --- a/lib/User/RunPeriodically.php +++ b/lib/User/RunPeriodically.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RunPeriodicallyOnRecordsMeetConditions.php b/lib/User/RunPeriodicallyOnRecordsMeetConditions.php index 75c5047..a2a757e 100644 --- a/lib/User/RunPeriodicallyOnRecordsMeetConditions.php +++ b/lib/User/RunPeriodicallyOnRecordsMeetConditions.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SharingApi.php b/lib/User/SharingApi.php index 06e8c21..e452400 100644 --- a/lib/User/SharingApi.php +++ b/lib/User/SharingApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SharingLinksApi.php b/lib/User/SharingLinksApi.php index 1677295..ab3cea6 100644 --- a/lib/User/SharingLinksApi.php +++ b/lib/User/SharingLinksApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -1916,10 +1916,7 @@ public function deleteViewExternalLinkRequest($workspace_id, $base_name, $view_e 'Missing the required parameter $view_external_link_token when calling deleteViewExternalLink' ); } - if (!preg_match("/^[0-9a-f]{20}$/", $view_external_link_token)) { - throw new \InvalidArgumentException("invalid value for \"view_external_link_token\" when calling SharingLinksApi.deleteViewExternalLink, must conform to the pattern /^[0-9a-f]{20}$/."); - } - + $resourcePath = '/api/v2.1/workspace/{workspace_id}/dtable/{base_name}/view-external-links/{view_external_link_token}/'; $formParams = []; diff --git a/lib/User/SnapshotsApi.php b/lib/User/SnapshotsApi.php index 4a3c3b2..d461493 100644 --- a/lib/User/SnapshotsApi.php +++ b/lib/User/SnapshotsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SpecificDateValue.php b/lib/User/SpecificDateValue.php index a58d0fd..8f68cbd 100644 --- a/lib/User/SpecificDateValue.php +++ b/lib/User/SpecificDateValue.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SystemNotificationsApi.php b/lib/User/SystemNotificationsApi.php index 863e5c2..9fbc22d 100644 --- a/lib/User/SystemNotificationsApi.php +++ b/lib/User/SystemNotificationsApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TheDayRunningTheTaskValue.php b/lib/User/TheDayRunningTheTaskValue.php index b1e8626..305bc02 100644 --- a/lib/User/TheDayRunningTheTaskValue.php +++ b/lib/User/TheDayRunningTheTaskValue.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Trigger.php b/lib/User/Trigger.php index 52b6c68..340d45f 100644 --- a/lib/User/Trigger.php +++ b/lib/User/Trigger.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php b/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php index 730f243..080e17f 100644 --- a/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php +++ b/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRecordsMeetSpecificConditionsAfterModificationCondition.php b/lib/User/TriggerRecordsMeetSpecificConditionsAfterModificationCondition.php index 5b2c7b8..6ee07bd 100644 --- a/lib/User/TriggerRecordsMeetSpecificConditionsAfterModificationCondition.php +++ b/lib/User/TriggerRecordsMeetSpecificConditionsAfterModificationCondition.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRowAdded.php b/lib/User/TriggerRowAdded.php index cc95496..2360133 100644 --- a/lib/User/TriggerRowAdded.php +++ b/lib/User/TriggerRowAdded.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRowAddedCondition.php b/lib/User/TriggerRowAddedCondition.php index b43e9fe..6f5d8ea 100644 --- a/lib/User/TriggerRowAddedCondition.php +++ b/lib/User/TriggerRowAddedCondition.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyByCondition.php b/lib/User/TriggerRunPeriodicallyByCondition.php index 546b8f2..6481c67 100644 --- a/lib/User/TriggerRunPeriodicallyByCondition.php +++ b/lib/User/TriggerRunPeriodicallyByCondition.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyCondition.php b/lib/User/TriggerRunPeriodicallyCondition.php index 0516687..0a0684f 100644 --- a/lib/User/TriggerRunPeriodicallyCondition.php +++ b/lib/User/TriggerRunPeriodicallyCondition.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php index 9511549..8a597ec 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php index ddd827e..b3f85f7 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php index 5c9b7ad..91c0ef2 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php index 8d070ff..ceed6ad 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php index 70ea989..c684175 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php index b3453ad..d61527a 100644 --- a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php +++ b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerDay.php b/lib/User/TriggerRunPeriodicallyPerDay.php index 018e62d..d83112c 100644 --- a/lib/User/TriggerRunPeriodicallyPerDay.php +++ b/lib/User/TriggerRunPeriodicallyPerDay.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerDayTrigger.php b/lib/User/TriggerRunPeriodicallyPerDayTrigger.php index f601717..01525ed 100644 --- a/lib/User/TriggerRunPeriodicallyPerDayTrigger.php +++ b/lib/User/TriggerRunPeriodicallyPerDayTrigger.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerMonth.php b/lib/User/TriggerRunPeriodicallyPerMonth.php index b028b3b..ddc12c8 100644 --- a/lib/User/TriggerRunPeriodicallyPerMonth.php +++ b/lib/User/TriggerRunPeriodicallyPerMonth.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php b/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php index b1a33cb..015c75e 100644 --- a/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php +++ b/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerWeek.php b/lib/User/TriggerRunPeriodicallyPerWeek.php index 8de6684..b9ef4b9 100644 --- a/lib/User/TriggerRunPeriodicallyPerWeek.php +++ b/lib/User/TriggerRunPeriodicallyPerWeek.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php b/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php index 207179b..b739a0d 100644 --- a/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php +++ b/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UnsetPassword.php b/lib/User/UnsetPassword.php index 6105ef3..d399771 100644 --- a/lib/User/UnsetPassword.php +++ b/lib/User/UnsetPassword.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UpdateCommonDatasetSyncRequest.php b/lib/User/UpdateCommonDatasetSyncRequest.php index 22fb3a0..29e4d92 100644 --- a/lib/User/UpdateCommonDatasetSyncRequest.php +++ b/lib/User/UpdateCommonDatasetSyncRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UpdateGroupRequest.php b/lib/User/UpdateGroupRequest.php index c4caa7b..0e063ac 100644 --- a/lib/User/UpdateGroupRequest.php +++ b/lib/User/UpdateGroupRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UpdateGroupRoleRequest.php b/lib/User/UpdateGroupRoleRequest.php index aa82417..8717923 100644 --- a/lib/User/UpdateGroupRoleRequest.php +++ b/lib/User/UpdateGroupRoleRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UpdateNotificationRuleRequest.php b/lib/User/UpdateNotificationRuleRequest.php index 41ea8da..1180fc6 100644 --- a/lib/User/UpdateNotificationRuleRequest.php +++ b/lib/User/UpdateNotificationRuleRequest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UserApi.php b/lib/User/UserApi.php index 8d9b188..8d2eeb7 100644 --- a/lib/User/UserApi.php +++ b/lib/User/UserApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UsersInfo.php b/lib/User/UsersInfo.php index fa4d3b7..f4df07c 100644 --- a/lib/User/UsersInfo.php +++ b/lib/User/UsersInfo.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/WebhooksApi.php b/lib/User/WebhooksApi.php index 209f3e0..de7cc29 100644 --- a/lib/User/WebhooksApi.php +++ b/lib/User/WebhooksApi.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XDaysBeforeRunningTheTaskValue.php b/lib/User/XDaysBeforeRunningTheTaskValue.php index 0454866..86c418a 100644 --- a/lib/User/XDaysBeforeRunningTheTaskValue.php +++ b/lib/User/XDaysBeforeRunningTheTaskValue.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxExactDate.php b/lib/User/XxxExactDate.php index 613d284..1a12bf4 100644 --- a/lib/User/XxxExactDate.php +++ b/lib/User/XxxExactDate.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxNumberOfDaysAgo.php b/lib/User/XxxNumberOfDaysAgo.php index 800851a..3033651 100644 --- a/lib/User/XxxNumberOfDaysAgo.php +++ b/lib/User/XxxNumberOfDaysAgo.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxNumberOfDaysFromNow.php b/lib/User/XxxNumberOfDaysFromNow.php index 70724c8..df68797 100644 --- a/lib/User/XxxNumberOfDaysFromNow.php +++ b/lib/User/XxxNumberOfDaysFromNow.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxOneMonthAgo.php b/lib/User/XxxOneMonthAgo.php index e22c7c8..b4c7c39 100644 --- a/lib/User/XxxOneMonthAgo.php +++ b/lib/User/XxxOneMonthAgo.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxOneMonthFromNow.php b/lib/User/XxxOneMonthFromNow.php index c1da72e..8a55266 100644 --- a/lib/User/XxxOneMonthFromNow.php +++ b/lib/User/XxxOneMonthFromNow.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxOneWeekAgo.php b/lib/User/XxxOneWeekAgo.php index 98f7ba8..69771e4 100644 --- a/lib/User/XxxOneWeekAgo.php +++ b/lib/User/XxxOneWeekAgo.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxOneWeekFromNow.php b/lib/User/XxxOneWeekFromNow.php index 31e17a3..4074cb9 100644 --- a/lib/User/XxxOneWeekFromNow.php +++ b/lib/User/XxxOneWeekFromNow.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxToday.php b/lib/User/XxxToday.php index 683d014..41074b5 100644 --- a/lib/User/XxxToday.php +++ b/lib/User/XxxToday.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxTomorrow.php b/lib/User/XxxTomorrow.php index aa1daff..163e518 100644 --- a/lib/User/XxxTomorrow.php +++ b/lib/User/XxxTomorrow.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxYesterday.php b/lib/User/XxxYesterday.php index 54edf80..917bd10 100644 --- a/lib/User/XxxYesterday.php +++ b/lib/User/XxxYesterday.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/APITokenApiTest.php b/test/Api/APITokenApiTest.php index 6bc60b1..a75ee2e 100644 --- a/test/Api/APITokenApiTest.php +++ b/test/Api/APITokenApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/AccountTokenApiTest.php b/test/Api/AccountTokenApiTest.php index 088e411..1649c44 100644 --- a/test/Api/AccountTokenApiTest.php +++ b/test/Api/AccountTokenApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/AppsApiTest.php b/test/Api/AppsApiTest.php index ec316df..4f3665d 100644 --- a/test/Api/AppsApiTest.php +++ b/test/Api/AppsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/AttachmentApiTest.php b/test/Api/AttachmentApiTest.php index 2bce1b0..ba87395 100644 --- a/test/Api/AttachmentApiTest.php +++ b/test/Api/AttachmentApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/AutomationsApiTest.php b/test/Api/AutomationsApiTest.php index 325bbad..10212a9 100644 --- a/test/Api/AutomationsApiTest.php +++ b/test/Api/AutomationsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/BaseInfoApiTest.php b/test/Api/BaseInfoApiTest.php index 0ea1ccd..cb230c4 100644 --- a/test/Api/BaseInfoApiTest.php +++ b/test/Api/BaseInfoApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/BaseTokenApiTest.php b/test/Api/BaseTokenApiTest.php index fa79586..69e8412 100644 --- a/test/Api/BaseTokenApiTest.php +++ b/test/Api/BaseTokenApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/BasesApiTest.php b/test/Api/BasesApiTest.php index 20dbef0..b8ef33c 100644 --- a/test/Api/BasesApiTest.php +++ b/test/Api/BasesApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/BigDataApiTest.php b/test/Api/BigDataApiTest.php index 54be120..b5a7e8c 100644 --- a/test/Api/BigDataApiTest.php +++ b/test/Api/BigDataApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/ColumnsApiTest.php b/test/Api/ColumnsApiTest.php index 63bb737..f162f00 100644 --- a/test/Api/ColumnsApiTest.php +++ b/test/Api/ColumnsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/CommonDatasetApiTest.php b/test/Api/CommonDatasetApiTest.php index 9f527e0..35d0be5 100644 --- a/test/Api/CommonDatasetApiTest.php +++ b/test/Api/CommonDatasetApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/DepartmentsApiTest.php b/test/Api/DepartmentsApiTest.php index c8fb608..322bdac 100644 --- a/test/Api/DepartmentsApiTest.php +++ b/test/Api/DepartmentsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/EmailAccountsApiTest.php b/test/Api/EmailAccountsApiTest.php index 3f17cb0..d780494 100644 --- a/test/Api/EmailAccountsApiTest.php +++ b/test/Api/EmailAccountsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/ExportApiTest.php b/test/Api/ExportApiTest.php index 5caa4d3..063c53d 100644 --- a/test/Api/ExportApiTest.php +++ b/test/Api/ExportApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/FilesImagesApiTest.php b/test/Api/FilesImagesApiTest.php index 89487df..97e6f01 100644 --- a/test/Api/FilesImagesApiTest.php +++ b/test/Api/FilesImagesApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/FilesImagesCustomFolderApiTest.php b/test/Api/FilesImagesCustomFolderApiTest.php index c268ea9..60ca0c2 100644 --- a/test/Api/FilesImagesCustomFolderApiTest.php +++ b/test/Api/FilesImagesCustomFolderApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/FormsApiTest.php b/test/Api/FormsApiTest.php index 177f6cd..7ffa6b0 100644 --- a/test/Api/FormsApiTest.php +++ b/test/Api/FormsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/GroupsApiTest.php b/test/Api/GroupsApiTest.php index 278bba3..be70c36 100644 --- a/test/Api/GroupsApiTest.php +++ b/test/Api/GroupsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/GroupsWorkspacesApiTest.php b/test/Api/GroupsWorkspacesApiTest.php index 45f7145..71154ec 100644 --- a/test/Api/GroupsWorkspacesApiTest.php +++ b/test/Api/GroupsWorkspacesApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/ImportExportApiTest.php b/test/Api/ImportExportApiTest.php index ab0a957..94b16ce 100644 --- a/test/Api/ImportExportApiTest.php +++ b/test/Api/ImportExportApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/LinksApiTest.php b/test/Api/LinksApiTest.php index 3d26a52..1072e34 100644 --- a/test/Api/LinksApiTest.php +++ b/test/Api/LinksApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/LogsApiTest.php b/test/Api/LogsApiTest.php index 42c28ea..449130b 100644 --- a/test/Api/LogsApiTest.php +++ b/test/Api/LogsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/MaintenanceApiTest.php b/test/Api/MaintenanceApiTest.php index 96b76a6..e00ec87 100644 --- a/test/Api/MaintenanceApiTest.php +++ b/test/Api/MaintenanceApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/NotificationsApiTest.php b/test/Api/NotificationsApiTest.php index fd6c9a1..83247b4 100644 --- a/test/Api/NotificationsApiTest.php +++ b/test/Api/NotificationsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/PluginsApiTest.php b/test/Api/PluginsApiTest.php index 15d0002..c0ec78d 100644 --- a/test/Api/PluginsApiTest.php +++ b/test/Api/PluginsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/RowCommentsApiTest.php b/test/Api/RowCommentsApiTest.php index 3d0c341..cf6e289 100644 --- a/test/Api/RowCommentsApiTest.php +++ b/test/Api/RowCommentsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/RowsApiTest.php b/test/Api/RowsApiTest.php index 11c927a..92f803a 100644 --- a/test/Api/RowsApiTest.php +++ b/test/Api/RowsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/RunsApiTest.php b/test/Api/RunsApiTest.php index 332400a..178691a 100644 --- a/test/Api/RunsApiTest.php +++ b/test/Api/RunsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/SharingApiTest.php b/test/Api/SharingApiTest.php index e08dbcb..343bd4e 100644 --- a/test/Api/SharingApiTest.php +++ b/test/Api/SharingApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/SharingLinksApiTest.php b/test/Api/SharingLinksApiTest.php index 3fb6156..6308b3c 100644 --- a/test/Api/SharingLinksApiTest.php +++ b/test/Api/SharingLinksApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/SnapshotsApiTest.php b/test/Api/SnapshotsApiTest.php index 078bd52..d66c6fd 100644 --- a/test/Api/SnapshotsApiTest.php +++ b/test/Api/SnapshotsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/StatisticsApiTest.php b/test/Api/StatisticsApiTest.php index c6ac820..33fa4c7 100644 --- a/test/Api/StatisticsApiTest.php +++ b/test/Api/StatisticsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -106,6 +106,18 @@ public function testGetExternalApps() self::markTestIncomplete('Not implemented'); } + /** + * Test case for getOwnerOrTeamAIStatistics + * + * Get AI statistics by owner/team. + * + */ + public function testGetOwnerOrTeamAIStatistics() + { + // TODO: implement + self::markTestIncomplete('Not implemented'); + } + /** * Test case for getScriptRunningCountByUser * diff --git a/test/Api/SystemInfoCustomizingApiTest.php b/test/Api/SystemInfoCustomizingApiTest.php index 82d7405..73f9968 100644 --- a/test/Api/SystemInfoCustomizingApiTest.php +++ b/test/Api/SystemInfoCustomizingApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/SystemNotificationsApiTest.php b/test/Api/SystemNotificationsApiTest.php index b4c93f8..082cf2c 100644 --- a/test/Api/SystemNotificationsApiTest.php +++ b/test/Api/SystemNotificationsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/TablesApiTest.php b/test/Api/TablesApiTest.php index 009c86d..a33032f 100644 --- a/test/Api/TablesApiTest.php +++ b/test/Api/TablesApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/TeamsApiTest.php b/test/Api/TeamsApiTest.php index 041a325..b139a90 100644 --- a/test/Api/TeamsApiTest.php +++ b/test/Api/TeamsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/UserApiTest.php b/test/Api/UserApiTest.php index 5c8c364..68fdf00 100644 --- a/test/Api/UserApiTest.php +++ b/test/Api/UserApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/UsersApiTest.php b/test/Api/UsersApiTest.php index 1770853..3d76591 100644 --- a/test/Api/UsersApiTest.php +++ b/test/Api/UsersApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/ViewsApiTest.php b/test/Api/ViewsApiTest.php index 56ef011..8a79b24 100644 --- a/test/Api/ViewsApiTest.php +++ b/test/Api/ViewsApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Api/WebhooksApiTest.php b/test/Api/WebhooksApiTest.php index 399b3ef..8fdf6cb 100644 --- a/test/Api/WebhooksApiTest.php +++ b/test/Api/WebhooksApiTest.php @@ -14,7 +14,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AccessTokenTest.php b/test/Model/AccessTokenTest.php index a471964..669f29b 100644 --- a/test/Model/AccessTokenTest.php +++ b/test/Model/AccessTokenTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AccountTokenTest.php b/test/Model/AccountTokenTest.php index e6996d0..7ae93f8 100644 --- a/test/Model/AccountTokenTest.php +++ b/test/Model/AccountTokenTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionAddRecordTest.php b/test/Model/ActionAddRecordTest.php index e064d0b..5d22951 100644 --- a/test/Model/ActionAddRecordTest.php +++ b/test/Model/ActionAddRecordTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionAddRecordToOtherTableRowTest.php b/test/Model/ActionAddRecordToOtherTableRowTest.php index 6d0bafe..88e7e93 100644 --- a/test/Model/ActionAddRecordToOtherTableRowTest.php +++ b/test/Model/ActionAddRecordToOtherTableRowTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionAddRecordToOtherTableTest.php b/test/Model/ActionAddRecordToOtherTableTest.php index 115523d..022c579 100644 --- a/test/Model/ActionAddRecordToOtherTableTest.php +++ b/test/Model/ActionAddRecordToOtherTableTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionCalculateAccumulatedValueTest.php b/test/Model/ActionCalculateAccumulatedValueTest.php index 54a5eb0..b818158 100644 --- a/test/Model/ActionCalculateAccumulatedValueTest.php +++ b/test/Model/ActionCalculateAccumulatedValueTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionCalculateDeltaTest.php b/test/Model/ActionCalculateDeltaTest.php index af3d61e..91cadeb 100644 --- a/test/Model/ActionCalculateDeltaTest.php +++ b/test/Model/ActionCalculateDeltaTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionCalculatePercentageTest.php b/test/Model/ActionCalculatePercentageTest.php index 5fd73e8..86b58a9 100644 --- a/test/Model/ActionCalculatePercentageTest.php +++ b/test/Model/ActionCalculatePercentageTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionCalculateRankTest.php b/test/Model/ActionCalculateRankTest.php index f086f84..5beaae6 100644 --- a/test/Model/ActionCalculateRankTest.php +++ b/test/Model/ActionCalculateRankTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionExtractUserNameTest.php b/test/Model/ActionExtractUserNameTest.php index 3cca698..6512239 100644 --- a/test/Model/ActionExtractUserNameTest.php +++ b/test/Model/ActionExtractUserNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionLinkRecordMatchConditionsInnerTest.php b/test/Model/ActionLinkRecordMatchConditionsInnerTest.php index 6e61667..27f7b79 100644 --- a/test/Model/ActionLinkRecordMatchConditionsInnerTest.php +++ b/test/Model/ActionLinkRecordMatchConditionsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionLinkRecordTest.php b/test/Model/ActionLinkRecordTest.php index 9d3457b..549dd31 100644 --- a/test/Model/ActionLinkRecordTest.php +++ b/test/Model/ActionLinkRecordTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionLockRecordTest.php b/test/Model/ActionLockRecordTest.php index fc365cb..518a0bd 100644 --- a/test/Model/ActionLockRecordTest.php +++ b/test/Model/ActionLockRecordTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionLookupAndCopyEqualColumnConditionsInnerTest.php b/test/Model/ActionLookupAndCopyEqualColumnConditionsInnerTest.php index 27b08bb..ca42be5 100644 --- a/test/Model/ActionLookupAndCopyEqualColumnConditionsInnerTest.php +++ b/test/Model/ActionLookupAndCopyEqualColumnConditionsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionLookupAndCopyTableConditionTest.php b/test/Model/ActionLookupAndCopyTableConditionTest.php index 4a9c585..cd7de80 100644 --- a/test/Model/ActionLookupAndCopyTableConditionTest.php +++ b/test/Model/ActionLookupAndCopyTableConditionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionLookupAndCopyTest.php b/test/Model/ActionLookupAndCopyTest.php index c500e3f..602611c 100644 --- a/test/Model/ActionLookupAndCopyTest.php +++ b/test/Model/ActionLookupAndCopyTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionNotifyTest.php b/test/Model/ActionNotifyTest.php index f07b415..47729b4 100644 --- a/test/Model/ActionNotifyTest.php +++ b/test/Model/ActionNotifyTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionRecordsMeetSpecificConditionsAfterModificationInnerTest.php b/test/Model/ActionRecordsMeetSpecificConditionsAfterModificationInnerTest.php index 0ee26c2..ae5e695 100644 --- a/test/Model/ActionRecordsMeetSpecificConditionsAfterModificationInnerTest.php +++ b/test/Model/ActionRecordsMeetSpecificConditionsAfterModificationInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionRunPeriodicallyInnerTest.php b/test/Model/ActionRunPeriodicallyInnerTest.php index 12cb3c7..0a7d6e3 100644 --- a/test/Model/ActionRunPeriodicallyInnerTest.php +++ b/test/Model/ActionRunPeriodicallyInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionRunPeriodicallyOnRecordsInnerTest.php b/test/Model/ActionRunPeriodicallyOnRecordsInnerTest.php index 47dfff6..c766d79 100644 --- a/test/Model/ActionRunPeriodicallyOnRecordsInnerTest.php +++ b/test/Model/ActionRunPeriodicallyOnRecordsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionRunPythonScriptTest.php b/test/Model/ActionRunPythonScriptTest.php index 8b2a214..397422d 100644 --- a/test/Model/ActionRunPythonScriptTest.php +++ b/test/Model/ActionRunPythonScriptTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionSendEmailTest.php b/test/Model/ActionSendEmailTest.php index 6fe98f9..2c8acd9 100644 --- a/test/Model/ActionSendEmailTest.php +++ b/test/Model/ActionSendEmailTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionTest.php b/test/Model/ActionTest.php index 454750e..4126ee4 100644 --- a/test/Model/ActionTest.php +++ b/test/Model/ActionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ActionUpdateRecordTest.php b/test/Model/ActionUpdateRecordTest.php index 41a3784..7bfca7d 100644 --- a/test/Model/ActionUpdateRecordTest.php +++ b/test/Model/ActionUpdateRecordTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddDepartmentRequestTest.php b/test/Model/AddDepartmentRequestTest.php index 70fdfca..8a7efe7 100644 --- a/test/Model/AddDepartmentRequestTest.php +++ b/test/Model/AddDepartmentRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddEmailAccountRequestTest.php b/test/Model/AddEmailAccountRequestTest.php index e258002..a57079e 100644 --- a/test/Model/AddEmailAccountRequestTest.php +++ b/test/Model/AddEmailAccountRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddGroupMemberRequestTest.php b/test/Model/AddGroupMemberRequestTest.php index 028161a..40f23f7 100644 --- a/test/Model/AddGroupMemberRequestTest.php +++ b/test/Model/AddGroupMemberRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddNewUserRequestTest.php b/test/Model/AddNewUserRequestTest.php index a80f56c..7851187 100644 --- a/test/Model/AddNewUserRequestTest.php +++ b/test/Model/AddNewUserRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddNotificationRuleRequestActionTest.php b/test/Model/AddNotificationRuleRequestActionTest.php index 951d4af..bcefef8 100644 --- a/test/Model/AddNotificationRuleRequestActionTest.php +++ b/test/Model/AddNotificationRuleRequestActionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddNotificationRuleRequestTest.php b/test/Model/AddNotificationRuleRequestTest.php index 17abf48..2d33ba2 100644 --- a/test/Model/AddNotificationRuleRequestTest.php +++ b/test/Model/AddNotificationRuleRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddNotificationRuleRequestTriggerTest.php b/test/Model/AddNotificationRuleRequestTriggerTest.php index e95eb67..435fd21 100644 --- a/test/Model/AddNotificationRuleRequestTriggerTest.php +++ b/test/Model/AddNotificationRuleRequestTriggerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddNotificationToUserRequestTest.php b/test/Model/AddNotificationToUserRequestTest.php index a63da9e..3cfd4d7 100644 --- a/test/Model/AddNotificationToUserRequestTest.php +++ b/test/Model/AddNotificationToUserRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddPasswordTest.php b/test/Model/AddPasswordTest.php index 7e0a3c3..71fb72e 100644 --- a/test/Model/AddPasswordTest.php +++ b/test/Model/AddPasswordTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddRecordToOtherTableRowDateTest.php b/test/Model/AddRecordToOtherTableRowDateTest.php index be038b2..346f67a 100644 --- a/test/Model/AddRecordToOtherTableRowDateTest.php +++ b/test/Model/AddRecordToOtherTableRowDateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddRecordToOtherTableRowDateTimeTest.php b/test/Model/AddRecordToOtherTableRowDateTimeTest.php index b3586d6..9215fc6 100644 --- a/test/Model/AddRecordToOtherTableRowDateTimeTest.php +++ b/test/Model/AddRecordToOtherTableRowDateTimeTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddSingleMultipleSelectOptionsOptionsInnerTest.php b/test/Model/AddSingleMultipleSelectOptionsOptionsInnerTest.php index 88b2b6d..f73e246 100644 --- a/test/Model/AddSingleMultipleSelectOptionsOptionsInnerTest.php +++ b/test/Model/AddSingleMultipleSelectOptionsOptionsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddSingleMultipleSelectOptionsTest.php b/test/Model/AddSingleMultipleSelectOptionsTest.php index 79c0ebe..7d6f47b 100644 --- a/test/Model/AddSingleMultipleSelectOptionsTest.php +++ b/test/Model/AddSingleMultipleSelectOptionsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AddTeamRequestTest.php b/test/Model/AddTeamRequestTest.php index 4aca1b5..7ef33fd 100644 --- a/test/Model/AddTeamRequestTest.php +++ b/test/Model/AddTeamRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ApiTokenListTest.php b/test/Model/ApiTokenListTest.php index b79d676..60178e1 100644 --- a/test/Model/ApiTokenListTest.php +++ b/test/Model/ApiTokenListTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ApiTokenTemporaryTest.php b/test/Model/ApiTokenTemporaryTest.php index c7276ea..2fccd3a 100644 --- a/test/Model/ApiTokenTemporaryTest.php +++ b/test/Model/ApiTokenTemporaryTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ApiTokenTest.php b/test/Model/ApiTokenTest.php index f5d0495..b080721 100644 --- a/test/Model/ApiTokenTest.php +++ b/test/Model/ApiTokenTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AppendColumnsRequestColumnsInnerTest.php b/test/Model/AppendColumnsRequestColumnsInnerTest.php index 16dcd3b..ea451bd 100644 --- a/test/Model/AppendColumnsRequestColumnsInnerTest.php +++ b/test/Model/AppendColumnsRequestColumnsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AppendColumnsRequestTest.php b/test/Model/AppendColumnsRequestTest.php index c76ffcf..4bb108e 100644 --- a/test/Model/AppendColumnsRequestTest.php +++ b/test/Model/AppendColumnsRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AppendRowTest.php b/test/Model/AppendRowTest.php index 29b5094..aed306a 100644 --- a/test/Model/AppendRowTest.php +++ b/test/Model/AppendRowTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AppendRowsTest.php b/test/Model/AppendRowsTest.php index 5957ea0..17c0817 100644 --- a/test/Model/AppendRowsTest.php +++ b/test/Model/AppendRowsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ArchiveViewTest.php b/test/Model/ArchiveViewTest.php index 22a1426..cdebdc9 100644 --- a/test/Model/ArchiveViewTest.php +++ b/test/Model/ArchiveViewTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AuthenticationPermissionTest.php b/test/Model/AuthenticationPermissionTest.php index 2b0ae84..34530fe 100644 --- a/test/Model/AuthenticationPermissionTest.php +++ b/test/Model/AuthenticationPermissionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AutomaticFilterPredicateTest.php b/test/Model/AutomaticFilterPredicateTest.php index b3d46ec..2676c5e 100644 --- a/test/Model/AutomaticFilterPredicateTest.php +++ b/test/Model/AutomaticFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AutonumberColumnFormatTest.php b/test/Model/AutonumberColumnFormatTest.php index 86e54cf..17756cf 100644 --- a/test/Model/AutonumberColumnFormatTest.php +++ b/test/Model/AutonumberColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AutonumberColumnTest.php b/test/Model/AutonumberColumnTest.php index 4ddcb64..ad9fa16 100644 --- a/test/Model/AutonumberColumnTest.php +++ b/test/Model/AutonumberColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/AutonumberColumnWithTableNameTest.php b/test/Model/AutonumberColumnWithTableNameTest.php index 61b73e1..7698b7f 100644 --- a/test/Model/AutonumberColumnWithTableNameTest.php +++ b/test/Model/AutonumberColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/BasePasswordRequestTest.php b/test/Model/BasePasswordRequestTest.php index 4cc590b..a1b839a 100644 --- a/test/Model/BasePasswordRequestTest.php +++ b/test/Model/BasePasswordRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/BaseTableTest.php b/test/Model/BaseTableTest.php index 1df958b..13fee94 100644 --- a/test/Model/BaseTableTest.php +++ b/test/Model/BaseTableTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/BaseTest.php b/test/Model/BaseTest.php index 85776c2..8e4574a 100644 --- a/test/Model/BaseTest.php +++ b/test/Model/BaseTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ButtonColumnFormatSelectedColumnsInnerTest.php b/test/Model/ButtonColumnFormatSelectedColumnsInnerTest.php index f17dc91..3acbdea 100644 --- a/test/Model/ButtonColumnFormatSelectedColumnsInnerTest.php +++ b/test/Model/ButtonColumnFormatSelectedColumnsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ButtonColumnFormatTest.php b/test/Model/ButtonColumnFormatTest.php index 9389615..b619892 100644 --- a/test/Model/ButtonColumnFormatTest.php +++ b/test/Model/ButtonColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ButtonColumnTest.php b/test/Model/ButtonColumnTest.php index 04eed56..71a5522 100644 --- a/test/Model/ButtonColumnTest.php +++ b/test/Model/ButtonColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ButtonColumnWithTableNameTest.php b/test/Model/ButtonColumnWithTableNameTest.php index 70b3545..a1a1045 100644 --- a/test/Model/ButtonColumnWithTableNameTest.php +++ b/test/Model/ButtonColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CheckboxColumnTest.php b/test/Model/CheckboxColumnTest.php index e33690c..736e105 100644 --- a/test/Model/CheckboxColumnTest.php +++ b/test/Model/CheckboxColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CheckboxColumnWithTableNameTest.php b/test/Model/CheckboxColumnWithTableNameTest.php index 35ab78f..71fb19d 100644 --- a/test/Model/CheckboxColumnWithTableNameTest.php +++ b/test/Model/CheckboxColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CheckboxFilterPredicateTest.php b/test/Model/CheckboxFilterPredicateTest.php index e7af8d6..3cfdbfd 100644 --- a/test/Model/CheckboxFilterPredicateTest.php +++ b/test/Model/CheckboxFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ChooseADateColumnValueTest.php b/test/Model/ChooseADateColumnValueTest.php index 6dcafc1..4d7bdc0 100644 --- a/test/Model/ChooseADateColumnValueTest.php +++ b/test/Model/ChooseADateColumnValueTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CollaboratorColumnTest.php b/test/Model/CollaboratorColumnTest.php index 958e972..690eee0 100644 --- a/test/Model/CollaboratorColumnTest.php +++ b/test/Model/CollaboratorColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CollaboratorColumnWithTableNameTest.php b/test/Model/CollaboratorColumnWithTableNameTest.php index f401d1c..18b6885 100644 --- a/test/Model/CollaboratorColumnWithTableNameTest.php +++ b/test/Model/CollaboratorColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CollaboratorFilterPredicateTest.php b/test/Model/CollaboratorFilterPredicateTest.php index e474778..dfdce39 100644 --- a/test/Model/CollaboratorFilterPredicateTest.php +++ b/test/Model/CollaboratorFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ContainsFilterTermTest.php b/test/Model/ContainsFilterTermTest.php index 59d961b..7ef97ad 100644 --- a/test/Model/ContainsFilterTermTest.php +++ b/test/Model/ContainsFilterTermTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ContainsTest.php b/test/Model/ContainsTest.php index 66fb26a..a626a4d 100644 --- a/test/Model/ContainsTest.php +++ b/test/Model/ContainsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CreateAutomationRuleRequestTest.php b/test/Model/CreateAutomationRuleRequestTest.php index c54e46c..ca15d8e 100644 --- a/test/Model/CreateAutomationRuleRequestTest.php +++ b/test/Model/CreateAutomationRuleRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CreateGroupRequestTest.php b/test/Model/CreateGroupRequestTest.php index 3b3125b..e481226 100644 --- a/test/Model/CreateGroupRequestTest.php +++ b/test/Model/CreateGroupRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CreateRowCommentTest.php b/test/Model/CreateRowCommentTest.php index ebf839c..fee8493 100644 --- a/test/Model/CreateRowCommentTest.php +++ b/test/Model/CreateRowCommentTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CreateTableRequestColumnsInnerTest.php b/test/Model/CreateTableRequestColumnsInnerTest.php index 1c8e8ca..5295e1b 100644 --- a/test/Model/CreateTableRequestColumnsInnerTest.php +++ b/test/Model/CreateTableRequestColumnsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CreateTableRequestTest.php b/test/Model/CreateTableRequestTest.php index c22fd27..a9e3058 100644 --- a/test/Model/CreateTableRequestTest.php +++ b/test/Model/CreateTableRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CreatorColumnTest.php b/test/Model/CreatorColumnTest.php index 2a80ee4..c1c3e2f 100644 --- a/test/Model/CreatorColumnTest.php +++ b/test/Model/CreatorColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CreatorColumnWithTableNameTest.php b/test/Model/CreatorColumnWithTableNameTest.php index 3b3a26c..0f04583 100644 --- a/test/Model/CreatorColumnWithTableNameTest.php +++ b/test/Model/CreatorColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CreatorFilterPredicateTest.php b/test/Model/CreatorFilterPredicateTest.php index 8114ab4..2ab28a9 100644 --- a/test/Model/CreatorFilterPredicateTest.php +++ b/test/Model/CreatorFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CtimeColumnTest.php b/test/Model/CtimeColumnTest.php index e150c7d..e552f87 100644 --- a/test/Model/CtimeColumnTest.php +++ b/test/Model/CtimeColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/CtimeColumnWithTableNameTest.php b/test/Model/CtimeColumnWithTableNameTest.php index 5c8b453..2c1c5e5 100644 --- a/test/Model/CtimeColumnWithTableNameTest.php +++ b/test/Model/CtimeColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DateColumnFormatTest.php b/test/Model/DateColumnFormatTest.php index 4e6e49f..3f2d182 100644 --- a/test/Model/DateColumnFormatTest.php +++ b/test/Model/DateColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DateColumnTest.php b/test/Model/DateColumnTest.php index a770b64..fbd9fe3 100644 --- a/test/Model/DateColumnTest.php +++ b/test/Model/DateColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DateColumnWithTableNameTest.php b/test/Model/DateColumnWithTableNameTest.php index 2f50c52..ad8b2ca 100644 --- a/test/Model/DateColumnWithTableNameTest.php +++ b/test/Model/DateColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DateFilterPredicateTest.php b/test/Model/DateFilterPredicateTest.php index eaf106d..b79187c 100644 --- a/test/Model/DateFilterPredicateTest.php +++ b/test/Model/DateFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DateFilterTermModifierTest.php b/test/Model/DateFilterTermModifierTest.php index 701ce51..32f27a4 100644 --- a/test/Model/DateFilterTermModifierTest.php +++ b/test/Model/DateFilterTermModifierTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DeleteColumnTest.php b/test/Model/DeleteColumnTest.php index 9bf8587..5bc8f8a 100644 --- a/test/Model/DeleteColumnTest.php +++ b/test/Model/DeleteColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DeleteRowTest.php b/test/Model/DeleteRowTest.php index bf15275..1a67fda 100644 --- a/test/Model/DeleteRowTest.php +++ b/test/Model/DeleteRowTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DeleteRowsTest.php b/test/Model/DeleteRowsTest.php index 2eb5f21..e5ab421 100644 --- a/test/Model/DeleteRowsTest.php +++ b/test/Model/DeleteRowsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DeleteSelectOptionsTest.php b/test/Model/DeleteSelectOptionsTest.php index 0f2d2f0..d575b92 100644 --- a/test/Model/DeleteSelectOptionsTest.php +++ b/test/Model/DeleteSelectOptionsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DeleteTableTest.php b/test/Model/DeleteTableTest.php index 2362e0e..ba2d934 100644 --- a/test/Model/DeleteTableTest.php +++ b/test/Model/DeleteTableTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DetailTest.php b/test/Model/DetailTest.php index 3f8119a..b25713e 100644 --- a/test/Model/DetailTest.php +++ b/test/Model/DetailTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DoesNotContainTest.php b/test/Model/DoesNotContainTest.php index 082177d..f126cfe 100644 --- a/test/Model/DoesNotContainTest.php +++ b/test/Model/DoesNotContainTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DuplicateTableTest.php b/test/Model/DuplicateTableTest.php index c4100a3..2f53167 100644 --- a/test/Model/DuplicateTableTest.php +++ b/test/Model/DuplicateTableTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DurationColumnFormatTest.php b/test/Model/DurationColumnFormatTest.php index 5df86ce..244adf8 100644 --- a/test/Model/DurationColumnFormatTest.php +++ b/test/Model/DurationColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DurationColumnTest.php b/test/Model/DurationColumnTest.php index cfe2682..7a060f3 100644 --- a/test/Model/DurationColumnTest.php +++ b/test/Model/DurationColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/DurationColumnWithTableNameTest.php b/test/Model/DurationColumnWithTableNameTest.php index c1a6240..dfaf970 100644 --- a/test/Model/DurationColumnWithTableNameTest.php +++ b/test/Model/DurationColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/EmailColumnTest.php b/test/Model/EmailColumnTest.php index f44198f..025b969 100644 --- a/test/Model/EmailColumnTest.php +++ b/test/Model/EmailColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/EmailColumnWithTableNameTest.php b/test/Model/EmailColumnWithTableNameTest.php index b099379..9ce6b36 100644 --- a/test/Model/EmailColumnWithTableNameTest.php +++ b/test/Model/EmailColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/EmailFilterPredicateTest.php b/test/Model/EmailFilterPredicateTest.php index 235b902..17fc787 100644 --- a/test/Model/EmailFilterPredicateTest.php +++ b/test/Model/EmailFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/EnforceTwoFactorRequestTest.php b/test/Model/EnforceTwoFactorRequestTest.php index 947f4a8..083cb99 100644 --- a/test/Model/EnforceTwoFactorRequestTest.php +++ b/test/Model/EnforceTwoFactorRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/EqualTest.php b/test/Model/EqualTest.php index 62990f8..52f780c 100644 --- a/test/Model/EqualTest.php +++ b/test/Model/EqualTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FileColumnTest.php b/test/Model/FileColumnTest.php index 1c5c041..3053c6a 100644 --- a/test/Model/FileColumnTest.php +++ b/test/Model/FileColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FileColumnWithTableNameTest.php b/test/Model/FileColumnWithTableNameTest.php index 9afc8dc..5948cb2 100644 --- a/test/Model/FileColumnWithTableNameTest.php +++ b/test/Model/FileColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FilterConjunctionTest.php b/test/Model/FilterConjunctionTest.php index 36bb2be..2722221 100644 --- a/test/Model/FilterConjunctionTest.php +++ b/test/Model/FilterConjunctionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FilterTermEmptyTest.php b/test/Model/FilterTermEmptyTest.php index 5cdac09..8078a70 100644 --- a/test/Model/FilterTermEmptyTest.php +++ b/test/Model/FilterTermEmptyTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersAutomaticTest.php b/test/Model/FiltersAutomaticTest.php index abdf87a..b39ef26 100644 --- a/test/Model/FiltersAutomaticTest.php +++ b/test/Model/FiltersAutomaticTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersCheckboxTest.php b/test/Model/FiltersCheckboxTest.php index d58622e..fa4d7b0 100644 --- a/test/Model/FiltersCheckboxTest.php +++ b/test/Model/FiltersCheckboxTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersCollaboratorTest.php b/test/Model/FiltersCollaboratorTest.php index 534131b..e754eaa 100644 --- a/test/Model/FiltersCollaboratorTest.php +++ b/test/Model/FiltersCollaboratorTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersCreatedTest.php b/test/Model/FiltersCreatedTest.php index 35ae369..998cec7 100644 --- a/test/Model/FiltersCreatedTest.php +++ b/test/Model/FiltersCreatedTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersCreatorTest.php b/test/Model/FiltersCreatorTest.php index b2c47df..3e3f8e0 100644 --- a/test/Model/FiltersCreatorTest.php +++ b/test/Model/FiltersCreatorTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersDateTest.php b/test/Model/FiltersDateTest.php index 512d958..69343b8 100644 --- a/test/Model/FiltersDateTest.php +++ b/test/Model/FiltersDateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersDateTimeTest.php b/test/Model/FiltersDateTimeTest.php index c59e2c0..8c5d7f8 100644 --- a/test/Model/FiltersDateTimeTest.php +++ b/test/Model/FiltersDateTimeTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersDurationTest.php b/test/Model/FiltersDurationTest.php index db80f2f..9d3bc8a 100644 --- a/test/Model/FiltersDurationTest.php +++ b/test/Model/FiltersDurationTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersEditorTest.php b/test/Model/FiltersEditorTest.php index 883eed4..c814056 100644 --- a/test/Model/FiltersEditorTest.php +++ b/test/Model/FiltersEditorTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersEmailTest.php b/test/Model/FiltersEmailTest.php index dcb5f6e..31a6c3a 100644 --- a/test/Model/FiltersEmailTest.php +++ b/test/Model/FiltersEmailTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersFileTest.php b/test/Model/FiltersFileTest.php index 5af48dd..e268b12 100644 --- a/test/Model/FiltersFileTest.php +++ b/test/Model/FiltersFileTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersFormulaTest.php b/test/Model/FiltersFormulaTest.php index 8d697a6..1e2a573 100644 --- a/test/Model/FiltersFormulaTest.php +++ b/test/Model/FiltersFormulaTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersGeolocationTest.php b/test/Model/FiltersGeolocationTest.php index 43fbf3e..0c188f3 100644 --- a/test/Model/FiltersGeolocationTest.php +++ b/test/Model/FiltersGeolocationTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersImageTest.php b/test/Model/FiltersImageTest.php index a16072c..37dcad6 100644 --- a/test/Model/FiltersImageTest.php +++ b/test/Model/FiltersImageTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersInnerTest.php b/test/Model/FiltersInnerTest.php index ecc322a..c904b28 100644 --- a/test/Model/FiltersInnerTest.php +++ b/test/Model/FiltersInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersLinkFormulaTest.php b/test/Model/FiltersLinkFormulaTest.php index b1d8776..fea2acd 100644 --- a/test/Model/FiltersLinkFormulaTest.php +++ b/test/Model/FiltersLinkFormulaTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersLinkTest.php b/test/Model/FiltersLinkTest.php index fe5c611..4e0244c 100644 --- a/test/Model/FiltersLinkTest.php +++ b/test/Model/FiltersLinkTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersLongTextTest.php b/test/Model/FiltersLongTextTest.php index 91bd311..6620bc2 100644 --- a/test/Model/FiltersLongTextTest.php +++ b/test/Model/FiltersLongTextTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersModifiedTest.php b/test/Model/FiltersModifiedTest.php index b5a14b7..7a1653f 100644 --- a/test/Model/FiltersModifiedTest.php +++ b/test/Model/FiltersModifiedTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersMultiSelectTest.php b/test/Model/FiltersMultiSelectTest.php index 0d742be..e8c36bc 100644 --- a/test/Model/FiltersMultiSelectTest.php +++ b/test/Model/FiltersMultiSelectTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersNumberTest.php b/test/Model/FiltersNumberTest.php index c8fdbe4..2f010f1 100644 --- a/test/Model/FiltersNumberTest.php +++ b/test/Model/FiltersNumberTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersPercentageTest.php b/test/Model/FiltersPercentageTest.php index f425166..a17c363 100644 --- a/test/Model/FiltersPercentageTest.php +++ b/test/Model/FiltersPercentageTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersRatingTest.php b/test/Model/FiltersRatingTest.php index 1c3b0e5..14a073a 100644 --- a/test/Model/FiltersRatingTest.php +++ b/test/Model/FiltersRatingTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersSingleSelectTest.php b/test/Model/FiltersSingleSelectTest.php index fb8e078..0937d24 100644 --- a/test/Model/FiltersSingleSelectTest.php +++ b/test/Model/FiltersSingleSelectTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersTextTest.php b/test/Model/FiltersTextTest.php index a801927..5d32949 100644 --- a/test/Model/FiltersTextTest.php +++ b/test/Model/FiltersTextTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FiltersUrlTest.php b/test/Model/FiltersUrlTest.php index 76c70b7..ef84bbc 100644 --- a/test/Model/FiltersUrlTest.php +++ b/test/Model/FiltersUrlTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FormulaColumnFormatTest.php b/test/Model/FormulaColumnFormatTest.php index fc2ba46..cd784ad 100644 --- a/test/Model/FormulaColumnFormatTest.php +++ b/test/Model/FormulaColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FormulaColumnTest.php b/test/Model/FormulaColumnTest.php index 42af8f2..6742610 100644 --- a/test/Model/FormulaColumnTest.php +++ b/test/Model/FormulaColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FormulaColumnWithTableNameTest.php b/test/Model/FormulaColumnWithTableNameTest.php index 6525e8e..50727ce 100644 --- a/test/Model/FormulaColumnWithTableNameTest.php +++ b/test/Model/FormulaColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/FreezeUnfreezeColumnTest.php b/test/Model/FreezeUnfreezeColumnTest.php index df41829..be57970 100644 --- a/test/Model/FreezeUnfreezeColumnTest.php +++ b/test/Model/FreezeUnfreezeColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/GenerateSnapshotTest.php b/test/Model/GenerateSnapshotTest.php index 41f7f9a..29ef6dd 100644 --- a/test/Model/GenerateSnapshotTest.php +++ b/test/Model/GenerateSnapshotTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/GeoColumnFormatTest.php b/test/Model/GeoColumnFormatTest.php index 1416ae8..e5375f9 100644 --- a/test/Model/GeoColumnFormatTest.php +++ b/test/Model/GeoColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/GeolocationColumnTest.php b/test/Model/GeolocationColumnTest.php index a8eccca..b83bfd8 100644 --- a/test/Model/GeolocationColumnTest.php +++ b/test/Model/GeolocationColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/GeolocationColumnWithTableNameTest.php b/test/Model/GeolocationColumnWithTableNameTest.php index 2e38d3c..30f1b33 100644 --- a/test/Model/GeolocationColumnWithTableNameTest.php +++ b/test/Model/GeolocationColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/GetBigDataOperationLogs200ResponseOperationsInnerOperationTest.php b/test/Model/GetBigDataOperationLogs200ResponseOperationsInnerOperationTest.php index 1282ec8..b0cbbde 100644 --- a/test/Model/GetBigDataOperationLogs200ResponseOperationsInnerOperationTest.php +++ b/test/Model/GetBigDataOperationLogs200ResponseOperationsInnerOperationTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/GetBigDataOperationLogs200ResponseOperationsInnerTest.php b/test/Model/GetBigDataOperationLogs200ResponseOperationsInnerTest.php index 857b658..2a610a3 100644 --- a/test/Model/GetBigDataOperationLogs200ResponseOperationsInnerTest.php +++ b/test/Model/GetBigDataOperationLogs200ResponseOperationsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/GetBigDataOperationLogs200ResponseTest.php b/test/Model/GetBigDataOperationLogs200ResponseTest.php index a3f9214..e28b2da 100644 --- a/test/Model/GetBigDataOperationLogs200ResponseTest.php +++ b/test/Model/GetBigDataOperationLogs200ResponseTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/GreaterOrEqualTest.php b/test/Model/GreaterOrEqualTest.php index b1cd138..d935a51 100644 --- a/test/Model/GreaterOrEqualTest.php +++ b/test/Model/GreaterOrEqualTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/GreaterTest.php b/test/Model/GreaterTest.php index fcbf191..8042fb9 100644 --- a/test/Model/GreaterTest.php +++ b/test/Model/GreaterTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/HasAllOfTest.php b/test/Model/HasAllOfTest.php index 90ae6f1..eea2294 100644 --- a/test/Model/HasAllOfTest.php +++ b/test/Model/HasAllOfTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/HasAnyOfTest.php b/test/Model/HasAnyOfTest.php index 5724b4a..2b9fa6f 100644 --- a/test/Model/HasAnyOfTest.php +++ b/test/Model/HasAnyOfTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/HasNoneOfTest.php b/test/Model/HasNoneOfTest.php index e61189d..e2bf60d 100644 --- a/test/Model/HasNoneOfTest.php +++ b/test/Model/HasNoneOfTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ImageColumnTest.php b/test/Model/ImageColumnTest.php index e6a8972..d2a472d 100644 --- a/test/Model/ImageColumnTest.php +++ b/test/Model/ImageColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ImageColumnWithTableNameTest.php b/test/Model/ImageColumnWithTableNameTest.php index 0d493c6..f4362d6 100644 --- a/test/Model/ImageColumnWithTableNameTest.php +++ b/test/Model/ImageColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ImageFilterPredicateTest.php b/test/Model/ImageFilterPredicateTest.php index 43eddb0..f9c40e4 100644 --- a/test/Model/ImageFilterPredicateTest.php +++ b/test/Model/ImageFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ImportBasefromDTableFile200ResponseTableTest.php b/test/Model/ImportBasefromDTableFile200ResponseTableTest.php index 63abcdd..f855032 100644 --- a/test/Model/ImportBasefromDTableFile200ResponseTableTest.php +++ b/test/Model/ImportBasefromDTableFile200ResponseTableTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ImportBasefromDTableFile200ResponseTest.php b/test/Model/ImportBasefromDTableFile200ResponseTest.php index b89bc14..67fa91c 100644 --- a/test/Model/ImportBasefromDTableFile200ResponseTest.php +++ b/test/Model/ImportBasefromDTableFile200ResponseTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ImportUsersToAppRequestTest.php b/test/Model/ImportUsersToAppRequestTest.php index a71e220..90bd772 100644 --- a/test/Model/ImportUsersToAppRequestTest.php +++ b/test/Model/ImportUsersToAppRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IncludeMeTest.php b/test/Model/IncludeMeTest.php index 09b0850..15b91d1 100644 --- a/test/Model/IncludeMeTest.php +++ b/test/Model/IncludeMeTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/InsertColumnRequestTest.php b/test/Model/InsertColumnRequestTest.php index 75175dc..e0ad6df 100644 --- a/test/Model/InsertColumnRequestTest.php +++ b/test/Model/InsertColumnRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/InsertRowTest.php b/test/Model/InsertRowTest.php index 8eafb15..5149d9c 100644 --- a/test/Model/InsertRowTest.php +++ b/test/Model/InsertRowTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/InsertRowsIntoBigDataTest.php b/test/Model/InsertRowsIntoBigDataTest.php index ce0b9cc..a10b96e 100644 --- a/test/Model/InsertRowsIntoBigDataTest.php +++ b/test/Model/InsertRowsIntoBigDataTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsAdminTest.php b/test/Model/IsAdminTest.php index 8fa3464..3a59af8 100644 --- a/test/Model/IsAdminTest.php +++ b/test/Model/IsAdminTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsAnyOfTest.php b/test/Model/IsAnyOfTest.php index 99f6545..6a4303a 100644 --- a/test/Model/IsAnyOfTest.php +++ b/test/Model/IsAnyOfTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsCurrentUserIDTest.php b/test/Model/IsCurrentUserIDTest.php index 711da47..77cc433 100644 --- a/test/Model/IsCurrentUserIDTest.php +++ b/test/Model/IsCurrentUserIDTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsEmptyTest.php b/test/Model/IsEmptyTest.php index f82a96e..61ceb2d 100644 --- a/test/Model/IsEmptyTest.php +++ b/test/Model/IsEmptyTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsExactlyTest.php b/test/Model/IsExactlyTest.php index 04fb4d2..44a4921 100644 --- a/test/Model/IsExactlyTest.php +++ b/test/Model/IsExactlyTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsInactiveTest.php b/test/Model/IsInactiveTest.php index 486ac23..cc20f26 100644 --- a/test/Model/IsInactiveTest.php +++ b/test/Model/IsInactiveTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsNoneOfTest.php b/test/Model/IsNoneOfTest.php index 25dfa93..b9ec048 100644 --- a/test/Model/IsNoneOfTest.php +++ b/test/Model/IsNoneOfTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsNotEmptyTest.php b/test/Model/IsNotEmptyTest.php index 1f89194..b74888b 100644 --- a/test/Model/IsNotEmptyTest.php +++ b/test/Model/IsNotEmptyTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsNotTest.php b/test/Model/IsNotTest.php index fb7ddf7..1ea28cc 100644 --- a/test/Model/IsNotTest.php +++ b/test/Model/IsNotTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsTest.php b/test/Model/IsTest.php index f4fe317..42c3ee6 100644 --- a/test/Model/IsTest.php +++ b/test/Model/IsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinTheNextMonthTest.php b/test/Model/IsWithinTheNextMonthTest.php index b2e5c88..2fe72a3 100644 --- a/test/Model/IsWithinTheNextMonthTest.php +++ b/test/Model/IsWithinTheNextMonthTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinTheNextNumberOfDaysTest.php b/test/Model/IsWithinTheNextNumberOfDaysTest.php index 9253f4b..2b77c39 100644 --- a/test/Model/IsWithinTheNextNumberOfDaysTest.php +++ b/test/Model/IsWithinTheNextNumberOfDaysTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinTheNextWeekTest.php b/test/Model/IsWithinTheNextWeekTest.php index 4d77c1b..27d2b3f 100644 --- a/test/Model/IsWithinTheNextWeekTest.php +++ b/test/Model/IsWithinTheNextWeekTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinTheNextYearTest.php b/test/Model/IsWithinTheNextYearTest.php index c826b33..13231ae 100644 --- a/test/Model/IsWithinTheNextYearTest.php +++ b/test/Model/IsWithinTheNextYearTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinThePastMonthTest.php b/test/Model/IsWithinThePastMonthTest.php index ef34880..b11bdbe 100644 --- a/test/Model/IsWithinThePastMonthTest.php +++ b/test/Model/IsWithinThePastMonthTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinThePastNumberOfDaysTest.php b/test/Model/IsWithinThePastNumberOfDaysTest.php index 8584d28..e3b3414 100644 --- a/test/Model/IsWithinThePastNumberOfDaysTest.php +++ b/test/Model/IsWithinThePastNumberOfDaysTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinThePastWeekTest.php b/test/Model/IsWithinThePastWeekTest.php index d3cb6b6..e5d4eca 100644 --- a/test/Model/IsWithinThePastWeekTest.php +++ b/test/Model/IsWithinThePastWeekTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinThePastYearTest.php b/test/Model/IsWithinThePastYearTest.php index cacc35c..1bb82a6 100644 --- a/test/Model/IsWithinThePastYearTest.php +++ b/test/Model/IsWithinThePastYearTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinThisMonthTest.php b/test/Model/IsWithinThisMonthTest.php index 13c259b..fbb924f 100644 --- a/test/Model/IsWithinThisMonthTest.php +++ b/test/Model/IsWithinThisMonthTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinThisWeekTest.php b/test/Model/IsWithinThisWeekTest.php index b027d54..f746f81 100644 --- a/test/Model/IsWithinThisWeekTest.php +++ b/test/Model/IsWithinThisWeekTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/IsWithinThisYearTest.php b/test/Model/IsWithinThisYearTest.php index 9bea509..0b563ab 100644 --- a/test/Model/IsWithinThisYearTest.php +++ b/test/Model/IsWithinThisYearTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LastModifierColumnTest.php b/test/Model/LastModifierColumnTest.php index 8a56c04..fb3c5a5 100644 --- a/test/Model/LastModifierColumnTest.php +++ b/test/Model/LastModifierColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LastModifierColumnWithTableNameTest.php b/test/Model/LastModifierColumnWithTableNameTest.php index 0054eeb..e333d77 100644 --- a/test/Model/LastModifierColumnWithTableNameTest.php +++ b/test/Model/LastModifierColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LessOrEqualTest.php b/test/Model/LessOrEqualTest.php index ab17880..a6c4a9e 100644 --- a/test/Model/LessOrEqualTest.php +++ b/test/Model/LessOrEqualTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LessTest.php b/test/Model/LessTest.php index 31a7ae1..ab8aaf6 100644 --- a/test/Model/LessTest.php +++ b/test/Model/LessTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkColumnFormatTest.php b/test/Model/LinkColumnFormatTest.php index f3be8ed..7cba9bc 100644 --- a/test/Model/LinkColumnFormatTest.php +++ b/test/Model/LinkColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkColumnTest.php b/test/Model/LinkColumnTest.php index 65e354c..b1a76ae 100644 --- a/test/Model/LinkColumnTest.php +++ b/test/Model/LinkColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkColumnWithTableNameTest.php b/test/Model/LinkColumnWithTableNameTest.php index 38e8c53..26241c8 100644 --- a/test/Model/LinkColumnWithTableNameTest.php +++ b/test/Model/LinkColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkFilterPredicateTest.php b/test/Model/LinkFilterPredicateTest.php index 4c92db2..a9036ac 100644 --- a/test/Model/LinkFilterPredicateTest.php +++ b/test/Model/LinkFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkFormulaColumnColumnDataTest.php b/test/Model/LinkFormulaColumnColumnDataTest.php index c2e862a..cfb9a87 100644 --- a/test/Model/LinkFormulaColumnColumnDataTest.php +++ b/test/Model/LinkFormulaColumnColumnDataTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkFormulaColumnCountLinksFormatTest.php b/test/Model/LinkFormulaColumnCountLinksFormatTest.php index f95ed63..9fccfd0 100644 --- a/test/Model/LinkFormulaColumnCountLinksFormatTest.php +++ b/test/Model/LinkFormulaColumnCountLinksFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkFormulaColumnFindmaxFormatTest.php b/test/Model/LinkFormulaColumnFindmaxFormatTest.php index 6c7cc86..262313e 100644 --- a/test/Model/LinkFormulaColumnFindmaxFormatTest.php +++ b/test/Model/LinkFormulaColumnFindmaxFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkFormulaColumnFindminFormatTest.php b/test/Model/LinkFormulaColumnFindminFormatTest.php index 965ae33..002395b 100644 --- a/test/Model/LinkFormulaColumnFindminFormatTest.php +++ b/test/Model/LinkFormulaColumnFindminFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkFormulaColumnLookupFormatTest.php b/test/Model/LinkFormulaColumnLookupFormatTest.php index 08c19ff..2893272 100644 --- a/test/Model/LinkFormulaColumnLookupFormatTest.php +++ b/test/Model/LinkFormulaColumnLookupFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkFormulaColumnRollupFormatTest.php b/test/Model/LinkFormulaColumnRollupFormatTest.php index e8f2830..32c59df 100644 --- a/test/Model/LinkFormulaColumnRollupFormatTest.php +++ b/test/Model/LinkFormulaColumnRollupFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkFormulaColumnTest.php b/test/Model/LinkFormulaColumnTest.php index 228e571..1f917c0 100644 --- a/test/Model/LinkFormulaColumnTest.php +++ b/test/Model/LinkFormulaColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LinkFormulaColumnWithTableNameTest.php b/test/Model/LinkFormulaColumnWithTableNameTest.php index 93dfd01..6dd1e5c 100644 --- a/test/Model/LinkFormulaColumnWithTableNameTest.php +++ b/test/Model/LinkFormulaColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ListAuditLogs200ResponseAuditLogListInnerDetailTest.php b/test/Model/ListAuditLogs200ResponseAuditLogListInnerDetailTest.php index f632a26..e7852ca 100644 --- a/test/Model/ListAuditLogs200ResponseAuditLogListInnerDetailTest.php +++ b/test/Model/ListAuditLogs200ResponseAuditLogListInnerDetailTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ListAuditLogs200ResponseAuditLogListInnerTest.php b/test/Model/ListAuditLogs200ResponseAuditLogListInnerTest.php index 3b9c8a5..ab2a0f1 100644 --- a/test/Model/ListAuditLogs200ResponseAuditLogListInnerTest.php +++ b/test/Model/ListAuditLogs200ResponseAuditLogListInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ListAuditLogs200ResponseTest.php b/test/Model/ListAuditLogs200ResponseTest.php index f5baa52..568babc 100644 --- a/test/Model/ListAuditLogs200ResponseTest.php +++ b/test/Model/ListAuditLogs200ResponseTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ListPublicUserInfosRequestTest.php b/test/Model/ListPublicUserInfosRequestTest.php index b099851..c3b56e7 100644 --- a/test/Model/ListPublicUserInfosRequestTest.php +++ b/test/Model/ListPublicUserInfosRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ListRowLinksRowsInnerTest.php b/test/Model/ListRowLinksRowsInnerTest.php index b200416..218b812 100644 --- a/test/Model/ListRowLinksRowsInnerTest.php +++ b/test/Model/ListRowLinksRowsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ListRowLinksTest.php b/test/Model/ListRowLinksTest.php index 72ec3e2..22e9558 100644 --- a/test/Model/ListRowLinksTest.php +++ b/test/Model/ListRowLinksTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LongTextColumnTest.php b/test/Model/LongTextColumnTest.php index e1fa397..6141896 100644 --- a/test/Model/LongTextColumnTest.php +++ b/test/Model/LongTextColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/LongTextColumnWithTableNameTest.php b/test/Model/LongTextColumnWithTableNameTest.php index 80f2039..093d7c1 100644 --- a/test/Model/LongTextColumnWithTableNameTest.php +++ b/test/Model/LongTextColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/MatchLinkColumnsMatchingKeysInnerTest.php b/test/Model/MatchLinkColumnsMatchingKeysInnerTest.php index b9cb586..849eec5 100644 --- a/test/Model/MatchLinkColumnsMatchingKeysInnerTest.php +++ b/test/Model/MatchLinkColumnsMatchingKeysInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/MatchLinkColumnsTest.php b/test/Model/MatchLinkColumnsTest.php index cd1b9cb..d856131 100644 --- a/test/Model/MatchLinkColumnsTest.php +++ b/test/Model/MatchLinkColumnsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ModifyPasswordTest.php b/test/Model/ModifyPasswordTest.php index d1eee3e..1d9572d 100644 --- a/test/Model/ModifyPasswordTest.php +++ b/test/Model/ModifyPasswordTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/MoveColumnTest.php b/test/Model/MoveColumnTest.php index 5d5481a..e6c5b3c 100644 --- a/test/Model/MoveColumnTest.php +++ b/test/Model/MoveColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/MoveRowsToNormalBackendRequestTest.php b/test/Model/MoveRowsToNormalBackendRequestTest.php index a76cfeb..5a76185 100644 --- a/test/Model/MoveRowsToNormalBackendRequestTest.php +++ b/test/Model/MoveRowsToNormalBackendRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/MtimeColumnTest.php b/test/Model/MtimeColumnTest.php index c56e107..494c913 100644 --- a/test/Model/MtimeColumnTest.php +++ b/test/Model/MtimeColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/MtimeColumnWithTableNameTest.php b/test/Model/MtimeColumnWithTableNameTest.php index 9c53cd0..cc78a0e 100644 --- a/test/Model/MtimeColumnWithTableNameTest.php +++ b/test/Model/MtimeColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/MultipleSelectColumnTest.php b/test/Model/MultipleSelectColumnTest.php index f13dd46..6e7a9c7 100644 --- a/test/Model/MultipleSelectColumnTest.php +++ b/test/Model/MultipleSelectColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/MultipleSelectColumnWithTableNameTest.php b/test/Model/MultipleSelectColumnWithTableNameTest.php index b60f630..2f326c6 100644 --- a/test/Model/MultipleSelectColumnWithTableNameTest.php +++ b/test/Model/MultipleSelectColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/MultipleSelectFilterPredicateTest.php b/test/Model/MultipleSelectFilterPredicateTest.php index c997c17..13893b7 100644 --- a/test/Model/MultipleSelectFilterPredicateTest.php +++ b/test/Model/MultipleSelectFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/NewViewTest.php b/test/Model/NewViewTest.php index 22a2f77..79723d1 100644 --- a/test/Model/NewViewTest.php +++ b/test/Model/NewViewTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/NotEqualTest.php b/test/Model/NotEqualTest.php index 53dd3c9..2dc1413 100644 --- a/test/Model/NotEqualTest.php +++ b/test/Model/NotEqualTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/NumberColumnFormatTest.php b/test/Model/NumberColumnFormatTest.php index e5ee7f9..62509cd 100644 --- a/test/Model/NumberColumnFormatTest.php +++ b/test/Model/NumberColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/NumberColumnTest.php b/test/Model/NumberColumnTest.php index dd3e186..55a2744 100644 --- a/test/Model/NumberColumnTest.php +++ b/test/Model/NumberColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/NumberColumnWithTableNameTest.php b/test/Model/NumberColumnWithTableNameTest.php index 66c3997..da79801 100644 --- a/test/Model/NumberColumnWithTableNameTest.php +++ b/test/Model/NumberColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/NumberFilterPredicateTest.php b/test/Model/NumberFilterPredicateTest.php index 60b6c1c..9d200fe 100644 --- a/test/Model/NumberFilterPredicateTest.php +++ b/test/Model/NumberFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RatingColumnFormatTest.php b/test/Model/RatingColumnFormatTest.php index 31fafe1..2e79124 100644 --- a/test/Model/RatingColumnFormatTest.php +++ b/test/Model/RatingColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RatingColumnTest.php b/test/Model/RatingColumnTest.php index f047349..a2bab36 100644 --- a/test/Model/RatingColumnTest.php +++ b/test/Model/RatingColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RatingColumnWithTableNameTest.php b/test/Model/RatingColumnWithTableNameTest.php index 90cc3f4..a008bdf 100644 --- a/test/Model/RatingColumnWithTableNameTest.php +++ b/test/Model/RatingColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RatingFilterTermTest.php b/test/Model/RatingFilterTermTest.php index 6376edb..80a5976 100644 --- a/test/Model/RatingFilterTermTest.php +++ b/test/Model/RatingFilterTermTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RecordsMeetSpecificConditionsAfterModificationTest.php b/test/Model/RecordsMeetSpecificConditionsAfterModificationTest.php index 61cacf2..71f6a1d 100644 --- a/test/Model/RecordsMeetSpecificConditionsAfterModificationTest.php +++ b/test/Model/RecordsMeetSpecificConditionsAfterModificationTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RenameColumnTest.php b/test/Model/RenameColumnTest.php index ed070b5..ae39edb 100644 --- a/test/Model/RenameColumnTest.php +++ b/test/Model/RenameColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RenameTableTest.php b/test/Model/RenameTableTest.php index 07442ca..75be308 100644 --- a/test/Model/RenameTableTest.php +++ b/test/Model/RenameTableTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RepairBase200ResponseTest.php b/test/Model/RepairBase200ResponseTest.php index 4250524..fb94e37 100644 --- a/test/Model/RepairBase200ResponseTest.php +++ b/test/Model/RepairBase200ResponseTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/ResizeColumnTest.php b/test/Model/ResizeColumnTest.php index 47b9fa8..d4e072e 100644 --- a/test/Model/ResizeColumnTest.php +++ b/test/Model/ResizeColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RowAddedTest.php b/test/Model/RowAddedTest.php index 75f4354..16611f5 100644 --- a/test/Model/RowAddedTest.php +++ b/test/Model/RowAddedTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RowLinkCreateUpdateDeleteTest.php b/test/Model/RowLinkCreateUpdateDeleteTest.php index 4e85093..3060cd7 100644 --- a/test/Model/RowLinkCreateUpdateDeleteTest.php +++ b/test/Model/RowLinkCreateUpdateDeleteTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RowsTest.php b/test/Model/RowsTest.php index 6d2db02..81ce8ee 100644 --- a/test/Model/RowsTest.php +++ b/test/Model/RowsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RowsWithTableNameTest.php b/test/Model/RowsWithTableNameTest.php index f360edd..ab1c786 100644 --- a/test/Model/RowsWithTableNameTest.php +++ b/test/Model/RowsWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RunPeriodicallyOnRecordsMeetConditionsTest.php b/test/Model/RunPeriodicallyOnRecordsMeetConditionsTest.php index 3cb55ec..f377726 100644 --- a/test/Model/RunPeriodicallyOnRecordsMeetConditionsTest.php +++ b/test/Model/RunPeriodicallyOnRecordsMeetConditionsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/RunPeriodicallyTest.php b/test/Model/RunPeriodicallyTest.php index 1977dd5..d6cc6ed 100644 --- a/test/Model/RunPeriodicallyTest.php +++ b/test/Model/RunPeriodicallyTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SelectColumnFormatOptionsInnerTest.php b/test/Model/SelectColumnFormatOptionsInnerTest.php index 1b88ff2..590d97c 100644 --- a/test/Model/SelectColumnFormatOptionsInnerTest.php +++ b/test/Model/SelectColumnFormatOptionsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SelectColumnFormatTest.php b/test/Model/SelectColumnFormatTest.php index f46f8ae..9a96fe0 100644 --- a/test/Model/SelectColumnFormatTest.php +++ b/test/Model/SelectColumnFormatTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SendToastNotificationRequestDetailTest.php b/test/Model/SendToastNotificationRequestDetailTest.php index 82e5581..c1cd732 100644 --- a/test/Model/SendToastNotificationRequestDetailTest.php +++ b/test/Model/SendToastNotificationRequestDetailTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SendToastNotificationRequestTest.php b/test/Model/SendToastNotificationRequestTest.php index dd395a5..c8e3e0d 100644 --- a/test/Model/SendToastNotificationRequestTest.php +++ b/test/Model/SendToastNotificationRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SingleSelectColumnTest.php b/test/Model/SingleSelectColumnTest.php index c80b371..d941790 100644 --- a/test/Model/SingleSelectColumnTest.php +++ b/test/Model/SingleSelectColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SingleSelectColumnWithTableNameTest.php b/test/Model/SingleSelectColumnWithTableNameTest.php index 9bacdcd..db07ee7 100644 --- a/test/Model/SingleSelectColumnWithTableNameTest.php +++ b/test/Model/SingleSelectColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SingleSelectFilterPredicateTest.php b/test/Model/SingleSelectFilterPredicateTest.php index 1c54460..bec1576 100644 --- a/test/Model/SingleSelectFilterPredicateTest.php +++ b/test/Model/SingleSelectFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SortTypeTest.php b/test/Model/SortTypeTest.php index 2200d91..866a4ec 100644 --- a/test/Model/SortTypeTest.php +++ b/test/Model/SortTypeTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SortsInnerTest.php b/test/Model/SortsInnerTest.php index 273116f..53728ac 100644 --- a/test/Model/SortsInnerTest.php +++ b/test/Model/SortsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SpecificDateValueTest.php b/test/Model/SpecificDateValueTest.php index 1a71c60..7fff276 100644 --- a/test/Model/SpecificDateValueTest.php +++ b/test/Model/SpecificDateValueTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SqlQueryParametersInnerTest.php b/test/Model/SqlQueryParametersInnerTest.php index a5e0830..d9826b2 100644 --- a/test/Model/SqlQueryParametersInnerTest.php +++ b/test/Model/SqlQueryParametersInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SqlQueryResponseTest.php b/test/Model/SqlQueryResponseTest.php index df8d4bb..997b18a 100644 --- a/test/Model/SqlQueryResponseTest.php +++ b/test/Model/SqlQueryResponseTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/SqlQueryTest.php b/test/Model/SqlQueryTest.php index a23c365..de7b02e 100644 --- a/test/Model/SqlQueryTest.php +++ b/test/Model/SqlQueryTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/StringFilterPredicateTest.php b/test/Model/StringFilterPredicateTest.php index e20a089..719fb4e 100644 --- a/test/Model/StringFilterPredicateTest.php +++ b/test/Model/StringFilterPredicateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TableNameObjectTest.php b/test/Model/TableNameObjectTest.php index 75c8544..63fd615 100644 --- a/test/Model/TableNameObjectTest.php +++ b/test/Model/TableNameObjectTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TableWithRowIdsTest.php b/test/Model/TableWithRowIdsTest.php index 94cd988..463fc27 100644 --- a/test/Model/TableWithRowIdsTest.php +++ b/test/Model/TableWithRowIdsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TextColumnTest.php b/test/Model/TextColumnTest.php index 634adb5..534112f 100644 --- a/test/Model/TextColumnTest.php +++ b/test/Model/TextColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TextColumnWithTableNameTest.php b/test/Model/TextColumnWithTableNameTest.php index 5c85e57..283c80a 100644 --- a/test/Model/TextColumnWithTableNameTest.php +++ b/test/Model/TextColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TheDayRunningTheTaskValueTest.php b/test/Model/TheDayRunningTheTaskValueTest.php index 654d654..e40be51 100644 --- a/test/Model/TheDayRunningTheTaskValueTest.php +++ b/test/Model/TheDayRunningTheTaskValueTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TransferGroupRequestTest.php b/test/Model/TransferGroupRequestTest.php index b949b31..fce71fb 100644 --- a/test/Model/TransferGroupRequestTest.php +++ b/test/Model/TransferGroupRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRecordsMeetSpecificConditionsAfterModificationConditionTest.php b/test/Model/TriggerRecordsMeetSpecificConditionsAfterModificationConditionTest.php index 7784e50..af89b23 100644 --- a/test/Model/TriggerRecordsMeetSpecificConditionsAfterModificationConditionTest.php +++ b/test/Model/TriggerRecordsMeetSpecificConditionsAfterModificationConditionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRecordsMeetSpecificConditionsAfterModificationTest.php b/test/Model/TriggerRecordsMeetSpecificConditionsAfterModificationTest.php index 847335e..5e6fd72 100644 --- a/test/Model/TriggerRecordsMeetSpecificConditionsAfterModificationTest.php +++ b/test/Model/TriggerRecordsMeetSpecificConditionsAfterModificationTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRowAddedConditionTest.php b/test/Model/TriggerRowAddedConditionTest.php index 8372630..4865ef3 100644 --- a/test/Model/TriggerRowAddedConditionTest.php +++ b/test/Model/TriggerRowAddedConditionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRowAddedTest.php b/test/Model/TriggerRowAddedTest.php index e294ece..48b3e5c 100644 --- a/test/Model/TriggerRowAddedTest.php +++ b/test/Model/TriggerRowAddedTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyByConditionTest.php b/test/Model/TriggerRunPeriodicallyByConditionTest.php index 43d6b75..f543776 100644 --- a/test/Model/TriggerRunPeriodicallyByConditionTest.php +++ b/test/Model/TriggerRunPeriodicallyByConditionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyConditionTest.php b/test/Model/TriggerRunPeriodicallyConditionTest.php index 109119c..9b9079a 100644 --- a/test/Model/TriggerRunPeriodicallyConditionTest.php +++ b/test/Model/TriggerRunPeriodicallyConditionTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerDayTest.php b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerDayTest.php index 0587baf..1c51e99 100644 --- a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerDayTest.php +++ b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerDayTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerDayTriggerTest.php b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerDayTriggerTest.php index 5cdf397..2a79644 100644 --- a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerDayTriggerTest.php +++ b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerDayTriggerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerMonthTest.php b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerMonthTest.php index ca45bc6..91791c5 100644 --- a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerMonthTest.php +++ b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerMonthTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerMonthTriggerTest.php b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerMonthTriggerTest.php index 9635f3c..6b47967 100644 --- a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerMonthTriggerTest.php +++ b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerMonthTriggerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerWeekTest.php b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerWeekTest.php index 6cc475b..1bfd6d1 100644 --- a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerWeekTest.php +++ b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerWeekTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerWeekTriggerTest.php b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerWeekTriggerTest.php index 5f86705..a4fe5c3 100644 --- a/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerWeekTriggerTest.php +++ b/test/Model/TriggerRunPeriodicallyOnRecordsMeetPerWeekTriggerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyPerDayTest.php b/test/Model/TriggerRunPeriodicallyPerDayTest.php index 77be19a..a4e8364 100644 --- a/test/Model/TriggerRunPeriodicallyPerDayTest.php +++ b/test/Model/TriggerRunPeriodicallyPerDayTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyPerDayTriggerTest.php b/test/Model/TriggerRunPeriodicallyPerDayTriggerTest.php index d342408..ac8c2d8 100644 --- a/test/Model/TriggerRunPeriodicallyPerDayTriggerTest.php +++ b/test/Model/TriggerRunPeriodicallyPerDayTriggerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyPerMonthTest.php b/test/Model/TriggerRunPeriodicallyPerMonthTest.php index c5daeb2..daf3343 100644 --- a/test/Model/TriggerRunPeriodicallyPerMonthTest.php +++ b/test/Model/TriggerRunPeriodicallyPerMonthTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyPerMonthTriggerTest.php b/test/Model/TriggerRunPeriodicallyPerMonthTriggerTest.php index 0a85d3f..fae38f0 100644 --- a/test/Model/TriggerRunPeriodicallyPerMonthTriggerTest.php +++ b/test/Model/TriggerRunPeriodicallyPerMonthTriggerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyPerWeekTest.php b/test/Model/TriggerRunPeriodicallyPerWeekTest.php index 0e79f73..d9d51b0 100644 --- a/test/Model/TriggerRunPeriodicallyPerWeekTest.php +++ b/test/Model/TriggerRunPeriodicallyPerWeekTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerRunPeriodicallyPerWeekTriggerTest.php b/test/Model/TriggerRunPeriodicallyPerWeekTriggerTest.php index 750e264..a654fe9 100644 --- a/test/Model/TriggerRunPeriodicallyPerWeekTriggerTest.php +++ b/test/Model/TriggerRunPeriodicallyPerWeekTriggerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/TriggerTest.php b/test/Model/TriggerTest.php index 9d7aac8..31b5cfc 100644 --- a/test/Model/TriggerTest.php +++ b/test/Model/TriggerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UnsetPasswordTest.php b/test/Model/UnsetPasswordTest.php index 79448af..ca5108c 100644 --- a/test/Model/UnsetPasswordTest.php +++ b/test/Model/UnsetPasswordTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateAbuseReportRequestTest.php b/test/Model/UpdateAbuseReportRequestTest.php index a3f02f5..5490673 100644 --- a/test/Model/UpdateAbuseReportRequestTest.php +++ b/test/Model/UpdateAbuseReportRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateAdminsRoleTest.php b/test/Model/UpdateAdminsRoleTest.php index c90624b..877c6f2 100644 --- a/test/Model/UpdateAdminsRoleTest.php +++ b/test/Model/UpdateAdminsRoleTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateColumnTest.php b/test/Model/UpdateColumnTest.php index d28f249..78b591c 100644 --- a/test/Model/UpdateColumnTest.php +++ b/test/Model/UpdateColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateColumnTypeTest.php b/test/Model/UpdateColumnTypeTest.php index f0d475c..46da3d1 100644 --- a/test/Model/UpdateColumnTypeTest.php +++ b/test/Model/UpdateColumnTypeTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateCommentOptionsTest.php b/test/Model/UpdateCommentOptionsTest.php index fa6c636..baa20c6 100644 --- a/test/Model/UpdateCommentOptionsTest.php +++ b/test/Model/UpdateCommentOptionsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateCommentTest.php b/test/Model/UpdateCommentTest.php index 7790b49..1c3a870 100644 --- a/test/Model/UpdateCommentTest.php +++ b/test/Model/UpdateCommentTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateCommonDatasetSyncRequestTest.php b/test/Model/UpdateCommonDatasetSyncRequestTest.php index 173df50..8bf26fb 100644 --- a/test/Model/UpdateCommonDatasetSyncRequestTest.php +++ b/test/Model/UpdateCommonDatasetSyncRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateGeneralSettingsRequestTest.php b/test/Model/UpdateGeneralSettingsRequestTest.php index e0bd144..22d9dbc 100644 --- a/test/Model/UpdateGeneralSettingsRequestTest.php +++ b/test/Model/UpdateGeneralSettingsRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateGroupRoleRequestTest.php b/test/Model/UpdateGroupRoleRequestTest.php index 7691265..4404e1c 100644 --- a/test/Model/UpdateGroupRoleRequestTest.php +++ b/test/Model/UpdateGroupRoleRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateNotificationRuleRequestTest.php b/test/Model/UpdateNotificationRuleRequestTest.php index 88e04ac..3312e7d 100644 --- a/test/Model/UpdateNotificationRuleRequestTest.php +++ b/test/Model/UpdateNotificationRuleRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateRowTest.php b/test/Model/UpdateRowTest.php index 5f421c1..c046281 100644 --- a/test/Model/UpdateRowTest.php +++ b/test/Model/UpdateRowTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateRowsTest.php b/test/Model/UpdateRowsTest.php index bf08ee8..ccac4a9 100644 --- a/test/Model/UpdateRowsTest.php +++ b/test/Model/UpdateRowsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateRowsUpdatesInnerTest.php b/test/Model/UpdateRowsUpdatesInnerTest.php index 5659564..df10136 100644 --- a/test/Model/UpdateRowsUpdatesInnerTest.php +++ b/test/Model/UpdateRowsUpdatesInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateSingleMultipleSelectOptionsOptionsInnerTest.php b/test/Model/UpdateSingleMultipleSelectOptionsOptionsInnerTest.php index 9d04319..b03f34e 100644 --- a/test/Model/UpdateSingleMultipleSelectOptionsOptionsInnerTest.php +++ b/test/Model/UpdateSingleMultipleSelectOptionsOptionsInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateSingleMultipleSelectOptionsTest.php b/test/Model/UpdateSingleMultipleSelectOptionsTest.php index 4f3f849..fd7f25e 100644 --- a/test/Model/UpdateSingleMultipleSelectOptionsTest.php +++ b/test/Model/UpdateSingleMultipleSelectOptionsTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateTeamRequestTest.php b/test/Model/UpdateTeamRequestTest.php index 965dc61..f87c63a 100644 --- a/test/Model/UpdateTeamRequestTest.php +++ b/test/Model/UpdateTeamRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -122,4 +122,13 @@ public function testPropertyAssetQuotaMb() // TODO: implement self::markTestIncomplete('Not implemented'); } + + /** + * Test attribute "monthly_automation_limit_per_user" + */ + public function testPropertyMonthlyAutomationLimitPerUser() + { + // TODO: implement + self::markTestIncomplete('Not implemented'); + } } diff --git a/test/Model/UpdateTeamUserRequestTest.php b/test/Model/UpdateTeamUserRequestTest.php index 31c29ee..56a3a40 100644 --- a/test/Model/UpdateTeamUserRequestTest.php +++ b/test/Model/UpdateTeamUserRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateUserRequestTest.php b/test/Model/UpdateUserRequestTest.php index d5f6246..cfa82d0 100644 --- a/test/Model/UpdateUserRequestTest.php +++ b/test/Model/UpdateUserRequestTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ @@ -194,4 +194,13 @@ public function testPropertyAssetQuotaMb() // TODO: implement self::markTestIncomplete('Not implemented'); } + + /** + * Test attribute "monthly_automation_limit_per_user" + */ + public function testPropertyMonthlyAutomationLimitPerUser() + { + // TODO: implement + self::markTestIncomplete('Not implemented'); + } } diff --git a/test/Model/UpdateViewFiltersInnerTest.php b/test/Model/UpdateViewFiltersInnerTest.php index ee0606c..06a6557 100644 --- a/test/Model/UpdateViewFiltersInnerTest.php +++ b/test/Model/UpdateViewFiltersInnerTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UpdateViewTest.php b/test/Model/UpdateViewTest.php index 19d9d3a..198a087 100644 --- a/test/Model/UpdateViewTest.php +++ b/test/Model/UpdateViewTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UrlColumnTest.php b/test/Model/UrlColumnTest.php index b325d6a..768e7e2 100644 --- a/test/Model/UrlColumnTest.php +++ b/test/Model/UrlColumnTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UrlColumnWithTableNameTest.php b/test/Model/UrlColumnWithTableNameTest.php index dc48f06..64d1e2a 100644 --- a/test/Model/UrlColumnWithTableNameTest.php +++ b/test/Model/UrlColumnWithTableNameTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/UsersInfoTest.php b/test/Model/UsersInfoTest.php index ff640de..ce94282 100644 --- a/test/Model/UsersInfoTest.php +++ b/test/Model/UsersInfoTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XDaysBeforeRunningTheTaskValueTest.php b/test/Model/XDaysBeforeRunningTheTaskValueTest.php index b8c081a..bb0e52c 100644 --- a/test/Model/XDaysBeforeRunningTheTaskValueTest.php +++ b/test/Model/XDaysBeforeRunningTheTaskValueTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxExactDateTest.php b/test/Model/XxxExactDateTest.php index d1db63a..fb663ff 100644 --- a/test/Model/XxxExactDateTest.php +++ b/test/Model/XxxExactDateTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxNumberOfDaysAgoTest.php b/test/Model/XxxNumberOfDaysAgoTest.php index 36836e9..8756383 100644 --- a/test/Model/XxxNumberOfDaysAgoTest.php +++ b/test/Model/XxxNumberOfDaysAgoTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxNumberOfDaysFromNowTest.php b/test/Model/XxxNumberOfDaysFromNowTest.php index 8abb60b..f05ab29 100644 --- a/test/Model/XxxNumberOfDaysFromNowTest.php +++ b/test/Model/XxxNumberOfDaysFromNowTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxOneMonthAgoTest.php b/test/Model/XxxOneMonthAgoTest.php index e8fa39c..d5fac8c 100644 --- a/test/Model/XxxOneMonthAgoTest.php +++ b/test/Model/XxxOneMonthAgoTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxOneMonthFromNowTest.php b/test/Model/XxxOneMonthFromNowTest.php index 8ce770b..682423d 100644 --- a/test/Model/XxxOneMonthFromNowTest.php +++ b/test/Model/XxxOneMonthFromNowTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxOneWeekAgoTest.php b/test/Model/XxxOneWeekAgoTest.php index 0703d7a..a900fb2 100644 --- a/test/Model/XxxOneWeekAgoTest.php +++ b/test/Model/XxxOneWeekAgoTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxOneWeekFromNowTest.php b/test/Model/XxxOneWeekFromNowTest.php index 4048e7c..0d5af42 100644 --- a/test/Model/XxxOneWeekFromNowTest.php +++ b/test/Model/XxxOneWeekFromNowTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxTodayTest.php b/test/Model/XxxTodayTest.php index 38a26cf..380309d 100644 --- a/test/Model/XxxTodayTest.php +++ b/test/Model/XxxTodayTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxTomorrowTest.php b/test/Model/XxxTomorrowTest.php index 139fdad..21349f8 100644 --- a/test/Model/XxxTomorrowTest.php +++ b/test/Model/XxxTomorrowTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */ diff --git a/test/Model/XxxYesterdayTest.php b/test/Model/XxxYesterdayTest.php index 7daca0c..afe9eb8 100644 --- a/test/Model/XxxYesterdayTest.php +++ b/test/Model/XxxYesterdayTest.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.0 + * The version of the OpenAPI document: 6.1 * Generated by: https://openapi-generator.tech */