From 4ab3564804ff259fd7a2e5cb8eb114ea9961a04f Mon Sep 17 00:00:00 2001 From: Simon Hammes Date: Tue, 15 Sep 2026 12:10:00 +0200 Subject: [PATCH 1/4] 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 | 2 +- .../team_admin_account_operations.yaml | 2 +- openapi_input/user_account_operations.yaml | 46 ++++++++++++++++++- 7 files changed, 51 insertions(+), 7 deletions(-) diff --git a/openapi_input/authentication.yaml b/openapi_input/authentication.yaml index a9a3767e..90cdd2a5 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.2" + version: "7.0" servers: - url: "https://{server}" variables: diff --git a/openapi_input/base_operations.yaml b/openapi_input/base_operations.yaml index 4f4c30d9..f8738fbc 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.2" + version: "7.0" servers: - url: "https://{server}" variables: diff --git a/openapi_input/file_operations.yaml b/openapi_input/file_operations.yaml index 18abb0c4..e0f30e8e 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.2" + version: "7.0" servers: - url: "https://{server}" variables: diff --git a/openapi_input/python-scheduler.yaml b/openapi_input/python-scheduler.yaml index fc0914ed..a32f6810 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.2" + version: "7.0" servers: - url: "https://{server}" variables: diff --git a/openapi_input/system_admin_account_operations.yaml b/openapi_input/system_admin_account_operations.yaml index 1faf561f..b46227e5 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.2" + version: "7.0" servers: - url: "https://{server}" variables: diff --git a/openapi_input/team_admin_account_operations.yaml b/openapi_input/team_admin_account_operations.yaml index a2b85d1b..d5346c7d 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.2" + version: "7.0" servers: - url: "https://{server}" variables: diff --git a/openapi_input/user_account_operations.yaml b/openapi_input/user_account_operations.yaml index 0cbce0fd..2447bc2a 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.2" + version: "7.0" servers: - url: "https://{server}" variables: @@ -4142,6 +4142,50 @@ paths: type: object example: success: true + /api/v2.1/dtable-asset/{base_uuid}/asset-size/: + get: + tags: + - Attachment + summary: Get Base Asset Size + operationId: getBaseAssetSize + description: >- + Get the total size of all assets (attachments, images and files) stored + in a base and check whether the base can be exported together with its + assets. + + All sizes are given in megabytes, rounded down. `max_size_of_export` is + the server-wide limit configured by the system administrator (default: + 100). If `can_export_asset` is `false`, the assets of this base exceed + that limit and the base can only be exported without its assets. + security: + - AccountTokenAuth: [] + parameters: + - $ref: "#/components/parameters/base_uuid" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + asset_size: + type: integer + description: Total size of all assets of the base. + max_size_of_export: + type: integer + description: Maximum asset size that can be included in an export. + unit: + type: string + description: Unit of the returned sizes. + can_export_asset: + type: boolean + description: Whether the assets of this base can be included in an export. + example: + asset_size: 0 + max_size_of_export: 100 + unit: mb + can_export_asset: true /api/v2.1/dtable-recent-asset/{base_uuid}/: get: tags: From f8db967b9c0b9db59aba9554de81abf8a8d9d5ae Mon Sep 17 00:00:00 2001 From: Simon Hammes Date: Tue, 15 Sep 2026 12:12:14 +0200 Subject: [PATCH 2/4] Regenerate code --- README_Auth.md | 2 +- README_Base.md | 2 +- README_File.md | 2 +- README_PythonScheduler.md | 2 +- README_SysAdmin.md | 2 +- README_TeamAdmin.md | 2 +- README_User.md | 3 +- docs/User/Api/AttachmentApi.md | 50 ++ .../User/Model/GetBaseAssetSize200Response.md | 11 + 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 +- .../GetBaseTokenWithApiToken200Response.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/AppendRows200Response.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/CreateView200Response.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/DuplicateTable200Response.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/GetComment200Response.php | 2 +- lib/Base/GetRow200Response.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/QuerySQL400Response.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/UpdateColumn200Response.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/DeleteBaseAsset404Response.php | 2 +- lib/File/FilesImagesApi.php | 2 +- lib/File/FilesImagesCustomFolderApi.php | 2 +- lib/File/GetFileDownloadLink404Response.php | 2 +- lib/File/GetUploadLink200Response.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 +- .../ScriptRunsPerUser200Response.php | 2 +- lib/PythonScheduler/StatisticsApi.php | 2 +- lib/SysAdmin/AddDepartment200Response.php | 2 +- lib/SysAdmin/AddDepartmentRequest.php | 2 +- lib/SysAdmin/AddNewUser200Response.php | 2 +- lib/SysAdmin/AddNewUserRequest.php | 2 +- lib/SysAdmin/AddNotificationToUserRequest.php | 2 +- lib/SysAdmin/AddPlugin200Response.php | 2 +- lib/SysAdmin/AddTeam200Response.php | 2 +- lib/SysAdmin/AddTeamRequest.php | 2 +- lib/SysAdmin/AddTeamUser200Response.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 +- .../GetSystemInformation200Response.php | 2 +- lib/SysAdmin/GetUser200Response.php | 2 +- lib/SysAdmin/GroupsApi.php | 2 +- .../ListActiveUsersByDay200Response.php | 2 +- lib/SysAdmin/ListAuditLogs200Response.php | 2 +- ...tAuditLogs200ResponseAuditLogListInner.php | 2 +- ...Logs200ResponseAuditLogListInnerDetail.php | 2 +- lib/SysAdmin/ListDepartments200Response.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/SearchTeam200Response.php | 2 +- lib/SysAdmin/SharingLinksApi.php | 2 +- lib/SysAdmin/StatisticsApi.php | 2 +- lib/SysAdmin/SystemInfoCustomizingApi.php | 2 +- lib/SysAdmin/SystemNotificationsApi.php | 2 +- lib/SysAdmin/TeamsApi.php | 2 +- lib/SysAdmin/TransferGroup200Response.php | 2 +- lib/SysAdmin/TransferGroupRequest.php | 2 +- lib/SysAdmin/UpdateAbuseReport200Response.php | 2 +- lib/SysAdmin/UpdateAbuseReportRequest.php | 2 +- lib/SysAdmin/UpdateAdminsRole.php | 2 +- .../UpdateGeneralSettings200Response.php | 2 +- lib/SysAdmin/UpdateGeneralSettingsRequest.php | 2 +- lib/SysAdmin/UpdateTeam200Response.php | 2 +- lib/SysAdmin/UpdateTeamRequest.php | 2 +- lib/SysAdmin/UpdateTeamUserRequest.php | 2 +- lib/SysAdmin/UpdateUser200Response.php | 2 +- lib/SysAdmin/UpdateUserRequest.php | 2 +- lib/SysAdmin/UsersApi.php | 2 +- lib/TeamAdmin/ActivitiesLogsApi.php | 2 +- lib/TeamAdmin/AddGroup200Response.php | 2 +- lib/TeamAdmin/AddUser200Response.php | 2 +- lib/TeamAdmin/BasesApi.php | 2 +- lib/TeamAdmin/CustomizingApi.php | 2 +- lib/TeamAdmin/EnforceTwofactorRequest.php | 2 +- lib/TeamAdmin/GetBase200Response.php | 2 +- lib/TeamAdmin/GetTeamInfo200Response.php | 2 +- lib/TeamAdmin/GetTeamSettings200Response.php | 2 +- lib/TeamAdmin/GetUser200Response.php | 2 +- lib/TeamAdmin/GroupsApi.php | 2 +- lib/TeamAdmin/InfoSettingsApi.php | 2 +- lib/TeamAdmin/ListGroupMembers200Response.php | 2 +- ...istGroupMembers200ResponseMembersInner.php | 2 +- lib/TeamAdmin/ListGroups200Response.php | 2 +- .../ListGroups200ResponseGroupsInner.php | 2 +- lib/TeamAdmin/ListShares200Response.php | 2 +- lib/TeamAdmin/ModelInterface.php | 2 +- lib/TeamAdmin/SAMLApi.php | 2 +- lib/TeamAdmin/SharingLinksApi.php | 2 +- lib/TeamAdmin/StatisticsApi.php | 2 +- lib/TeamAdmin/TeamAdminPermission.php | 2 +- lib/TeamAdmin/UpdateGroup200Response.php | 2 +- .../UpdateGroupMemberRoleRequest.php | 2 +- lib/TeamAdmin/UpdateGroupRequest.php | 2 +- lib/TeamAdmin/UpdateInviteLink200Response.php | 2 +- lib/TeamAdmin/UpdateInviteLinkRequest.php | 2 +- lib/TeamAdmin/UpdateUser200Response.php | 2 +- lib/TeamAdmin/UsersApi.php | 2 +- 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/AddGroupMember201Response.php | 2 +- lib/User/AddGroupMemberRequest.php | 2 +- lib/User/AddNotificationRule200Response.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 | 280 +++++++++- 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/CreateAutomationRule200Response.php | 2 +- lib/User/CreateAutomationRuleRequest.php | 2 +- .../CreateBaseExternalLink200Response.php | 2 +- lib/User/CreateGroupRequest.php | 2 +- lib/User/CreateGroupViewShare200Response.php | 2 +- lib/User/CreateInviteLink200Response.php | 2 +- lib/User/CreateUserViewShare200Response.php | 2 +- .../CreateViewExternalLink200Response.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 +- lib/User/GetAccountInfo200Response.php | 2 +- lib/User/GetBaseAssetSize200Response.php | 510 ++++++++++++++++++ ...GetBaseAttachmentUploadLink200Response.php | 2 +- .../GetBigDataOperationLogs200Response.php | 2 +- ...perationLogs200ResponseOperationsInner.php | 2 +- ...ogs200ResponseOperationsInnerOperation.php | 2 +- lib/User/GetCommonDataset200Response.php | 2 +- lib/User/GetGroupMembers200ResponseInner.php | 2 +- lib/User/GetPublicUserInfo200Response.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 +- lib/User/PublishCommonDataset200Response.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/SearchGroup200ResponseInner.php | 2 +- lib/User/SharingApi.php | 2 +- lib/User/SharingLinksApi.php | 2 +- 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/UpdateGroup200Response.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 +- 455 files changed, 1303 insertions(+), 453 deletions(-) create mode 100644 docs/User/Model/GetBaseAssetSize200Response.md create mode 100644 lib/User/GetBaseAssetSize200Response.php diff --git a/README_Auth.md b/README_Auth.md index d2eadb90..0b7e5780 100644 --- a/README_Auth.md +++ b/README_Auth.md @@ -18,5 +18,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.2` +- API version: `7.0` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_Base.md b/README_Base.md index 8d6a2999..f8dcd64d 100644 --- a/README_Base.md +++ b/README_Base.md @@ -64,5 +64,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.2` +- API version: `7.0` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_File.md b/README_File.md index 750d5677..36dfbdca 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.2` +- API version: `7.0` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_PythonScheduler.md b/README_PythonScheduler.md index 046a3090..38a56dd6 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.2` +- API version: `7.0` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_SysAdmin.md b/README_SysAdmin.md index f7f84f0d..9a53aa5d 100644 --- a/README_SysAdmin.md +++ b/README_SysAdmin.md @@ -108,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.2` +- API version: `7.0` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_TeamAdmin.md b/README_TeamAdmin.md index df7d4b26..2c327f55 100644 --- a/README_TeamAdmin.md +++ b/README_TeamAdmin.md @@ -75,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.2` +- API version: `7.0` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/README_User.md b/README_User.md index f07d0887..b7192ac6 100644 --- a/README_User.md +++ b/README_User.md @@ -15,6 +15,7 @@ Class | Method | HTTP request | Description *AttachmentApi* | [**checkIfAssetExists**](docs/User/Api/AttachmentApi.md#checkifassetexists) | **GET** /api/v2.1/workspace/{workspace_id}/dtable/{base_name}/asset-exists/ | Check If Asset Exists *AttachmentApi* | [**deleteBaseAsset**](docs/User/Api/AttachmentApi.md#deletebaseasset) | **DELETE** /api/v2.1/dtable-asset/{base_uuid}/ | Delete Base Asset *AttachmentApi* | [**deleteBaseAssets**](docs/User/Api/AttachmentApi.md#deletebaseassets) | **DELETE** /api/v2.1/dtable-asset/{base_uuid}/batch-delete-assets/ | Delete Base Assets +*AttachmentApi* | [**getBaseAssetSize**](docs/User/Api/AttachmentApi.md#getbaseassetsize) | **GET** /api/v2.1/dtable-asset/{base_uuid}/asset-size/ | Get Base Asset Size *AttachmentApi* | [**getBaseAttachmentUploadLink**](docs/User/Api/AttachmentApi.md#getbaseattachmentuploadlink) | **GET** /api/v2.1/workspace/{workspace_id}/dtable-asset-upload-link/ | Get Base Attachment Upload Link *AttachmentApi* | [**listBaseAssets**](docs/User/Api/AttachmentApi.md#listbaseassets) | **GET** /api/v2.1/dtable-asset/{base_uuid}/ | List Base Asset Directories And Files *AttachmentApi* | [**listRecentlyUploadedFiles**](docs/User/Api/AttachmentApi.md#listrecentlyuploadedfiles) | **GET** /api/v2.1/dtable-recent-asset/{base_uuid}/ | List Recently Uploaded Files @@ -151,5 +152,5 @@ Class | Method | HTTP request | Description This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `6.2` +- API version: `7.0` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` \ No newline at end of file diff --git a/docs/User/Api/AttachmentApi.md b/docs/User/Api/AttachmentApi.md index 926d149e..a4525cd1 100644 --- a/docs/User/Api/AttachmentApi.md +++ b/docs/User/Api/AttachmentApi.md @@ -7,6 +7,7 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi | [**checkIfAssetExists()**](AttachmentApi.md#checkIfAssetExists) | **GET** /api/v2.1/workspace/{workspace_id}/dtable/{base_name}/asset-exists/ | Check If Asset Exists | | [**deleteBaseAsset()**](AttachmentApi.md#deleteBaseAsset) | **DELETE** /api/v2.1/dtable-asset/{base_uuid}/ | Delete Base Asset | | [**deleteBaseAssets()**](AttachmentApi.md#deleteBaseAssets) | **DELETE** /api/v2.1/dtable-asset/{base_uuid}/batch-delete-assets/ | Delete Base Assets | +| [**getBaseAssetSize()**](AttachmentApi.md#getBaseAssetSize) | **GET** /api/v2.1/dtable-asset/{base_uuid}/asset-size/ | Get Base Asset Size | | [**getBaseAttachmentUploadLink()**](AttachmentApi.md#getBaseAttachmentUploadLink) | **GET** /api/v2.1/workspace/{workspace_id}/dtable-asset-upload-link/ | Get Base Attachment Upload Link | | [**listBaseAssets()**](AttachmentApi.md#listBaseAssets) | **GET** /api/v2.1/dtable-asset/{base_uuid}/ | List Base Asset Directories And Files | | [**listRecentlyUploadedFiles()**](AttachmentApi.md#listRecentlyUploadedFiles) | **GET** /api/v2.1/dtable-recent-asset/{base_uuid}/ | List Recently Uploaded Files | @@ -166,6 +167,55 @@ AccountTokenAuth +## `getBaseAssetSize()` + +```php +getBaseAssetSize($base_uuid): \SeaTable\Client\User\GetBaseAssetSize200Response +``` + +Get Base Asset Size + +Get the total size of all assets (attachments, images and files) stored in a base and check whether the base can be exported together with its assets. All sizes are given in megabytes, rounded down. `max_size_of_export` is the server-wide limit configured by the system administrator (default: 100). If `can_export_asset` is `false`, the assets of this base exceed that limit and the base can only be exported without its assets. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\User\AttachmentApi( + new GuzzleHttp\Client(), + $config +); +$base_uuid = 5c264e76-0e5a-448a-9f34-580b551364ca; // string | The unique identifier of a base. Sometimes also called dtable_uuid. + +try { + $result = $apiInstance->getBaseAssetSize($base_uuid); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling AttachmentApi->getBaseAssetSize: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **base_uuid** | **string**| The unique identifier of a base. Sometimes also called dtable_uuid. | | + +### Return type + +[**\SeaTable\Client\User\GetBaseAssetSize200Response**](../Model/GetBaseAssetSize200Response.md) + +### Authorization + +AccountTokenAuth + + + + ## `getBaseAttachmentUploadLink()` ```php diff --git a/docs/User/Model/GetBaseAssetSize200Response.md b/docs/User/Model/GetBaseAssetSize200Response.md new file mode 100644 index 00000000..f27adb1b --- /dev/null +++ b/docs/User/Model/GetBaseAssetSize200Response.md @@ -0,0 +1,11 @@ +# # GetBaseAssetSize200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**asset_size** | **int** | Total size of all assets of the base. | [optional] +**max_size_of_export** | **int** | Maximum asset size that can be included in an export. | [optional] +**unit** | **string** | Unit of the returned sizes. | [optional] +**can_export_asset** | **bool** | Whether the assets of this base can be included in an export. | [optional] + diff --git a/lib/ApiException.php b/lib/ApiException.php index cde38ba1..fa79f4e9 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/APITokenApi.php b/lib/Auth/APITokenApi.php index 87bd4de0..e41e422b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/AccessToken.php b/lib/Auth/AccessToken.php index b4cacc68..6649ddfc 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/AccountToken.php b/lib/Auth/AccountToken.php index a0528a0f..dce8121c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/AccountTokenApi.php b/lib/Auth/AccountTokenApi.php index f1098815..2e547a82 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/ApiToken.php b/lib/Auth/ApiToken.php index 69eac492..f8b424fe 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/ApiTokenList.php b/lib/Auth/ApiTokenList.php index e75415f2..9f8cee1a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/ApiTokenTemporary.php b/lib/Auth/ApiTokenTemporary.php index 5388a07d..2827ce16 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/AuthenticationPermission.php b/lib/Auth/AuthenticationPermission.php index bafe9f7a..dafd4470 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/BaseTokenApi.php b/lib/Auth/BaseTokenApi.php index 7091cf87..1916d175 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/GetBaseTokenWithApiToken200Response.php b/lib/Auth/GetBaseTokenWithApiToken200Response.php index f7a53a6a..2518e5ed 100644 --- a/lib/Auth/GetBaseTokenWithApiToken200Response.php +++ b/lib/Auth/GetBaseTokenWithApiToken200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Auth/ModelInterface.php b/lib/Auth/ModelInterface.php index 0931692f..05958ce0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ActivitiesLogsApi.php b/lib/Base/ActivitiesLogsApi.php index 57080809..5bce7e4e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AddSingleMultipleSelectOptions.php b/lib/Base/AddSingleMultipleSelectOptions.php index 51afc22f..dd3a6f0d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php b/lib/Base/AddSingleMultipleSelectOptionsOptionsInner.php index 4579182f..7006ed0c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AppendColumnsRequest.php b/lib/Base/AppendColumnsRequest.php index ac1c1093..2527fe3c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AppendColumnsRequestColumnsInner.php b/lib/Base/AppendColumnsRequestColumnsInner.php index 4ada817e..8580e94d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AppendRow.php b/lib/Base/AppendRow.php index 8a022591..6a59e6c3 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AppendRows.php b/lib/Base/AppendRows.php index aace35b8..1077d8cf 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AppendRows200Response.php b/lib/Base/AppendRows200Response.php index 82b1f40d..61a97285 100644 --- a/lib/Base/AppendRows200Response.php +++ b/lib/Base/AppendRows200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ArchiveView.php b/lib/Base/ArchiveView.php index 20e6551a..4109dd4d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AutomaticFilterPredicate.php b/lib/Base/AutomaticFilterPredicate.php index 261cc19c..9e72c7e3 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AutonumberColumn.php b/lib/Base/AutonumberColumn.php index 5a96fd08..00eee1bd 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AutonumberColumnFormat.php b/lib/Base/AutonumberColumnFormat.php index be9df33b..16eb9733 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/AutonumberColumnWithTableName.php b/lib/Base/AutonumberColumnWithTableName.php index 7aee56d1..a4797543 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/Base.php b/lib/Base/Base.php index 33037895..d92f86c0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/BaseInfoApi.php b/lib/Base/BaseInfoApi.php index 11fe87a9..cd913a5b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/BigDataApi.php b/lib/Base/BigDataApi.php index 5731272f..60873359 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ButtonColumn.php b/lib/Base/ButtonColumn.php index e6916e59..53575d27 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ButtonColumnFormat.php b/lib/Base/ButtonColumnFormat.php index 1f249c1a..cbac1c98 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ButtonColumnFormatSelectedColumnsInner.php b/lib/Base/ButtonColumnFormatSelectedColumnsInner.php index d8e513fb..0a4b52d0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ButtonColumnWithTableName.php b/lib/Base/ButtonColumnWithTableName.php index 78d040ce..aa5a8db4 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CheckboxColumn.php b/lib/Base/CheckboxColumn.php index 1d91e7d5..a6b944da 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CheckboxColumnWithTableName.php b/lib/Base/CheckboxColumnWithTableName.php index 2351200d..cb04b650 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CheckboxFilterPredicate.php b/lib/Base/CheckboxFilterPredicate.php index 9ac454cb..400d8f6f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CollaboratorColumn.php b/lib/Base/CollaboratorColumn.php index cf60f526..30a1bb6a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CollaboratorColumnWithTableName.php b/lib/Base/CollaboratorColumnWithTableName.php index d7426849..58feab07 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CollaboratorFilterPredicate.php b/lib/Base/CollaboratorFilterPredicate.php index d6a5448b..c21fb6bb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ColumnsApi.php b/lib/Base/ColumnsApi.php index e55c2087..b1511f1e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreateRowComment.php b/lib/Base/CreateRowComment.php index 28328b48..e7b63395 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreateTableRequest.php b/lib/Base/CreateTableRequest.php index 56255032..b2182ebb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreateTableRequestColumnsInner.php b/lib/Base/CreateTableRequestColumnsInner.php index 8b342fb4..cebd006d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreateView200Response.php b/lib/Base/CreateView200Response.php index 468c3bc9..1ea1816b 100644 --- a/lib/Base/CreateView200Response.php +++ b/lib/Base/CreateView200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreatorColumn.php b/lib/Base/CreatorColumn.php index 20b1b552..25509c50 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreatorColumnWithTableName.php b/lib/Base/CreatorColumnWithTableName.php index 5313f4e1..e1c81594 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CreatorFilterPredicate.php b/lib/Base/CreatorFilterPredicate.php index d44f432c..b701614c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CtimeColumn.php b/lib/Base/CtimeColumn.php index 4ce52b72..7c1ab446 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/CtimeColumnWithTableName.php b/lib/Base/CtimeColumnWithTableName.php index 84e4c588..ff9d518a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateColumn.php b/lib/Base/DateColumn.php index 15d1a72c..a4b2cef3 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateColumnFormat.php b/lib/Base/DateColumnFormat.php index e76c2800..f6b38f15 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateColumnWithTableName.php b/lib/Base/DateColumnWithTableName.php index 11ea830b..f366a7d5 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateFilterPredicate.php b/lib/Base/DateFilterPredicate.php index 1ae24302..a63b3698 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DateFilterTermModifier.php b/lib/Base/DateFilterTermModifier.php index c844836e..55479bec 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteColumn.php b/lib/Base/DeleteColumn.php index 5426bbce..9e0fb396 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteRow.php b/lib/Base/DeleteRow.php index 05813661..036424b1 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteRows.php b/lib/Base/DeleteRows.php index 89abad55..e30e43a7 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteSelectOptions.php b/lib/Base/DeleteSelectOptions.php index 7f3d26ad..f8000b69 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DeleteTable.php b/lib/Base/DeleteTable.php index a05a9dc6..33adea83 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DuplicateTable.php b/lib/Base/DuplicateTable.php index 1f2a3f2c..ac2fed4f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DuplicateTable200Response.php b/lib/Base/DuplicateTable200Response.php index 13081e37..e1d468e2 100644 --- a/lib/Base/DuplicateTable200Response.php +++ b/lib/Base/DuplicateTable200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DurationColumn.php b/lib/Base/DurationColumn.php index 5d8ccb87..2ad4841d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DurationColumnFormat.php b/lib/Base/DurationColumnFormat.php index 62e5a6e3..ca3db14a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/DurationColumnWithTableName.php b/lib/Base/DurationColumnWithTableName.php index 546c067d..1a504a15 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/EmailColumn.php b/lib/Base/EmailColumn.php index 05dafce6..1113da12 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/EmailColumnWithTableName.php b/lib/Base/EmailColumnWithTableName.php index d2eb55ae..073c9765 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/EmailFilterPredicate.php b/lib/Base/EmailFilterPredicate.php index be020437..415c3ae0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FileColumn.php b/lib/Base/FileColumn.php index 6e89f404..ec09e507 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FileColumnWithTableName.php b/lib/Base/FileColumnWithTableName.php index 697dce18..3461b7a9 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FilterConjunction.php b/lib/Base/FilterConjunction.php index 28fc55eb..7164dfdb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersAutomatic.php b/lib/Base/FiltersAutomatic.php index 2c6abba1..ca278967 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersCheckbox.php b/lib/Base/FiltersCheckbox.php index 4416f026..4dfd0a9f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersCollaborator.php b/lib/Base/FiltersCollaborator.php index 20354795..6b179435 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersCreated.php b/lib/Base/FiltersCreated.php index 38a40b22..2eee970b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersCreator.php b/lib/Base/FiltersCreator.php index 4f04efee..44c2cb12 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersDate.php b/lib/Base/FiltersDate.php index 62e85884..33c180e4 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersDateTime.php b/lib/Base/FiltersDateTime.php index 218892bf..ca66199c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersDuration.php b/lib/Base/FiltersDuration.php index 0e967589..90f3355a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersEditor.php b/lib/Base/FiltersEditor.php index 32fb0a66..d4968020 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersEmail.php b/lib/Base/FiltersEmail.php index 6f0caf8b..4cad4ce2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersFile.php b/lib/Base/FiltersFile.php index 660c7f24..11d3518a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersFormula.php b/lib/Base/FiltersFormula.php index 4791a434..542777ac 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersGeolocation.php b/lib/Base/FiltersGeolocation.php index 1b938444..575c4045 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersImage.php b/lib/Base/FiltersImage.php index c003432c..9f64d776 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersLink.php b/lib/Base/FiltersLink.php index aed379bd..5f11c873 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersLinkFormula.php b/lib/Base/FiltersLinkFormula.php index f7336541..bda88c14 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersLongText.php b/lib/Base/FiltersLongText.php index 222dfc21..a210ef04 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersModified.php b/lib/Base/FiltersModified.php index 9fb41608..12cd090f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersMultiSelect.php b/lib/Base/FiltersMultiSelect.php index a9292342..a3e79d32 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersNumber.php b/lib/Base/FiltersNumber.php index b0695987..85b178eb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersPercentage.php b/lib/Base/FiltersPercentage.php index bc36cd42..8962e415 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersRating.php b/lib/Base/FiltersRating.php index 76b3d73c..8d0caf29 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersSingleSelect.php b/lib/Base/FiltersSingleSelect.php index 780f7eaa..f941d8e5 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersText.php b/lib/Base/FiltersText.php index 0c350772..963d0403 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FiltersUrl.php b/lib/Base/FiltersUrl.php index 27fbaa77..46e10c4c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FormulaColumn.php b/lib/Base/FormulaColumn.php index 08017f56..b321b6ff 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FormulaColumnFormat.php b/lib/Base/FormulaColumnFormat.php index 9c94bc12..e9a8417c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FormulaColumnWithTableName.php b/lib/Base/FormulaColumnWithTableName.php index 46901a3e..5308585c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/FreezeUnfreezeColumn.php b/lib/Base/FreezeUnfreezeColumn.php index f034bbbb..aabac84e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GenerateSnapshot.php b/lib/Base/GenerateSnapshot.php index c61cc69c..259b2778 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GeoColumnFormat.php b/lib/Base/GeoColumnFormat.php index 24b3c546..52a601a8 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GeolocationColumn.php b/lib/Base/GeolocationColumn.php index 3597006b..40666849 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GeolocationColumnWithTableName.php b/lib/Base/GeolocationColumnWithTableName.php index d4dfb3f0..777cd8f6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GetComment200Response.php b/lib/Base/GetComment200Response.php index 272d587c..eb452b60 100644 --- a/lib/Base/GetComment200Response.php +++ b/lib/Base/GetComment200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/GetRow200Response.php b/lib/Base/GetRow200Response.php index c9f1dc12..64368ac7 100644 --- a/lib/Base/GetRow200Response.php +++ b/lib/Base/GetRow200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ImageColumn.php b/lib/Base/ImageColumn.php index e60c0fc1..5f4ec67f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ImageColumnWithTableName.php b/lib/Base/ImageColumnWithTableName.php index 14328fe3..7120cecd 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ImageFilterPredicate.php b/lib/Base/ImageFilterPredicate.php index 05234692..8664a539 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/InsertColumnRequest.php b/lib/Base/InsertColumnRequest.php index 621c9351..db2bddf0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/InsertRow.php b/lib/Base/InsertRow.php index a7d0f6bf..88f3c8bb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/InsertRowsIntoBigData.php b/lib/Base/InsertRowsIntoBigData.php index 8eea7d35..d4d24ff2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LastModifierColumn.php b/lib/Base/LastModifierColumn.php index e301f9cd..c32a1471 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LastModifierColumnWithTableName.php b/lib/Base/LastModifierColumnWithTableName.php index 2cb056db..8cd3283a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkColumn.php b/lib/Base/LinkColumn.php index 75dd4602..ac121f7a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkColumnFormat.php b/lib/Base/LinkColumnFormat.php index 7336f3f1..522b173c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkColumnWithTableName.php b/lib/Base/LinkColumnWithTableName.php index b8e26615..48886ba5 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFilterPredicate.php b/lib/Base/LinkFilterPredicate.php index 610467b6..9c5d7aa4 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumn.php b/lib/Base/LinkFormulaColumn.php index 43eaf03a..2fe3f83e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnColumnData.php b/lib/Base/LinkFormulaColumnColumnData.php index a9b19e67..682ee39f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnCountLinksFormat.php b/lib/Base/LinkFormulaColumnCountLinksFormat.php index a5d9c9a6..4db67a07 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnFindmaxFormat.php b/lib/Base/LinkFormulaColumnFindmaxFormat.php index c9f0cd7c..0bfe685a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnFindminFormat.php b/lib/Base/LinkFormulaColumnFindminFormat.php index 8a563277..43280cd9 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnLookupFormat.php b/lib/Base/LinkFormulaColumnLookupFormat.php index a8cda481..79d5f81c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnRollupFormat.php b/lib/Base/LinkFormulaColumnRollupFormat.php index 3ca1534a..1ff9bc86 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinkFormulaColumnWithTableName.php b/lib/Base/LinkFormulaColumnWithTableName.php index 8454f756..797c647e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LinksApi.php b/lib/Base/LinksApi.php index 9796c581..514fe1a6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ListRowLinks.php b/lib/Base/ListRowLinks.php index e0f0c8a7..866a2c24 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ListRowLinksRowsInner.php b/lib/Base/ListRowLinksRowsInner.php index ae8576e9..33400056 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LongTextColumn.php b/lib/Base/LongTextColumn.php index d5db01d9..fe4343c0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/LongTextColumnWithTableName.php b/lib/Base/LongTextColumnWithTableName.php index 961e48e1..531e87fc 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MatchLinkColumns.php b/lib/Base/MatchLinkColumns.php index a62dae05..19903e07 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MatchLinkColumnsMatchingKeysInner.php b/lib/Base/MatchLinkColumnsMatchingKeysInner.php index 72f438dd..2fa66f8a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ModelInterface.php b/lib/Base/ModelInterface.php index aa4caffe..6066eac2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MoveColumn.php b/lib/Base/MoveColumn.php index 45e60b37..2ab5ab16 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MoveRowsToNormalBackendRequest.php b/lib/Base/MoveRowsToNormalBackendRequest.php index 222329e0..27717007 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MtimeColumn.php b/lib/Base/MtimeColumn.php index 8c97c9d5..b84a4bf7 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MtimeColumnWithTableName.php b/lib/Base/MtimeColumnWithTableName.php index c6d0b912..46161e31 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MultipleSelectColumn.php b/lib/Base/MultipleSelectColumn.php index cef157c0..dfa278aa 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MultipleSelectColumnWithTableName.php b/lib/Base/MultipleSelectColumnWithTableName.php index b51fe579..5d6e5159 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/MultipleSelectFilterPredicate.php b/lib/Base/MultipleSelectFilterPredicate.php index cc1ca87e..f8f1937f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NewView.php b/lib/Base/NewView.php index f47a39ae..4361a53d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NotificationsApi.php b/lib/Base/NotificationsApi.php index decab570..ffc7d3f2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NumberColumn.php b/lib/Base/NumberColumn.php index a3bf92f1..3d2da169 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NumberColumnFormat.php b/lib/Base/NumberColumnFormat.php index b2bb250e..783fdf95 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NumberColumnWithTableName.php b/lib/Base/NumberColumnWithTableName.php index a06a63b0..18f1b0a1 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/NumberFilterPredicate.php b/lib/Base/NumberFilterPredicate.php index 58944d26..6d255094 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/QuerySQL400Response.php b/lib/Base/QuerySQL400Response.php index 32b08bdc..cd50c683 100644 --- a/lib/Base/QuerySQL400Response.php +++ b/lib/Base/QuerySQL400Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RatingColumn.php b/lib/Base/RatingColumn.php index a9240826..3c2d268d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RatingColumnFormat.php b/lib/Base/RatingColumnFormat.php index 4811c5a0..0fbb1684 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RatingColumnWithTableName.php b/lib/Base/RatingColumnWithTableName.php index a8224cb8..57927193 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RatingFilterTerm.php b/lib/Base/RatingFilterTerm.php index af41458d..d850cf1a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RenameColumn.php b/lib/Base/RenameColumn.php index 3f31eca3..0722ac9d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RenameTable.php b/lib/Base/RenameTable.php index bed07ef9..7d853db2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ResizeColumn.php b/lib/Base/ResizeColumn.php index e04ce1f0..55960fd5 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RowCommentsApi.php b/lib/Base/RowCommentsApi.php index 7d0cf31a..5416058d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RowLinkCreateUpdateDelete.php b/lib/Base/RowLinkCreateUpdateDelete.php index 2266289c..aab7eaba 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/Rows.php b/lib/Base/Rows.php index 8435fd6c..3a4fe1e7 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RowsApi.php b/lib/Base/RowsApi.php index 45d317ea..1d727488 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/RowsWithTableName.php b/lib/Base/RowsWithTableName.php index 16f6a45a..727e9f6b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SelectColumnFormat.php b/lib/Base/SelectColumnFormat.php index e07d079d..6b6fa730 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SelectColumnFormatOptionsInner.php b/lib/Base/SelectColumnFormatOptionsInner.php index 2e5fa6d6..1caefe7e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SendToastNotificationRequest.php b/lib/Base/SendToastNotificationRequest.php index 3ce6bd7a..3ec9246f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SendToastNotificationRequestDetail.php b/lib/Base/SendToastNotificationRequestDetail.php index 228d9d41..b327e869 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SingleSelectColumn.php b/lib/Base/SingleSelectColumn.php index 426e19ed..9a79cc3e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SingleSelectColumnWithTableName.php b/lib/Base/SingleSelectColumnWithTableName.php index 873e1fa7..f7928521 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SingleSelectFilterPredicate.php b/lib/Base/SingleSelectFilterPredicate.php index 2cc26e96..505cf3d0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SnapshotsApi.php b/lib/Base/SnapshotsApi.php index 35709406..9a54cd7d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SortType.php b/lib/Base/SortType.php index 6eaf45a1..0705216c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SortsInner.php b/lib/Base/SortsInner.php index 589b0312..031f7368 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SqlQuery.php b/lib/Base/SqlQuery.php index e22bd34e..5147d11d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SqlQueryParametersInner.php b/lib/Base/SqlQueryParametersInner.php index 4ed31f9f..b5f320f3 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/SqlQueryResponse.php b/lib/Base/SqlQueryResponse.php index 51403bd3..e793478b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/StringFilterPredicate.php b/lib/Base/StringFilterPredicate.php index 34830293..7700e677 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TableNameObject.php b/lib/Base/TableNameObject.php index f28acbfd..f5a17863 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TableWithRowIds.php b/lib/Base/TableWithRowIds.php index 8d029075..aaf31a6d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TablesApi.php b/lib/Base/TablesApi.php index 35931b2a..548de181 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TextColumn.php b/lib/Base/TextColumn.php index feb09f99..c9d3fb9e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/TextColumnWithTableName.php b/lib/Base/TextColumnWithTableName.php index 17a700a0..611386f1 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateColumn.php b/lib/Base/UpdateColumn.php index b9b899e3..53edfd2d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateColumn200Response.php b/lib/Base/UpdateColumn200Response.php index f8857fde..3d935625 100644 --- a/lib/Base/UpdateColumn200Response.php +++ b/lib/Base/UpdateColumn200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateColumnType.php b/lib/Base/UpdateColumnType.php index c65f62eb..95af2713 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateComment.php b/lib/Base/UpdateComment.php index 342d812b..15ce9cc4 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateCommentOptions.php b/lib/Base/UpdateCommentOptions.php index 0c75e1fe..38e1463f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateRow.php b/lib/Base/UpdateRow.php index e3c9a934..288d4574 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateRows.php b/lib/Base/UpdateRows.php index 40cfbdc3..7521041e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateRowsUpdatesInner.php b/lib/Base/UpdateRowsUpdatesInner.php index 811a7f94..0f4cd3c0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateSingleMultipleSelectOptions.php b/lib/Base/UpdateSingleMultipleSelectOptions.php index 4d32ee98..b1374d5d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php b/lib/Base/UpdateSingleMultipleSelectOptionsOptionsInner.php index f91f2cc8..fac70097 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateView.php b/lib/Base/UpdateView.php index 4aaeacd0..9db5c606 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UpdateViewFiltersInner.php b/lib/Base/UpdateViewFiltersInner.php index 448f3100..c7ceca1d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UrlColumn.php b/lib/Base/UrlColumn.php index acb5a737..72c2e959 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/UrlColumnWithTableName.php b/lib/Base/UrlColumnWithTableName.php index 4d8361e7..bf6f67a5 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Base/ViewsApi.php b/lib/Base/ViewsApi.php index 742d0973..332b3d47 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/Configuration.php b/lib/Configuration.php index 7567d744..3e44f1d9 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.2 + * The version of the OpenAPI document: 7.0 * 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.2' . PHP_EOL; + $report .= ' The version of the OpenAPI document: 7.0' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/lib/File/DeleteBaseAsset404Response.php b/lib/File/DeleteBaseAsset404Response.php index 7ab92065..c3608c89 100644 --- a/lib/File/DeleteBaseAsset404Response.php +++ b/lib/File/DeleteBaseAsset404Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/File/FilesImagesApi.php b/lib/File/FilesImagesApi.php index 885a71c7..fad1da60 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/File/FilesImagesCustomFolderApi.php b/lib/File/FilesImagesCustomFolderApi.php index 7f212282..24891248 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/File/GetFileDownloadLink404Response.php b/lib/File/GetFileDownloadLink404Response.php index 51eec024..76f1da34 100644 --- a/lib/File/GetFileDownloadLink404Response.php +++ b/lib/File/GetFileDownloadLink404Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/File/GetUploadLink200Response.php b/lib/File/GetUploadLink200Response.php index 222bcd07..962fa577 100644 --- a/lib/File/GetUploadLink200Response.php +++ b/lib/File/GetUploadLink200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/File/ModelInterface.php b/lib/File/ModelInterface.php index cfcf01cf..dec08daa 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/FormDataProcessor.php b/lib/FormDataProcessor.php index 9108f5cc..a2963f2d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/HeaderSelector.php b/lib/HeaderSelector.php index b633c482..75422513 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/ObjectSerializer.php b/lib/ObjectSerializer.php index 1a9a0ac3..83ea00b9 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ /** diff --git a/lib/PythonScheduler/ModelInterface.php b/lib/PythonScheduler/ModelInterface.php index a1c846f2..91584c98 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/PythonScheduler/RunsApi.php b/lib/PythonScheduler/RunsApi.php index 1b87ae6a..c578802c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/PythonScheduler/ScriptRunsPerUser200Response.php b/lib/PythonScheduler/ScriptRunsPerUser200Response.php index a8cf3156..96b737c1 100644 --- a/lib/PythonScheduler/ScriptRunsPerUser200Response.php +++ b/lib/PythonScheduler/ScriptRunsPerUser200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/PythonScheduler/StatisticsApi.php b/lib/PythonScheduler/StatisticsApi.php index e44d032d..d497d215 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddDepartment200Response.php b/lib/SysAdmin/AddDepartment200Response.php index 10524bec..1c6e57da 100644 --- a/lib/SysAdmin/AddDepartment200Response.php +++ b/lib/SysAdmin/AddDepartment200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddDepartmentRequest.php b/lib/SysAdmin/AddDepartmentRequest.php index c4bc84e4..9f178d1b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddNewUser200Response.php b/lib/SysAdmin/AddNewUser200Response.php index 722ce2b4..6b9c4f2a 100644 --- a/lib/SysAdmin/AddNewUser200Response.php +++ b/lib/SysAdmin/AddNewUser200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddNewUserRequest.php b/lib/SysAdmin/AddNewUserRequest.php index f6cf2542..b2fede95 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddNotificationToUserRequest.php b/lib/SysAdmin/AddNotificationToUserRequest.php index 94b58d90..b2acccdb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddPlugin200Response.php b/lib/SysAdmin/AddPlugin200Response.php index 06681a14..4ab60f52 100644 --- a/lib/SysAdmin/AddPlugin200Response.php +++ b/lib/SysAdmin/AddPlugin200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddTeam200Response.php b/lib/SysAdmin/AddTeam200Response.php index 145153f1..17df3001 100644 --- a/lib/SysAdmin/AddTeam200Response.php +++ b/lib/SysAdmin/AddTeam200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddTeamRequest.php b/lib/SysAdmin/AddTeamRequest.php index f5f0927a..e3b46454 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AddTeamUser200Response.php b/lib/SysAdmin/AddTeamUser200Response.php index 07eff9ac..6703665b 100644 --- a/lib/SysAdmin/AddTeamUser200Response.php +++ b/lib/SysAdmin/AddTeamUser200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/AutomationsApi.php b/lib/SysAdmin/AutomationsApi.php index e6281c00..a86982ee 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/BasesApi.php b/lib/SysAdmin/BasesApi.php index 02fffd41..4d9240e2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/CommonDatasetApi.php b/lib/SysAdmin/CommonDatasetApi.php index 9be15eb4..060e3406 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/CreateGroupRequest.php b/lib/SysAdmin/CreateGroupRequest.php index df631524..4e551b80 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/DepartmentsApi.php b/lib/SysAdmin/DepartmentsApi.php index d4bc4981..e93684b3 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/EnforceTwoFactorRequest.php b/lib/SysAdmin/EnforceTwoFactorRequest.php index 2a23d22c..472a12bc 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ExportApi.php b/lib/SysAdmin/ExportApi.php index 5583fc5b..5a6f521a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/FormsApi.php b/lib/SysAdmin/FormsApi.php index b630f5fb..62c6faf2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/GetSystemInformation200Response.php b/lib/SysAdmin/GetSystemInformation200Response.php index f18d67cc..31ff21f0 100644 --- a/lib/SysAdmin/GetSystemInformation200Response.php +++ b/lib/SysAdmin/GetSystemInformation200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/GetUser200Response.php b/lib/SysAdmin/GetUser200Response.php index 08ad2685..9b3c0daf 100644 --- a/lib/SysAdmin/GetUser200Response.php +++ b/lib/SysAdmin/GetUser200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/GroupsApi.php b/lib/SysAdmin/GroupsApi.php index 2fcefa8e..29631a3f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ListActiveUsersByDay200Response.php b/lib/SysAdmin/ListActiveUsersByDay200Response.php index 3b505ec8..a9fac852 100644 --- a/lib/SysAdmin/ListActiveUsersByDay200Response.php +++ b/lib/SysAdmin/ListActiveUsersByDay200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ListAuditLogs200Response.php b/lib/SysAdmin/ListAuditLogs200Response.php index 789984cb..f0190bec 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInner.php index cfb1ed77..e006ae6a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php b/lib/SysAdmin/ListAuditLogs200ResponseAuditLogListInnerDetail.php index c01cd34f..dbd2750f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ListDepartments200Response.php b/lib/SysAdmin/ListDepartments200Response.php index 761a613e..d65771cc 100644 --- a/lib/SysAdmin/ListDepartments200Response.php +++ b/lib/SysAdmin/ListDepartments200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/LogsApi.php b/lib/SysAdmin/LogsApi.php index 567c4843..260429ad 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/MaintenanceApi.php b/lib/SysAdmin/MaintenanceApi.php index 6f0a6d8e..9a904194 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/ModelInterface.php b/lib/SysAdmin/ModelInterface.php index 68a62af1..89c49cc5 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/NotificationsApi.php b/lib/SysAdmin/NotificationsApi.php index 46bda612..2fae5c43 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/PluginsApi.php b/lib/SysAdmin/PluginsApi.php index 8841e591..51138e6b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/RepairBase200Response.php b/lib/SysAdmin/RepairBase200Response.php index 08af7e31..e27323bb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/SearchTeam200Response.php b/lib/SysAdmin/SearchTeam200Response.php index 41e248cf..d2f450f8 100644 --- a/lib/SysAdmin/SearchTeam200Response.php +++ b/lib/SysAdmin/SearchTeam200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/SharingLinksApi.php b/lib/SysAdmin/SharingLinksApi.php index 99a60949..50520442 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/StatisticsApi.php b/lib/SysAdmin/StatisticsApi.php index b42c6908..c10e1c9d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/SystemInfoCustomizingApi.php b/lib/SysAdmin/SystemInfoCustomizingApi.php index a3adcf8c..6058822b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/SystemNotificationsApi.php b/lib/SysAdmin/SystemNotificationsApi.php index 9025df83..5ffd191d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/TeamsApi.php b/lib/SysAdmin/TeamsApi.php index 97487e3d..012b2de0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/TransferGroup200Response.php b/lib/SysAdmin/TransferGroup200Response.php index 97ed5799..2d163691 100644 --- a/lib/SysAdmin/TransferGroup200Response.php +++ b/lib/SysAdmin/TransferGroup200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/TransferGroupRequest.php b/lib/SysAdmin/TransferGroupRequest.php index 53f8847b..c2cd6b47 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateAbuseReport200Response.php b/lib/SysAdmin/UpdateAbuseReport200Response.php index 5d304535..5142db6e 100644 --- a/lib/SysAdmin/UpdateAbuseReport200Response.php +++ b/lib/SysAdmin/UpdateAbuseReport200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateAbuseReportRequest.php b/lib/SysAdmin/UpdateAbuseReportRequest.php index 17c9858d..0c383e55 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateAdminsRole.php b/lib/SysAdmin/UpdateAdminsRole.php index 23ad7859..482a6eeb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateGeneralSettings200Response.php b/lib/SysAdmin/UpdateGeneralSettings200Response.php index 3eb139eb..376ad283 100644 --- a/lib/SysAdmin/UpdateGeneralSettings200Response.php +++ b/lib/SysAdmin/UpdateGeneralSettings200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateGeneralSettingsRequest.php b/lib/SysAdmin/UpdateGeneralSettingsRequest.php index a14895fe..3432db25 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateTeam200Response.php b/lib/SysAdmin/UpdateTeam200Response.php index 0393a810..7d558672 100644 --- a/lib/SysAdmin/UpdateTeam200Response.php +++ b/lib/SysAdmin/UpdateTeam200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateTeamRequest.php b/lib/SysAdmin/UpdateTeamRequest.php index 6b007bb7..9cb5b251 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateTeamUserRequest.php b/lib/SysAdmin/UpdateTeamUserRequest.php index fef560f8..18997b3a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateUser200Response.php b/lib/SysAdmin/UpdateUser200Response.php index de0ecdda..defa23c6 100644 --- a/lib/SysAdmin/UpdateUser200Response.php +++ b/lib/SysAdmin/UpdateUser200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UpdateUserRequest.php b/lib/SysAdmin/UpdateUserRequest.php index a7766108..32f43c1b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/SysAdmin/UsersApi.php b/lib/SysAdmin/UsersApi.php index c3735f24..5bd7aed3 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/ActivitiesLogsApi.php b/lib/TeamAdmin/ActivitiesLogsApi.php index fac279d9..b8d8e6ce 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/AddGroup200Response.php b/lib/TeamAdmin/AddGroup200Response.php index 7d0cb701..5640cf12 100644 --- a/lib/TeamAdmin/AddGroup200Response.php +++ b/lib/TeamAdmin/AddGroup200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/AddUser200Response.php b/lib/TeamAdmin/AddUser200Response.php index f67b841f..e55361de 100644 --- a/lib/TeamAdmin/AddUser200Response.php +++ b/lib/TeamAdmin/AddUser200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/BasesApi.php b/lib/TeamAdmin/BasesApi.php index fca45940..8554e41f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/CustomizingApi.php b/lib/TeamAdmin/CustomizingApi.php index 335d0f6d..715cb09c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/EnforceTwofactorRequest.php b/lib/TeamAdmin/EnforceTwofactorRequest.php index 492ed7d7..9822d0c1 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/GetBase200Response.php b/lib/TeamAdmin/GetBase200Response.php index f276c226..4c6a62ca 100644 --- a/lib/TeamAdmin/GetBase200Response.php +++ b/lib/TeamAdmin/GetBase200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/GetTeamInfo200Response.php b/lib/TeamAdmin/GetTeamInfo200Response.php index 85a77d32..f4f151e1 100644 --- a/lib/TeamAdmin/GetTeamInfo200Response.php +++ b/lib/TeamAdmin/GetTeamInfo200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/GetTeamSettings200Response.php b/lib/TeamAdmin/GetTeamSettings200Response.php index 7e15f3e2..e1e7edf4 100644 --- a/lib/TeamAdmin/GetTeamSettings200Response.php +++ b/lib/TeamAdmin/GetTeamSettings200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/GetUser200Response.php b/lib/TeamAdmin/GetUser200Response.php index ca141214..edd6a3d4 100644 --- a/lib/TeamAdmin/GetUser200Response.php +++ b/lib/TeamAdmin/GetUser200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/GroupsApi.php b/lib/TeamAdmin/GroupsApi.php index 47fab377..bed8db33 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/InfoSettingsApi.php b/lib/TeamAdmin/InfoSettingsApi.php index 914ee7d9..14e273c9 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/ListGroupMembers200Response.php b/lib/TeamAdmin/ListGroupMembers200Response.php index da5317c3..bdcabc4d 100644 --- a/lib/TeamAdmin/ListGroupMembers200Response.php +++ b/lib/TeamAdmin/ListGroupMembers200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/ListGroupMembers200ResponseMembersInner.php b/lib/TeamAdmin/ListGroupMembers200ResponseMembersInner.php index bf13a6e0..df2faf2f 100644 --- a/lib/TeamAdmin/ListGroupMembers200ResponseMembersInner.php +++ b/lib/TeamAdmin/ListGroupMembers200ResponseMembersInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/ListGroups200Response.php b/lib/TeamAdmin/ListGroups200Response.php index 2ccea69d..6e4ea73e 100644 --- a/lib/TeamAdmin/ListGroups200Response.php +++ b/lib/TeamAdmin/ListGroups200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/ListGroups200ResponseGroupsInner.php b/lib/TeamAdmin/ListGroups200ResponseGroupsInner.php index 4607cda5..c797487e 100644 --- a/lib/TeamAdmin/ListGroups200ResponseGroupsInner.php +++ b/lib/TeamAdmin/ListGroups200ResponseGroupsInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/ListShares200Response.php b/lib/TeamAdmin/ListShares200Response.php index 3a1fafd6..1f79a9dc 100644 --- a/lib/TeamAdmin/ListShares200Response.php +++ b/lib/TeamAdmin/ListShares200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/ModelInterface.php b/lib/TeamAdmin/ModelInterface.php index f1a9ca9d..70f623fe 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/SAMLApi.php b/lib/TeamAdmin/SAMLApi.php index 94dde8da..e40d138f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/SharingLinksApi.php b/lib/TeamAdmin/SharingLinksApi.php index 993b14b3..807fc677 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/StatisticsApi.php b/lib/TeamAdmin/StatisticsApi.php index 04283285..0cceeebf 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/TeamAdminPermission.php b/lib/TeamAdmin/TeamAdminPermission.php index bd43fac7..c42d4eb6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UpdateGroup200Response.php b/lib/TeamAdmin/UpdateGroup200Response.php index 7d332f8e..6721a3cb 100644 --- a/lib/TeamAdmin/UpdateGroup200Response.php +++ b/lib/TeamAdmin/UpdateGroup200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php b/lib/TeamAdmin/UpdateGroupMemberRoleRequest.php index 20a72ace..eabd85f0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UpdateGroupRequest.php b/lib/TeamAdmin/UpdateGroupRequest.php index 0d8f6037..1b06498d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UpdateInviteLink200Response.php b/lib/TeamAdmin/UpdateInviteLink200Response.php index 3f7964a2..52cf5651 100644 --- a/lib/TeamAdmin/UpdateInviteLink200Response.php +++ b/lib/TeamAdmin/UpdateInviteLink200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UpdateInviteLinkRequest.php b/lib/TeamAdmin/UpdateInviteLinkRequest.php index a390fd84..28efa6e2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UpdateUser200Response.php b/lib/TeamAdmin/UpdateUser200Response.php index 74e1eb6b..7d69224b 100644 --- a/lib/TeamAdmin/UpdateUser200Response.php +++ b/lib/TeamAdmin/UpdateUser200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/TeamAdmin/UsersApi.php b/lib/TeamAdmin/UsersApi.php index 2fe14ecb..a0871185 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Action.php b/lib/User/Action.php index 512860c4..eef1f4d7 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionAddRecord.php b/lib/User/ActionAddRecord.php index ec3101a7..5e3ef683 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionAddRecordToOtherTable.php b/lib/User/ActionAddRecordToOtherTable.php index 16650938..9202596e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionAddRecordToOtherTableRow.php b/lib/User/ActionAddRecordToOtherTableRow.php index 1ddedfb6..9e836b7b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionCalculateAccumulatedValue.php b/lib/User/ActionCalculateAccumulatedValue.php index 51eb35b4..c24504ea 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionCalculateDelta.php b/lib/User/ActionCalculateDelta.php index 92c69dcc..142ed369 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionCalculatePercentage.php b/lib/User/ActionCalculatePercentage.php index e3eb9035..c391d5bc 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionCalculateRank.php b/lib/User/ActionCalculateRank.php index d9e21f9f..74b1913d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionExtractUserName.php b/lib/User/ActionExtractUserName.php index 71b23975..3bd90fb2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLinkRecord.php b/lib/User/ActionLinkRecord.php index 242fcdb4..c989c9e9 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLinkRecordMatchConditionsInner.php b/lib/User/ActionLinkRecordMatchConditionsInner.php index 2ff5ec9a..730461f6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLockRecord.php b/lib/User/ActionLockRecord.php index 7728a791..c3240881 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLookupAndCopy.php b/lib/User/ActionLookupAndCopy.php index 5c1787f4..0bacf396 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php b/lib/User/ActionLookupAndCopyEqualColumnConditionsInner.php index 16c9b3cd..e3631aa5 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionLookupAndCopyTableCondition.php b/lib/User/ActionLookupAndCopyTableCondition.php index bcfafacd..be38afb2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionNotify.php b/lib/User/ActionNotify.php index 62fcd631..d84137bc 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php b/lib/User/ActionRecordsMeetSpecificConditionsAfterModificationInner.php index 43a61c89..9d6717bf 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionRunPeriodicallyInner.php b/lib/User/ActionRunPeriodicallyInner.php index 8560701e..4fcff21c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionRunPeriodicallyOnRecordsInner.php b/lib/User/ActionRunPeriodicallyOnRecordsInner.php index 2a25f209..41707a2a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionRunPythonScript.php b/lib/User/ActionRunPythonScript.php index 2e201b85..c5522b65 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionSendEmail.php b/lib/User/ActionSendEmail.php index 26fd1304..566f025e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActionUpdateRecord.php b/lib/User/ActionUpdateRecord.php index 04f6f431..3d7eee50 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ActivitiesLogsApi.php b/lib/User/ActivitiesLogsApi.php index d57637e9..28a62c37 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddEmailAccountRequest.php b/lib/User/AddEmailAccountRequest.php index 47c9c474..bac708db 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddGroupMember201Response.php b/lib/User/AddGroupMember201Response.php index a0e9b7a3..0af383cb 100644 --- a/lib/User/AddGroupMember201Response.php +++ b/lib/User/AddGroupMember201Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddGroupMemberRequest.php b/lib/User/AddGroupMemberRequest.php index c73e1324..2ede4aeb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddNotificationRule200Response.php b/lib/User/AddNotificationRule200Response.php index 68516c57..d12745e1 100644 --- a/lib/User/AddNotificationRule200Response.php +++ b/lib/User/AddNotificationRule200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddNotificationRuleRequest.php b/lib/User/AddNotificationRuleRequest.php index 8e6aa14b..b628e6df 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddNotificationRuleRequestAction.php b/lib/User/AddNotificationRuleRequestAction.php index 52ac97f5..23294a5f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddNotificationRuleRequestTrigger.php b/lib/User/AddNotificationRuleRequestTrigger.php index 93edab1e..0af03c69 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddPassword.php b/lib/User/AddPassword.php index 3303c83f..6e927b26 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddRecordToOtherTableRowDate.php b/lib/User/AddRecordToOtherTableRowDate.php index 4900c5e0..aa63092f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AddRecordToOtherTableRowDateTime.php b/lib/User/AddRecordToOtherTableRowDateTime.php index bf71e4ee..5026a375 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AppsApi.php b/lib/User/AppsApi.php index 43361e8c..d8c8f4ac 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/AttachmentApi.php b/lib/User/AttachmentApi.php index 4916de9f..3d07032c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ @@ -82,6 +82,9 @@ class AttachmentApi 'deleteBaseAssets' => [ 'application/json', ], + 'getBaseAssetSize' => [ + 'application/json', + ], 'getBaseAttachmentUploadLink' => [ 'application/json', ], @@ -1017,6 +1020,281 @@ public function deleteBaseAssetsRequest($base_uuid, string $contentType = self:: ); } + /** + * Operation getBaseAssetSize + * + * Get Base Asset Size + * + * @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['getBaseAssetSize'] 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 \SeaTable\Client\User\GetBaseAssetSize200Response + */ + public function getBaseAssetSize($base_uuid, string $contentType = self::contentTypes['getBaseAssetSize'][0]) + { + list($response) = $this->getBaseAssetSizeWithHttpInfo($base_uuid, $contentType); + return $response; + } + + /** + * Operation getBaseAssetSizeWithHttpInfo + * + * Get Base Asset Size + * + * @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['getBaseAssetSize'] 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 \SeaTable\Client\User\GetBaseAssetSize200Response, HTTP status code, HTTP response headers (array of strings) + */ + public function getBaseAssetSizeWithHttpInfo($base_uuid, string $contentType = self::contentTypes['getBaseAssetSize'][0]) + { + $request = $this->getBaseAssetSizeRequest($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( + '\SeaTable\Client\User\GetBaseAssetSize200Response', + $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( + '\SeaTable\Client\User\GetBaseAssetSize200Response', + $request, + $response, + ); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\SeaTable\Client\User\GetBaseAssetSize200Response', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + throw $e; + } + + + throw $e; + } + } + + /** + * Operation getBaseAssetSizeAsync + * + * Get Base Asset Size + * + * @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['getBaseAssetSize'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getBaseAssetSizeAsync($base_uuid, string $contentType = self::contentTypes['getBaseAssetSize'][0]) + { + return $this->getBaseAssetSizeAsyncWithHttpInfo($base_uuid, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation getBaseAssetSizeAsyncWithHttpInfo + * + * Get Base Asset Size + * + * @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['getBaseAssetSize'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function getBaseAssetSizeAsyncWithHttpInfo($base_uuid, string $contentType = self::contentTypes['getBaseAssetSize'][0]) + { + $returnType = '\SeaTable\Client\User\GetBaseAssetSize200Response'; + $request = $this->getBaseAssetSizeRequest($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 'getBaseAssetSize' + * + * @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['getBaseAssetSize'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function getBaseAssetSizeRequest($base_uuid, string $contentType = self::contentTypes['getBaseAssetSize'][0]) + { + + // 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 getBaseAssetSize' + ); + } + 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 AttachmentApi.getBaseAssetSize, 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/dtable-asset/{base_uuid}/asset-size/'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + + + // 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 getBaseAttachmentUploadLink * diff --git a/lib/User/AutomationsApi.php b/lib/User/AutomationsApi.php index 32c81cc1..0fd823b4 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Base.php b/lib/User/Base.php index cb11af9e..5b4f5135 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/BasePasswordRequest.php b/lib/User/BasePasswordRequest.php index a48d6ad7..383c0898 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/BaseTable.php b/lib/User/BaseTable.php index 563e3334..8fe0d8c6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/BasesApi.php b/lib/User/BasesApi.php index e4ab2bcd..f44d064b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ChooseADateColumnValue.php b/lib/User/ChooseADateColumnValue.php index d65c1e71..3723b48c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CommonDatasetApi.php b/lib/User/CommonDatasetApi.php index e64f8e0a..56842423 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Contains.php b/lib/User/Contains.php index d62e7046..c5e64ceb 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ContainsFilterTerm.php b/lib/User/ContainsFilterTerm.php index b80e7a56..7335b968 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateAutomationRule200Response.php b/lib/User/CreateAutomationRule200Response.php index 1057d536..9aa7d5ce 100644 --- a/lib/User/CreateAutomationRule200Response.php +++ b/lib/User/CreateAutomationRule200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateAutomationRuleRequest.php b/lib/User/CreateAutomationRuleRequest.php index 0a70c53e..bbd9ab25 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateBaseExternalLink200Response.php b/lib/User/CreateBaseExternalLink200Response.php index 9ba9cd22..22495949 100644 --- a/lib/User/CreateBaseExternalLink200Response.php +++ b/lib/User/CreateBaseExternalLink200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateGroupRequest.php b/lib/User/CreateGroupRequest.php index c234d5f8..fa01021a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateGroupViewShare200Response.php b/lib/User/CreateGroupViewShare200Response.php index 13b88805..36298f11 100644 --- a/lib/User/CreateGroupViewShare200Response.php +++ b/lib/User/CreateGroupViewShare200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateInviteLink200Response.php b/lib/User/CreateInviteLink200Response.php index c4bc7d55..c766c592 100644 --- a/lib/User/CreateInviteLink200Response.php +++ b/lib/User/CreateInviteLink200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateUserViewShare200Response.php b/lib/User/CreateUserViewShare200Response.php index 5bf7cbc6..a4330824 100644 --- a/lib/User/CreateUserViewShare200Response.php +++ b/lib/User/CreateUserViewShare200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/CreateViewExternalLink200Response.php b/lib/User/CreateViewExternalLink200Response.php index 0b95d836..00030eaa 100644 --- a/lib/User/CreateViewExternalLink200Response.php +++ b/lib/User/CreateViewExternalLink200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/DepartmentsApi.php b/lib/User/DepartmentsApi.php index 4a8b0dd0..16738196 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Detail.php b/lib/User/Detail.php index 71583aa0..11f61af7 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/DoesNotContain.php b/lib/User/DoesNotContain.php index e6bc1d7e..a9eae9b6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/EmailAccountsApi.php b/lib/User/EmailAccountsApi.php index 75404ab0..c622ad5d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Equal.php b/lib/User/Equal.php index 007b1c83..09017773 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/FilterTermEmpty.php b/lib/User/FilterTermEmpty.php index 3df0b74f..81e60225 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/FiltersInner.php b/lib/User/FiltersInner.php index fa068b74..bb007bd2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/FormsApi.php b/lib/User/FormsApi.php index ad3ce416..6714a591 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetAccountInfo200Response.php b/lib/User/GetAccountInfo200Response.php index e05ce316..937b1d5b 100644 --- a/lib/User/GetAccountInfo200Response.php +++ b/lib/User/GetAccountInfo200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetBaseAssetSize200Response.php b/lib/User/GetBaseAssetSize200Response.php new file mode 100644 index 00000000..2d112d39 --- /dev/null +++ b/lib/User/GetBaseAssetSize200Response.php @@ -0,0 +1,510 @@ + + */ +class GetBaseAssetSize200Response implements ModelInterface, ArrayAccess, \JsonSerializable +{ + public const DISCRIMINATOR = null; + + /** + * The original name of the model. + * + * @var string + */ + protected static $openAPIModelName = 'getBaseAssetSize_200_response'; + + /** + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ + protected static $openAPITypes = [ + 'asset_size' => 'int', + 'max_size_of_export' => 'int', + 'unit' => 'string', + 'can_export_asset' => 'bool' + ]; + + /** + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + * @phpstan-var array + * @psalm-var array + */ + protected static $openAPIFormats = [ + 'asset_size' => null, + 'max_size_of_export' => null, + 'unit' => null, + 'can_export_asset' => null + ]; + + /** + * Array of nullable properties. Used for (de)serialization + * + * @var boolean[] + */ + protected static array $openAPINullables = [ + 'asset_size' => false, + 'max_size_of_export' => false, + 'unit' => false, + 'can_export_asset' => false + ]; + + /** + * If a nullable field gets set to null, insert it here + * + * @var boolean[] + */ + protected array $openAPINullablesSetToNull = []; + + /** + * Array of property to type mappings. Used for (de)serialization + * + * @return array + */ + public static function openAPITypes() + { + return self::$openAPITypes; + } + + /** + * Array of property to format mappings. Used for (de)serialization + * + * @return array + */ + public static function openAPIFormats() + { + return self::$openAPIFormats; + } + + /** + * Array of nullable properties + * + * @return array + */ + protected static function openAPINullables(): array + { + return self::$openAPINullables; + } + + /** + * Array of nullable field names deliberately set to null + * + * @return boolean[] + */ + private function getOpenAPINullablesSetToNull(): array + { + return $this->openAPINullablesSetToNull; + } + + /** + * Setter - Array of nullable field names deliberately set to null + * + * @param boolean[] $openAPINullablesSetToNull + */ + private function setOpenAPINullablesSetToNull(array $openAPINullablesSetToNull): void + { + $this->openAPINullablesSetToNull = $openAPINullablesSetToNull; + } + + /** + * Checks if a property is nullable + * + * @param string $property + * @return bool + */ + public static function isNullable(string $property): bool + { + return self::openAPINullables()[$property] ?? false; + } + + /** + * Checks if a nullable property is set to null. + * + * @param string $property + * @return bool + */ + public function isNullableSetToNull(string $property): bool + { + return in_array($property, $this->getOpenAPINullablesSetToNull(), true); + } + + /** + * Array of attributes where the key is the local name, + * and the value is the original name + * + * @var string[] + */ + protected static $attributeMap = [ + 'asset_size' => 'asset_size', + 'max_size_of_export' => 'max_size_of_export', + 'unit' => 'unit', + 'can_export_asset' => 'can_export_asset' + ]; + + /** + * Array of attributes to setter functions (for deserialization of responses) + * + * @var string[] + */ + protected static $setters = [ + 'asset_size' => 'setAssetSize', + 'max_size_of_export' => 'setMaxSizeOfExport', + 'unit' => 'setUnit', + 'can_export_asset' => 'setCanExportAsset' + ]; + + /** + * Array of attributes to getter functions (for serialization of requests) + * + * @var string[] + */ + protected static $getters = [ + 'asset_size' => 'getAssetSize', + 'max_size_of_export' => 'getMaxSizeOfExport', + 'unit' => 'getUnit', + 'can_export_asset' => 'getCanExportAsset' + ]; + + /** + * Array of attributes where the key is the local name, + * and the value is the original name + * + * @return array + */ + public static function attributeMap() + { + return self::$attributeMap; + } + + /** + * Array of attributes to setter functions (for deserialization of responses) + * + * @return array + */ + public static function setters() + { + return self::$setters; + } + + /** + * Array of attributes to getter functions (for serialization of requests) + * + * @return array + */ + public static function getters() + { + return self::$getters; + } + + /** + * The original name of the model. + * + * @return string + */ + public function getModelName() + { + return self::$openAPIModelName; + } + + + /** + * Associative array for storing property values + * + * @var mixed[] + */ + protected $container = []; + + /** + * Constructor + * + * @param mixed[]|null $data Associated array of property values + * initializing the model + */ + public function __construct(?array $data = null) + { + $this->setIfExists('asset_size', $data ?? [], null); + $this->setIfExists('max_size_of_export', $data ?? [], null); + $this->setIfExists('unit', $data ?? [], null); + $this->setIfExists('can_export_asset', $data ?? [], null); + } + + /** + * Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName + * is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the + * $this->openAPINullablesSetToNull array + * + * @param string $variableName + * @param array $fields + * @param mixed $defaultValue + */ + private function setIfExists(string $variableName, array $fields, $defaultValue): void + { + if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) { + $this->openAPINullablesSetToNull[] = $variableName; + } + + $this->container[$variableName] = $fields[$variableName] ?? $defaultValue; + } + + /** + * Show all the invalid properties with reasons. + * + * @return array invalid properties with reasons + */ + public function listInvalidProperties() + { + $invalidProperties = []; + + return $invalidProperties; + } + + /** + * Validate all the properties in the model + * return true if all passed + * + * @return bool True if all properties are valid + */ + public function valid() + { + return count($this->listInvalidProperties()) === 0; + } + + + /** + * Gets asset_size + * + * @return int|null + */ + public function getAssetSize() + { + return $this->container['asset_size']; + } + + /** + * Sets asset_size + * + * @param int|null $asset_size Total size of all assets of the base. + * + * @return self + */ + public function setAssetSize($asset_size) + { + if (is_null($asset_size)) { + throw new \InvalidArgumentException('non-nullable asset_size cannot be null'); + } + $this->container['asset_size'] = $asset_size; + + return $this; + } + + /** + * Gets max_size_of_export + * + * @return int|null + */ + public function getMaxSizeOfExport() + { + return $this->container['max_size_of_export']; + } + + /** + * Sets max_size_of_export + * + * @param int|null $max_size_of_export Maximum asset size that can be included in an export. + * + * @return self + */ + public function setMaxSizeOfExport($max_size_of_export) + { + if (is_null($max_size_of_export)) { + throw new \InvalidArgumentException('non-nullable max_size_of_export cannot be null'); + } + $this->container['max_size_of_export'] = $max_size_of_export; + + return $this; + } + + /** + * Gets unit + * + * @return string|null + */ + public function getUnit() + { + return $this->container['unit']; + } + + /** + * Sets unit + * + * @param string|null $unit Unit of the returned sizes. + * + * @return self + */ + public function setUnit($unit) + { + if (is_null($unit)) { + throw new \InvalidArgumentException('non-nullable unit cannot be null'); + } + $this->container['unit'] = $unit; + + return $this; + } + + /** + * Gets can_export_asset + * + * @return bool|null + */ + public function getCanExportAsset() + { + return $this->container['can_export_asset']; + } + + /** + * Sets can_export_asset + * + * @param bool|null $can_export_asset Whether the assets of this base can be included in an export. + * + * @return self + */ + public function setCanExportAsset($can_export_asset) + { + if (is_null($can_export_asset)) { + throw new \InvalidArgumentException('non-nullable can_export_asset cannot be null'); + } + $this->container['can_export_asset'] = $can_export_asset; + + return $this; + } + /** + * Returns true if offset exists. False otherwise. + * + * @param integer|string $offset Offset + * + * @return boolean + */ + public function offsetExists(mixed $offset): bool + { + return isset($this->container[$offset]); + } + + /** + * Gets offset. + * + * @param integer|string $offset Offset + * + * @return mixed|null + */ + #[\ReturnTypeWillChange] + public function offsetGet(mixed $offset) + { + return $this->container[$offset] ?? null; + } + + /** + * Sets value based on offset. + * + * @param int|null $offset Offset + * @param mixed $value Value to be set + * + * @return void + */ + public function offsetSet($offset, $value): void + { + if (is_null($offset)) { + $this->container[] = $value; + } else { + $this->container[$offset] = $value; + } + } + + /** + * Unsets offset. + * + * @param integer|string $offset Offset + * + * @return void + */ + public function offsetUnset(mixed $offset): void + { + unset($this->container[$offset]); + } + + /** + * Serializes the object to a value that can be serialized natively by json_encode(). + * @link https://www.php.net/manual/en/jsonserializable.jsonserialize.php + * + * @return mixed Returns data which can be serialized by json_encode(), which is a value + * of any type other than a resource. + */ + #[\ReturnTypeWillChange] + public function jsonSerialize() + { + return ObjectSerializer::sanitizeForSerialization($this); + } + + /** + * Gets the string presentation of the object + * + * @return string + */ + public function __toString() + { + return json_encode( + ObjectSerializer::sanitizeForSerialization($this), + JSON_PRETTY_PRINT + ); + } + + /** + * Gets a header-safe presentation of the object + * + * @return string + */ + public function toHeaderValue() + { + return json_encode(ObjectSerializer::sanitizeForSerialization($this)); + } +} + + diff --git a/lib/User/GetBaseAttachmentUploadLink200Response.php b/lib/User/GetBaseAttachmentUploadLink200Response.php index 02fb7f30..481779f3 100644 --- a/lib/User/GetBaseAttachmentUploadLink200Response.php +++ b/lib/User/GetBaseAttachmentUploadLink200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetBigDataOperationLogs200Response.php b/lib/User/GetBigDataOperationLogs200Response.php index c292e12f..0ef7271f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php b/lib/User/GetBigDataOperationLogs200ResponseOperationsInner.php index f9aa5ad7..dda212a6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php b/lib/User/GetBigDataOperationLogs200ResponseOperationsInnerOperation.php index 6fcc2733..f24bad0a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetCommonDataset200Response.php b/lib/User/GetCommonDataset200Response.php index 0a8d9498..462a4815 100644 --- a/lib/User/GetCommonDataset200Response.php +++ b/lib/User/GetCommonDataset200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetGroupMembers200ResponseInner.php b/lib/User/GetGroupMembers200ResponseInner.php index 09d13f44..e2a08113 100644 --- a/lib/User/GetGroupMembers200ResponseInner.php +++ b/lib/User/GetGroupMembers200ResponseInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GetPublicUserInfo200Response.php b/lib/User/GetPublicUserInfo200Response.php index 0783a288..cbb0e004 100644 --- a/lib/User/GetPublicUserInfo200Response.php +++ b/lib/User/GetPublicUserInfo200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Greater.php b/lib/User/Greater.php index 1700b54d..bafc66db 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GreaterOrEqual.php b/lib/User/GreaterOrEqual.php index b7fa485d..32a2b95f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/GroupsWorkspacesApi.php b/lib/User/GroupsWorkspacesApi.php index 8809567e..34c6f451 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/HasAllOf.php b/lib/User/HasAllOf.php index 8ec3150e..5cc26be5 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/HasAnyOf.php b/lib/User/HasAnyOf.php index 6751cb74..eb9f7e6c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/HasNoneOf.php b/lib/User/HasNoneOf.php index ce1ab786..388be440 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ImportBasefromDTableFile200Response.php b/lib/User/ImportBasefromDTableFile200Response.php index 7fb0916a..1cf6bcf9 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ImportBasefromDTableFile200ResponseTable.php b/lib/User/ImportBasefromDTableFile200ResponseTable.php index ebc19a2f..a379a454 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ImportExportApi.php b/lib/User/ImportExportApi.php index c945df75..201e3c37 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ImportUsersToAppRequest.php b/lib/User/ImportUsersToAppRequest.php index 254cdc75..9a1d8fc3 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IncludeMe.php b/lib/User/IncludeMe.php index 63d34c26..d0b9808a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Is.php b/lib/User/Is.php index 36652758..1acc59ca 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsAdmin.php b/lib/User/IsAdmin.php index 0a5a6ef1..b3c9204a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsAnyOf.php b/lib/User/IsAnyOf.php index 9f514594..f87ca34d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsCurrentUserID.php b/lib/User/IsCurrentUserID.php index 90fb4f05..bd871a04 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsEmpty.php b/lib/User/IsEmpty.php index f41ffabb..19983b87 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsExactly.php b/lib/User/IsExactly.php index 347abbbc..595eb01a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsInactive.php b/lib/User/IsInactive.php index 6e970c14..85221de7 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsNoneOf.php b/lib/User/IsNoneOf.php index 3f0f67b3..e7c70fba 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsNot.php b/lib/User/IsNot.php index 2de5959f..2222083e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsNotEmpty.php b/lib/User/IsNotEmpty.php index d4bf6f55..b5f0cbb6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinTheNextMonth.php b/lib/User/IsWithinTheNextMonth.php index ef78c9fe..bbfa76e7 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinTheNextNumberOfDays.php b/lib/User/IsWithinTheNextNumberOfDays.php index 2272005d..8f05b38f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinTheNextWeek.php b/lib/User/IsWithinTheNextWeek.php index c68054f0..a99d86e4 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinTheNextYear.php b/lib/User/IsWithinTheNextYear.php index 02c056e9..e2f1370c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThePastMonth.php b/lib/User/IsWithinThePastMonth.php index 2a532d33..4cc0765a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThePastNumberOfDays.php b/lib/User/IsWithinThePastNumberOfDays.php index d3806c5b..d6f395b2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThePastWeek.php b/lib/User/IsWithinThePastWeek.php index ab056177..5446b8ab 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThePastYear.php b/lib/User/IsWithinThePastYear.php index 322ca921..652e96e5 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThisMonth.php b/lib/User/IsWithinThisMonth.php index 28f02a2f..b56d052b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThisWeek.php b/lib/User/IsWithinThisWeek.php index 13f74b61..b578d57a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/IsWithinThisYear.php b/lib/User/IsWithinThisYear.php index 68a083fb..085e7402 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Less.php b/lib/User/Less.php index 34e3368e..8fd069c3 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/LessOrEqual.php b/lib/User/LessOrEqual.php index 1d2e7c13..14c9b3b2 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ListPublicUserInfosRequest.php b/lib/User/ListPublicUserInfosRequest.php index 6e5b5fea..60069207 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/MaintenanceApi.php b/lib/User/MaintenanceApi.php index 11517c96..d28c3662 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ModelInterface.php b/lib/User/ModelInterface.php index ffce8120..9c05834a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/ModifyPassword.php b/lib/User/ModifyPassword.php index 5658f565..62055a30 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/NotEqual.php b/lib/User/NotEqual.php index 3e0f60ca..a32e3783 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/NotificationsApi.php b/lib/User/NotificationsApi.php index aae645be..afe20d26 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/PublishCommonDataset200Response.php b/lib/User/PublishCommonDataset200Response.php index 77b77926..6f6eff72 100644 --- a/lib/User/PublishCommonDataset200Response.php +++ b/lib/User/PublishCommonDataset200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RecordsMeetSpecificConditionsAfterModification.php b/lib/User/RecordsMeetSpecificConditionsAfterModification.php index 074b8b6a..837a457b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RepairBase200Response.php b/lib/User/RepairBase200Response.php index 91001be6..e7c6a0f6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RowAdded.php b/lib/User/RowAdded.php index 78691fc6..fa28a79c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RunPeriodically.php b/lib/User/RunPeriodically.php index df45fa83..0a6cf39d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/RunPeriodicallyOnRecordsMeetConditions.php b/lib/User/RunPeriodicallyOnRecordsMeetConditions.php index 81162149..77445d30 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SearchGroup200ResponseInner.php b/lib/User/SearchGroup200ResponseInner.php index 2556396b..de4ab608 100644 --- a/lib/User/SearchGroup200ResponseInner.php +++ b/lib/User/SearchGroup200ResponseInner.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SharingApi.php b/lib/User/SharingApi.php index fe214912..e8ff5591 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SharingLinksApi.php b/lib/User/SharingLinksApi.php index 3ff556bf..4496f70b 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SnapshotsApi.php b/lib/User/SnapshotsApi.php index 8ef8c2cf..a5af5942 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SpecificDateValue.php b/lib/User/SpecificDateValue.php index 8e4887ba..c1885534 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/SystemNotificationsApi.php b/lib/User/SystemNotificationsApi.php index 89edf4ca..acc584ec 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TheDayRunningTheTaskValue.php b/lib/User/TheDayRunningTheTaskValue.php index 3f3e0f77..38f00c25 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/Trigger.php b/lib/User/Trigger.php index 1a24e6af..8ae86f63 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php b/lib/User/TriggerRecordsMeetSpecificConditionsAfterModification.php index 6bc8044a..23a50014 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRecordsMeetSpecificConditionsAfterModificationCondition.php b/lib/User/TriggerRecordsMeetSpecificConditionsAfterModificationCondition.php index 84905046..07851e22 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRowAdded.php b/lib/User/TriggerRowAdded.php index 531229ff..8d3d462f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRowAddedCondition.php b/lib/User/TriggerRowAddedCondition.php index 67d04468..d11e4c45 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyByCondition.php b/lib/User/TriggerRunPeriodicallyByCondition.php index 87a546e1..187d0d19 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyCondition.php b/lib/User/TriggerRunPeriodicallyCondition.php index b41cc6f1..d945d286 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDay.php index a47f7e8f..fd2d800a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerDayTrigger.php index a15bf60d..6c2405a9 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonth.php index 860303a2..d4fb97e6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerMonthTrigger.php index d6412bdc..108ee15f 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeek.php index daaf3e3d..531a852e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php b/lib/User/TriggerRunPeriodicallyOnRecordsMeetPerWeekTrigger.php index cc216d20..39e9e981 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerDay.php b/lib/User/TriggerRunPeriodicallyPerDay.php index ca38b6ad..2e520031 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerDayTrigger.php b/lib/User/TriggerRunPeriodicallyPerDayTrigger.php index d4b71159..e0cfd713 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerMonth.php b/lib/User/TriggerRunPeriodicallyPerMonth.php index ca89b829..486b1476 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php b/lib/User/TriggerRunPeriodicallyPerMonthTrigger.php index bb3a83d4..9bc855f7 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerWeek.php b/lib/User/TriggerRunPeriodicallyPerWeek.php index 361d21a5..677d6861 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php b/lib/User/TriggerRunPeriodicallyPerWeekTrigger.php index eef220c5..ae302efa 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UnsetPassword.php b/lib/User/UnsetPassword.php index 0955c141..0557a8f6 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UpdateCommonDatasetSyncRequest.php b/lib/User/UpdateCommonDatasetSyncRequest.php index 68b0229e..99c9cc2a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UpdateGroup200Response.php b/lib/User/UpdateGroup200Response.php index b8e0c9c1..7928b03f 100644 --- a/lib/User/UpdateGroup200Response.php +++ b/lib/User/UpdateGroup200Response.php @@ -15,7 +15,7 @@ * * The official SeaTable API Reference (OpenAPI 3.0). * - * The version of the OpenAPI document: 6.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UpdateGroupRequest.php b/lib/User/UpdateGroupRequest.php index 0fdcad8f..5febca84 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UpdateGroupRoleRequest.php b/lib/User/UpdateGroupRoleRequest.php index ca46de9c..3b2fc9a0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UpdateNotificationRuleRequest.php b/lib/User/UpdateNotificationRuleRequest.php index 905fb279..50dd1d44 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UserApi.php b/lib/User/UserApi.php index 33eab748..3f2ee89d 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/UsersInfo.php b/lib/User/UsersInfo.php index 8fb52350..228e60e0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/WebhooksApi.php b/lib/User/WebhooksApi.php index 67f581eb..761c2647 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XDaysBeforeRunningTheTaskValue.php b/lib/User/XDaysBeforeRunningTheTaskValue.php index cbb25cd5..bf2dd6d0 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxExactDate.php b/lib/User/XxxExactDate.php index 37d4f554..156a204e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxNumberOfDaysAgo.php b/lib/User/XxxNumberOfDaysAgo.php index a7785423..4cfedd3a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxNumberOfDaysFromNow.php b/lib/User/XxxNumberOfDaysFromNow.php index c9d654ad..59fd8834 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxOneMonthAgo.php b/lib/User/XxxOneMonthAgo.php index ea275307..a9bce853 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxOneMonthFromNow.php b/lib/User/XxxOneMonthFromNow.php index 2ea98804..dc606d7c 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxOneWeekAgo.php b/lib/User/XxxOneWeekAgo.php index a37c57aa..13e3db06 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxOneWeekFromNow.php b/lib/User/XxxOneWeekFromNow.php index 7ee492ea..15883c49 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxToday.php b/lib/User/XxxToday.php index f72f46dd..66ce850e 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxTomorrow.php b/lib/User/XxxTomorrow.php index 28922045..1c4c438a 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ diff --git a/lib/User/XxxYesterday.php b/lib/User/XxxYesterday.php index 77058c4f..297419e3 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.2 + * The version of the OpenAPI document: 7.0 * Generated by: https://openapi-generator.tech */ From bfc94c69217b926d4f4410f2d419316e69d029e8 Mon Sep 17 00:00:00 2001 From: Simon Hammes Date: Wed, 16 Sep 2026 17:38:46 +0200 Subject: [PATCH 3/4] Update .yaml files --- .../team_admin_account_operations.yaml | 125 ++++++++++++++++++ 1 file changed, 125 insertions(+) diff --git a/openapi_input/team_admin_account_operations.yaml b/openapi_input/team_admin_account_operations.yaml index d5346c7d..ac79657a 100644 --- a/openapi_input/team_admin_account_operations.yaml +++ b/openapi_input/team_admin_account_operations.yaml @@ -451,6 +451,7 @@ paths: type: string last_login: type: string + nullable: true self_usage: type: integer quota: @@ -715,6 +716,88 @@ paths: example: success: true + /api/v2.1/org/{org_id}/admin/users/{user_id}/managed-external-apps/: + get: + tags: + - Users + summary: List Managed Apps + operationId: listManagedApps + description: >- + List all the universal apps a certain user manages, i.e. the apps in + which the user has the `admin` role. Inactive apps and apps of deleted + bases are not included. + 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: + managed_apps: + - app_user_id: 12 + app_id: 4 + app_name: Customer Portal + app_uuid: 25ed3722-7988-4389-8095-9a46373cd8a5 + app_config: '{"app_type": "universal-app", "app_name": "Customer Portal", "settings": {"pages": [], "navigation": []}}' + role_name: admin + permission: rw + dtable_uuid: c56624fd757f4f4bae7de76235aeb1f0 + dtable_name: CRM + workspace_id: 2 + link: https://cloud.seatable.io/external-apps/25ed3722-7988-4389-8095-9a46373cd8a5/ + edit_link: https://cloud.seatable.io/dtable/external-apps-edit/25ed3722-7988-4389-8095-9a46373cd8a5/ + joined_at: '2025-11-28T14:16:30+01:00' + count: 1 + + /api/v2.1/org/{org_id}/admin/users/{user_id}/can-use-external-apps/: + get: + tags: + - Users + summary: List Usable Apps + operationId: listUsableApps + description: >- + List all the universal apps a certain user can use, i.e. the apps in + which the user has a role other than `admin`. Inactive apps and apps + of deleted bases are not included. + 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: + can_use_apps: + - app_user_id: 13 + app_id: 4 + app_name: Customer Portal + app_uuid: 25ed3722-7988-4389-8095-9a46373cd8a5 + app_config: '{"app_type": "universal-app", "app_name": "Customer Portal", "settings": {"pages": [], "navigation": []}}' + role_name: default + permission: rw + dtable_uuid: c56624fd757f4f4bae7de76235aeb1f0 + dtable_name: CRM + workspace_id: 2 + link: https://cloud.seatable.io/external-apps/25ed3722-7988-4389-8095-9a46373cd8a5/ + edit_link: https://cloud.seatable.io/dtable/external-apps-edit/25ed3722-7988-4389-8095-9a46373cd8a5/ + joined_at: '2025-11-28T14:16:30+01:00' + count: 1 + # Bases /api/v2.1/org/{org_id}/admin/dtables/: get: @@ -837,6 +920,48 @@ paths: owner_deleted: false rows_count: 0 count: 2 + /api/v2.1/org/{org_id}/admin/users/{user_id}/shared-dtables/: + get: + tags: + - Bases + summary: List Bases Shared to User + operationId: listBasesSharedToUser + description: List all the bases shared to 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: 8 + workspace_id: 2 + uuid: 3a6e34b7-c9e1-4c2f-8b0e-2f5d3f21c7a4 + 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 + backend: js + creator: org-1-admin + modifier: org-1-admin + file_size: 1389 + rows_count: 7 + from_user: e38487b4357e40c8b1359223ba87a1af@auth.local + from_user_name: org-1-admin + count: 1 /api/v2.1/org/{org_id}/admin/dtables/{base_uuid}/: get: tags: From f42d83aa5f24435e6c4a7a9ff91f7d4500751460 Mon Sep 17 00:00:00 2001 From: Simon Hammes Date: Wed, 16 Sep 2026 17:43:08 +0200 Subject: [PATCH 4/4] Regenerate code --- README_TeamAdmin.md | 3 + docs/TeamAdmin/Api/BasesApi.md | 56 ++ docs/TeamAdmin/Api/UsersApi.md | 112 ++++ lib/TeamAdmin/AddUser200Response.php | 11 +- lib/TeamAdmin/BasesApi.php | 337 +++++++++++++ lib/TeamAdmin/UsersApi.php | 730 ++++++++++++++++++++++++++- 6 files changed, 1219 insertions(+), 30 deletions(-) diff --git a/README_TeamAdmin.md b/README_TeamAdmin.md index 2c327f55..2442620e 100644 --- a/README_TeamAdmin.md +++ b/README_TeamAdmin.md @@ -19,6 +19,7 @@ Class | Method | HTTP request | Description *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* | [**listBasesSharedToUser**](docs/TeamAdmin/Api/BasesApi.md#listbasessharedtouser) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/shared-dtables/ | List Bases Shared to User *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 @@ -66,7 +67,9 @@ Class | Method | HTTP request | Description *UsersApi* | [**disableTwoFactor**](docs/TeamAdmin/Api/UsersApi.md#disabletwofactor) | **DELETE** /api/v2.1/org/{org_id}/admin/users/{user_id}/two-factor-auth/ | Disable 2FA *UsersApi* | [**enforceTwofactor**](docs/TeamAdmin/Api/UsersApi.md#enforcetwofactor) | **PUT** /api/v2.1/org/{org_id}/admin/users/{user_id}/two-factor-auth/ | Enforce 2FA *UsersApi* | [**getUser**](docs/TeamAdmin/Api/UsersApi.md#getuser) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/ | Get User +*UsersApi* | [**listManagedApps**](docs/TeamAdmin/Api/UsersApi.md#listmanagedapps) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/managed-external-apps/ | List Managed Apps *UsersApi* | [**listTeamUsers**](docs/TeamAdmin/Api/UsersApi.md#listteamusers) | **GET** /api/v2.1/org/{org_id}/admin/users/ | List Users (Team) +*UsersApi* | [**listUsableApps**](docs/TeamAdmin/Api/UsersApi.md#listusableapps) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/can-use-external-apps/ | List Usable Apps *UsersApi* | [**resetUserPassword**](docs/TeamAdmin/Api/UsersApi.md#resetuserpassword) | **PUT** /api/v2.1/org/{org_id}/admin/users/{user_id}/set-password/ | Reset User Password *UsersApi* | [**updateUser**](docs/TeamAdmin/Api/UsersApi.md#updateuser) | **PUT** /api/v2.1/org/{org_id}/admin/users/{user_id}/ | Update User diff --git a/docs/TeamAdmin/Api/BasesApi.md b/docs/TeamAdmin/Api/BasesApi.md index 93b30d3e..a596af08 100644 --- a/docs/TeamAdmin/Api/BasesApi.md +++ b/docs/TeamAdmin/Api/BasesApi.md @@ -12,6 +12,7 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi | [**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) | +| [**listBasesSharedToUser()**](BasesApi.md#listBasesSharedToUser) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/shared-dtables/ | List Bases Shared to User | | [**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 | @@ -430,6 +431,61 @@ AccountTokenAuth +## `listBasesSharedToUser()` + +```php +listBasesSharedToUser($org_id, $user_id, $page, $per_page): object +``` + +List Bases Shared to User + +List all the bases shared to 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->listBasesSharedToUser($org_id, $user_id, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling BasesApi->listBasesSharedToUser: ', $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 + + + + ## `listTrashBases()` ```php diff --git a/docs/TeamAdmin/Api/UsersApi.md b/docs/TeamAdmin/Api/UsersApi.md index f8e43c76..46bfd88c 100644 --- a/docs/TeamAdmin/Api/UsersApi.md +++ b/docs/TeamAdmin/Api/UsersApi.md @@ -9,7 +9,9 @@ All URIs are relative to https://cloud.seatable.io, except if the operation defi | [**disableTwoFactor()**](UsersApi.md#disableTwoFactor) | **DELETE** /api/v2.1/org/{org_id}/admin/users/{user_id}/two-factor-auth/ | Disable 2FA | | [**enforceTwofactor()**](UsersApi.md#enforceTwofactor) | **PUT** /api/v2.1/org/{org_id}/admin/users/{user_id}/two-factor-auth/ | Enforce 2FA | | [**getUser()**](UsersApi.md#getUser) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/ | Get User | +| [**listManagedApps()**](UsersApi.md#listManagedApps) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/managed-external-apps/ | List Managed Apps | | [**listTeamUsers()**](UsersApi.md#listTeamUsers) | **GET** /api/v2.1/org/{org_id}/admin/users/ | List Users (Team) | +| [**listUsableApps()**](UsersApi.md#listUsableApps) | **GET** /api/v2.1/org/{org_id}/admin/users/{user_id}/can-use-external-apps/ | List Usable Apps | | [**resetUserPassword()**](UsersApi.md#resetUserPassword) | **PUT** /api/v2.1/org/{org_id}/admin/users/{user_id}/set-password/ | Reset User Password | | [**updateUser()**](UsersApi.md#updateUser) | **PUT** /api/v2.1/org/{org_id}/admin/users/{user_id}/ | Update User | @@ -277,6 +279,61 @@ AccountTokenAuth +## `listManagedApps()` + +```php +listManagedApps($org_id, $user_id, $page, $per_page): object +``` + +List Managed Apps + +List all the universal apps a certain user manages, i.e. the apps in which the user has the `admin` role. Inactive apps and apps of deleted bases are not included. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\UsersApi( + 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->listManagedApps($org_id, $user_id, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->listManagedApps: ', $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 + + + + ## `listTeamUsers()` ```php @@ -330,6 +387,61 @@ AccountTokenAuth +## `listUsableApps()` + +```php +listUsableApps($org_id, $user_id, $page, $per_page): object +``` + +List Usable Apps + +List all the universal apps a certain user can use, i.e. the apps in which the user has a role other than `admin`. Inactive apps and apps of deleted bases are not included. + +### Example + +```php +setAccessToken('YOUR_TOKEN'); +$apiInstance = new SeaTable\Client\TeamAdmin\UsersApi( + 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->listUsableApps($org_id, $user_id, $page, $per_page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->listUsableApps: ', $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 + + + + ## `resetUserPassword()` ```php diff --git a/lib/TeamAdmin/AddUser200Response.php b/lib/TeamAdmin/AddUser200Response.php index e55361de..85cf142e 100644 --- a/lib/TeamAdmin/AddUser200Response.php +++ b/lib/TeamAdmin/AddUser200Response.php @@ -100,7 +100,7 @@ class AddUser200Response implements ModelInterface, ArrayAccess, \JsonSerializab 'name' => false, 'email' => false, 'contact_email' => false, - 'last_login' => false, + 'last_login' => true, 'self_usage' => false, 'quota' => false, 'workspace_id' => false @@ -533,7 +533,14 @@ public function getLastLogin() public function setLastLogin($last_login) { if (is_null($last_login)) { - throw new \InvalidArgumentException('non-nullable last_login cannot be null'); + array_push($this->openAPINullablesSetToNull, 'last_login'); + } else { + $nullablesSetToNull = $this->getOpenAPINullablesSetToNull(); + $index = array_search('last_login', $nullablesSetToNull); + if ($index !== FALSE) { + unset($nullablesSetToNull[$index]); + $this->setOpenAPINullablesSetToNull($nullablesSetToNull); + } } $this->container['last_login'] = $last_login; diff --git a/lib/TeamAdmin/BasesApi.php b/lib/TeamAdmin/BasesApi.php index 8554e41f..98df3758 100644 --- a/lib/TeamAdmin/BasesApi.php +++ b/lib/TeamAdmin/BasesApi.php @@ -97,6 +97,9 @@ class BasesApi 'listBases' => [ 'application/json', ], + 'listBasesSharedToUser' => [ + 'application/json', + ], 'listTrashBases' => [ 'application/json', ], @@ -2564,6 +2567,340 @@ public function listBasesRequest($org_id, $page = null, $per_page = null, string ); } + /** + * Operation listBasesSharedToUser + * + * List Bases Shared to User + * + * @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['listBasesSharedToUser'] 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 listBasesSharedToUser($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBasesSharedToUser'][0]) + { + list($response) = $this->listBasesSharedToUserWithHttpInfo($org_id, $user_id, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation listBasesSharedToUserWithHttpInfo + * + * List Bases Shared to User + * + * @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['listBasesSharedToUser'] 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 listBasesSharedToUserWithHttpInfo($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBasesSharedToUser'][0]) + { + $request = $this->listBasesSharedToUserRequest($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 listBasesSharedToUserAsync + * + * List Bases Shared to User + * + * @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['listBasesSharedToUser'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listBasesSharedToUserAsync($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBasesSharedToUser'][0]) + { + return $this->listBasesSharedToUserAsyncWithHttpInfo($org_id, $user_id, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listBasesSharedToUserAsyncWithHttpInfo + * + * List Bases Shared to User + * + * @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['listBasesSharedToUser'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listBasesSharedToUserAsyncWithHttpInfo($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBasesSharedToUser'][0]) + { + $returnType = 'object'; + $request = $this->listBasesSharedToUserRequest($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 'listBasesSharedToUser' + * + * @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['listBasesSharedToUser'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listBasesSharedToUserRequest($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listBasesSharedToUser'][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 listBasesSharedToUser' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling BasesApi.listBasesSharedToUser, 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 listBasesSharedToUser' + ); + } + if (!preg_match("/^[a-f0-9]{32}(@auth.local)$/", $user_id)) { + throw new \InvalidArgumentException("invalid value for \"user_id\" when calling BasesApi.listBasesSharedToUser, 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.listBasesSharedToUser, 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.listBasesSharedToUser, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/users/{user_id}/shared-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 + ); + } + // path params + if ($user_id !== null) { + $resourcePath = str_replace( + '{' . 'user_id' . '}', + ObjectSerializer::toPathValue($user_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 * diff --git a/lib/TeamAdmin/UsersApi.php b/lib/TeamAdmin/UsersApi.php index a0871185..0fc27dcb 100644 --- a/lib/TeamAdmin/UsersApi.php +++ b/lib/TeamAdmin/UsersApi.php @@ -88,9 +88,15 @@ class UsersApi 'getUser' => [ 'application/json', ], + 'listManagedApps' => [ + 'application/json', + ], 'listTeamUsers' => [ 'application/json', ], + 'listUsableApps' => [ + 'application/json', + ], 'resetUserPassword' => [ 'application/json', ], @@ -1663,42 +1669,44 @@ public function getUserRequest($org_id, $user_id, string $contentType = self::co } /** - * Operation listTeamUsers + * Operation listManagedApps * - * List Users (Team) + * List Managed Apps * * @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['listTeamUsers'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listManagedApps'] 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 listTeamUsers($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][0]) + public function listManagedApps($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listManagedApps'][0]) { - list($response) = $this->listTeamUsersWithHttpInfo($org_id, $page, $per_page, $contentType); + list($response) = $this->listManagedAppsWithHttpInfo($org_id, $user_id, $page, $per_page, $contentType); return $response; } /** - * Operation listTeamUsersWithHttpInfo + * Operation listManagedAppsWithHttpInfo * - * List Users (Team) + * List Managed Apps * * @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['listTeamUsers'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listManagedApps'] 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 listTeamUsersWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][0]) + public function listManagedAppsWithHttpInfo($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listManagedApps'][0]) { - $request = $this->listTeamUsersRequest($org_id, $page, $per_page, $contentType); + $request = $this->listManagedAppsRequest($org_id, $user_id, $page, $per_page, $contentType); try { $options = $this->createHttpClientOption(); @@ -1770,21 +1778,22 @@ public function listTeamUsersWithHttpInfo($org_id, $page = null, $per_page = nul } /** - * Operation listTeamUsersAsync + * Operation listManagedAppsAsync * - * List Users (Team) + * List Managed Apps * * @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['listTeamUsers'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listManagedApps'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTeamUsersAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][0]) + public function listManagedAppsAsync($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listManagedApps'][0]) { - return $this->listTeamUsersAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + return $this->listManagedAppsAsyncWithHttpInfo($org_id, $user_id, $page, $per_page, $contentType) ->then( function ($response) { return $response[0]; @@ -1793,22 +1802,23 @@ function ($response) { } /** - * Operation listTeamUsersAsyncWithHttpInfo + * Operation listManagedAppsAsyncWithHttpInfo * - * List Users (Team) + * List Managed Apps * * @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['listTeamUsers'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listManagedApps'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function listTeamUsersAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][0]) + public function listManagedAppsAsyncWithHttpInfo($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listManagedApps'][0]) { $returnType = 'object'; - $request = $this->listTeamUsersRequest($org_id, $page, $per_page, $contentType); + $request = $this->listManagedAppsRequest($org_id, $user_id, $page, $per_page, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -1847,39 +1857,50 @@ function ($exception) { } /** - * Create request for operation 'listTeamUsers' + * Create request for operation 'listManagedApps' * * @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['listTeamUsers'] to see the possible values for this operation + * @param string $contentType The value for the Content-Type header. Check self::contentTypes['listManagedApps'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function listTeamUsersRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][0]) + public function listManagedAppsRequest($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listManagedApps'][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 listTeamUsers' + 'Missing the required parameter $org_id when calling listManagedApps' ); } if ($org_id < 1) { - throw new \InvalidArgumentException('invalid value for "$org_id" when calling UsersApi.listTeamUsers, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$org_id" when calling UsersApi.listManagedApps, 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 listManagedApps' + ); + } + if (!preg_match("/^[a-f0-9]{32}(@auth.local)$/", $user_id)) { + throw new \InvalidArgumentException("invalid value for \"user_id\" when calling UsersApi.listManagedApps, 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 UsersApi.listTeamUsers, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$page" when calling UsersApi.listManagedApps, 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 UsersApi.listTeamUsers, must be bigger than or equal to 1.'); + throw new \InvalidArgumentException('invalid value for "$per_page" when calling UsersApi.listManagedApps, must be bigger than or equal to 1.'); } - $resourcePath = '/api/v2.1/org/{org_id}/admin/users/'; + $resourcePath = '/api/v2.1/org/{org_id}/admin/users/{user_id}/managed-external-apps/'; $formParams = []; $queryParams = []; $headerParams = []; @@ -1914,6 +1935,659 @@ public function listTeamUsersRequest($org_id, $page = null, $per_page = null, st $resourcePath ); } + // path params + if ($user_id !== null) { + $resourcePath = str_replace( + '{' . 'user_id' . '}', + ObjectSerializer::toPathValue($user_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 listTeamUsers + * + * List Users (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['listTeamUsers'] 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 listTeamUsers($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][0]) + { + list($response) = $this->listTeamUsersWithHttpInfo($org_id, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation listTeamUsersWithHttpInfo + * + * List Users (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['listTeamUsers'] 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 listTeamUsersWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][0]) + { + $request = $this->listTeamUsersRequest($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 listTeamUsersAsync + * + * List Users (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['listTeamUsers'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listTeamUsersAsync($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][0]) + { + return $this->listTeamUsersAsyncWithHttpInfo($org_id, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listTeamUsersAsyncWithHttpInfo + * + * List Users (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['listTeamUsers'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listTeamUsersAsyncWithHttpInfo($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][0]) + { + $returnType = 'object'; + $request = $this->listTeamUsersRequest($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 'listTeamUsers' + * + * @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['listTeamUsers'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listTeamUsersRequest($org_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listTeamUsers'][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 listTeamUsers' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling UsersApi.listTeamUsers, must be bigger than or equal to 1.'); + } + + if ($page !== null && $page < 1) { + throw new \InvalidArgumentException('invalid value for "$page" when calling UsersApi.listTeamUsers, 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 UsersApi.listTeamUsers, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/users/'; + $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 listUsableApps + * + * List Usable Apps + * + * @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['listUsableApps'] 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 listUsableApps($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsableApps'][0]) + { + list($response) = $this->listUsableAppsWithHttpInfo($org_id, $user_id, $page, $per_page, $contentType); + return $response; + } + + /** + * Operation listUsableAppsWithHttpInfo + * + * List Usable Apps + * + * @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['listUsableApps'] 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 listUsableAppsWithHttpInfo($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsableApps'][0]) + { + $request = $this->listUsableAppsRequest($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 listUsableAppsAsync + * + * List Usable Apps + * + * @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['listUsableApps'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listUsableAppsAsync($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsableApps'][0]) + { + return $this->listUsableAppsAsyncWithHttpInfo($org_id, $user_id, $page, $per_page, $contentType) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation listUsableAppsAsyncWithHttpInfo + * + * List Usable Apps + * + * @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['listUsableApps'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function listUsableAppsAsyncWithHttpInfo($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsableApps'][0]) + { + $returnType = 'object'; + $request = $this->listUsableAppsRequest($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 'listUsableApps' + * + * @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['listUsableApps'] to see the possible values for this operation + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + public function listUsableAppsRequest($org_id, $user_id, $page = null, $per_page = null, string $contentType = self::contentTypes['listUsableApps'][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 listUsableApps' + ); + } + if ($org_id < 1) { + throw new \InvalidArgumentException('invalid value for "$org_id" when calling UsersApi.listUsableApps, 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 listUsableApps' + ); + } + if (!preg_match("/^[a-f0-9]{32}(@auth.local)$/", $user_id)) { + throw new \InvalidArgumentException("invalid value for \"user_id\" when calling UsersApi.listUsableApps, 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 UsersApi.listUsableApps, 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 UsersApi.listUsableApps, must be bigger than or equal to 1.'); + } + + + $resourcePath = '/api/v2.1/org/{org_id}/admin/users/{user_id}/can-use-external-apps/'; + $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 + ); + } + // path params + if ($user_id !== null) { + $resourcePath = str_replace( + '{' . 'user_id' . '}', + ObjectSerializer::toPathValue($user_id), + $resourcePath + ); + } $headers = $this->headerSelector->selectHeaders(