From 87382827d51c383046eb20d6e7fce11ca8e1cd4e Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 19 Dec 2023 16:27:58 +0000
Subject: [PATCH 1/9] Automated update by SDK Generator version:3.1.2
commit:d7125c3
---
src/gen/docs/models/LinkedCustomer.md | 2 +-
src/gen/docs/models/LinkedSupplier.md | 2 +-
src/gen/lib/Model/LinkedCustomer.php | 7 ++-----
src/gen/lib/Model/LinkedSupplier.php | 7 ++-----
4 files changed, 6 insertions(+), 12 deletions(-)
diff --git a/src/gen/docs/models/LinkedCustomer.md b/src/gen/docs/models/LinkedCustomer.md
index 6f4d295636..a8bf32c4f0 100644
--- a/src/gen/docs/models/LinkedCustomer.md
+++ b/src/gen/docs/models/LinkedCustomer.md
@@ -7,7 +7,7 @@ The customer this entity is linked to.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-`id` | **string** | The ID of the customer this entity is linked to. |
+`id` | **string** | The ID of the customer this entity is linked to. | [optional]
`display_id` | **string** | The display ID of the customer. | [optional]
`display_name` | **string** | The display name of the customer. | [optional]
`name` | **string** | The name of the customer. Deprecated, use display_name instead. | [optional]
diff --git a/src/gen/docs/models/LinkedSupplier.md b/src/gen/docs/models/LinkedSupplier.md
index 603fcc3ab4..529979c054 100644
--- a/src/gen/docs/models/LinkedSupplier.md
+++ b/src/gen/docs/models/LinkedSupplier.md
@@ -7,7 +7,7 @@ The supplier this entity is linked to.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-`id` | **string** | The ID of the supplier this entity is linked to. |
+`id` | **string** | The ID of the supplier this entity is linked to. | [optional]
`display_id` | **string** | The display ID of the supplier. | [optional]
`display_name` | **string** | The display name of the supplier. | [optional]
`company_name` | **string** | The company name of the supplier. | [optional]
diff --git a/src/gen/lib/Model/LinkedCustomer.php b/src/gen/lib/Model/LinkedCustomer.php
index c0be9b3a36..6b192bf29c 100644
--- a/src/gen/lib/Model/LinkedCustomer.php
+++ b/src/gen/lib/Model/LinkedCustomer.php
@@ -215,9 +215,6 @@ public function listInvalidProperties()
{
$invalidProperties = [];
- if ($this->container['id'] === null) {
- $invalidProperties[] = "'id' can't be null";
- }
return $invalidProperties;
}
@@ -236,7 +233,7 @@ public function valid()
/**
* Gets id
*
- * @return string
+ * @return string|null
*/
public function getId()
{
@@ -246,7 +243,7 @@ public function getId()
/**
* Sets id
*
- * @param string $id The ID of the customer this entity is linked to.
+ * @param string|null $id The ID of the customer this entity is linked to.
*
* @return self
*/
diff --git a/src/gen/lib/Model/LinkedSupplier.php b/src/gen/lib/Model/LinkedSupplier.php
index ed92b92fe8..ab61264487 100644
--- a/src/gen/lib/Model/LinkedSupplier.php
+++ b/src/gen/lib/Model/LinkedSupplier.php
@@ -215,9 +215,6 @@ public function listInvalidProperties()
{
$invalidProperties = [];
- if ($this->container['id'] === null) {
- $invalidProperties[] = "'id' can't be null";
- }
return $invalidProperties;
}
@@ -236,7 +233,7 @@ public function valid()
/**
* Gets id
*
- * @return string
+ * @return string|null
*/
public function getId()
{
@@ -246,7 +243,7 @@ public function getId()
/**
* Sets id
*
- * @param string $id The ID of the supplier this entity is linked to.
+ * @param string|null $id The ID of the supplier this entity is linked to.
*
* @return self
*/
From d40c5bc1d7866c1c8c2a37aa19e25e8cdf58e9e9 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 4 Jan 2024 13:09:45 +0000
Subject: [PATCH 2/9] Automated update by SDK Generator version:3.1.2
commit:00706c6
---
src/gen/docs/models/EcommerceOrderStatus.md | 2 ++
src/gen/lib/Model/EcommerceOrderStatus.php | 5 ++++-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/src/gen/docs/models/EcommerceOrderStatus.md b/src/gen/docs/models/EcommerceOrderStatus.md
index 4d7dc081c9..8c0128781d 100644
--- a/src/gen/docs/models/EcommerceOrderStatus.md
+++ b/src/gen/docs/models/EcommerceOrderStatus.md
@@ -13,6 +13,8 @@
* `UNKNOWN` (value: `'unknown'`)
+* `OTHER` (value: `'other'`)
+
---
diff --git a/src/gen/lib/Model/EcommerceOrderStatus.php b/src/gen/lib/Model/EcommerceOrderStatus.php
index 6474c076f7..bc37e51c76 100644
--- a/src/gen/lib/Model/EcommerceOrderStatus.php
+++ b/src/gen/lib/Model/EcommerceOrderStatus.php
@@ -53,6 +53,8 @@ class EcommerceOrderStatus
const UNKNOWN = 'unknown';
+ const OTHER = 'other';
+
/**
* Gets allowable values of the enum
* @return string[]
@@ -64,7 +66,8 @@ public static function getAllowableEnumValues()
self::COMPLETED,
self::CANCELLED,
self::ARCHIVED,
- self::UNKNOWN
+ self::UNKNOWN,
+ self::OTHER
];
}
}
From 4ebb4ae6c0a905c3e9aa2a34a7645eb1bbc47c33 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 5 Jan 2024 12:51:18 +0000
Subject: [PATCH 3/9] Automated update by SDK Generator version:3.2.0
commit:586c127
---
.github/workflows/release.yml | 2 +-
package.json | 2 +-
src/gen/.openapi-generator/FILES | 9 +
src/gen/docs/apis/AccountingApi.md | 137 ++
.../docs/models/GetSubsidiariesResponse.md | 35 +
src/gen/docs/models/GetSubsidiaryResponse.md | 31 +
src/gen/docs/models/Subsidiary.md | 38 +
src/gen/lib/Api/AccountingApi.php | 1106 ++++++++++++++++-
src/gen/lib/Api/AtsApi.php | 2 +-
src/gen/lib/Api/ConnectorApi.php | 2 +-
src/gen/lib/Api/CrmApi.php | 2 +-
src/gen/lib/Api/EcommerceApi.php | 2 +-
src/gen/lib/Api/FileStorageApi.php | 2 +-
src/gen/lib/Api/HrisApi.php | 2 +-
src/gen/lib/Api/IssueTrackingApi.php | 2 +-
src/gen/lib/Api/LeadApi.php | 2 +-
src/gen/lib/Api/PosApi.php | 2 +-
src/gen/lib/Api/SmsApi.php | 2 +-
src/gen/lib/Api/VaultApi.php | 2 +-
src/gen/lib/Api/WebhookApi.php | 2 +-
src/gen/lib/ApiException.php | 2 +-
src/gen/lib/Configuration.php | 8 +-
src/gen/lib/HeaderSelector.php | 2 +-
src/gen/lib/Model/AccountingEventType.php | 2 +-
src/gen/lib/Model/ActivitiesFilter.php | 2 +-
src/gen/lib/Model/ActivitiesSort.php | 2 +-
src/gen/lib/Model/Activity.php | 2 +-
src/gen/lib/Model/ActivityAttendee.php | 2 +-
src/gen/lib/Model/Address.php | 2 +-
src/gen/lib/Model/Api.php | 2 +-
src/gen/lib/Model/ApiResource.php | 2 +-
src/gen/lib/Model/ApiResourceCoverage.php | 2 +-
.../lib/Model/ApiResourceCoverageCoverage.php | 2 +-
.../lib/Model/ApiResourceLinkedResources.php | 2 +-
src/gen/lib/Model/ApiResources.php | 2 +-
src/gen/lib/Model/ApiStatus.php | 2 +-
src/gen/lib/Model/ApisFilter.php | 2 +-
src/gen/lib/Model/Applicant.php | 2 +-
src/gen/lib/Model/ApplicantSocialLinks.php | 2 +-
src/gen/lib/Model/ApplicantWebsites.php | 2 +-
src/gen/lib/Model/ApplicantsFilter.php | 2 +-
src/gen/lib/Model/Application.php | 2 +-
src/gen/lib/Model/ApplicationStage.php | 2 +-
src/gen/lib/Model/Assignee.php | 2 +-
src/gen/lib/Model/AtsActivity.php | 2 +-
src/gen/lib/Model/AtsEventType.php | 2 +-
src/gen/lib/Model/AuthType.php | 2 +-
src/gen/lib/Model/BadRequestResponse.php | 2 +-
src/gen/lib/Model/BalanceSheet.php | 2 +-
src/gen/lib/Model/BalanceSheetAssets.php | 2 +-
.../Model/BalanceSheetAssetsCurrentAssets.php | 2 +-
...alanceSheetAssetsCurrentAssetsAccounts.php | 2 +-
.../Model/BalanceSheetAssetsFixedAssets.php | 2 +-
.../BalanceSheetAssetsFixedAssetsAccounts.php | 2 +-
src/gen/lib/Model/BalanceSheetEquity.php | 2 +-
src/gen/lib/Model/BalanceSheetEquityItems.php | 2 +-
src/gen/lib/Model/BalanceSheetFilter.php | 2 +-
src/gen/lib/Model/BalanceSheetLiabilities.php | 2 +-
.../Model/BalanceSheetLiabilitiesAccounts.php | 2 +-
src/gen/lib/Model/BankAccount.php | 2 +-
src/gen/lib/Model/Benefit.php | 2 +-
src/gen/lib/Model/Bill.php | 2 +-
src/gen/lib/Model/BillLineItem.php | 2 +-
src/gen/lib/Model/BillsFilter.php | 2 +-
src/gen/lib/Model/BillsSort.php | 2 +-
src/gen/lib/Model/Branch.php | 2 +-
src/gen/lib/Model/CashDetails.php | 2 +-
src/gen/lib/Model/Collection.php | 2 +-
src/gen/lib/Model/CollectionTag.php | 2 +-
src/gen/lib/Model/CollectionTicketComment.php | 2 +-
src/gen/lib/Model/CollectionUser.php | 2 +-
src/gen/lib/Model/CollectionsSort.php | 2 +-
src/gen/lib/Model/CommentsSort.php | 2 +-
src/gen/lib/Model/CompaniesFilter.php | 2 +-
src/gen/lib/Model/CompaniesSort.php | 2 +-
src/gen/lib/Model/Company.php | 2 +-
src/gen/lib/Model/CompanyInfo.php | 2 +-
src/gen/lib/Model/CompanyRowType.php | 2 +-
src/gen/lib/Model/Compensation.php | 2 +-
src/gen/lib/Model/Connection.php | 2 +-
src/gen/lib/Model/ConnectionConfiguration.php | 2 +-
src/gen/lib/Model/ConnectionDefaults.php | 2 +-
src/gen/lib/Model/ConnectionImportData.php | 2 +-
.../Model/ConnectionImportDataCredentials.php | 2 +-
src/gen/lib/Model/ConnectionMetadata.php | 2 +-
src/gen/lib/Model/ConnectionState.php | 2 +-
src/gen/lib/Model/ConnectionWebhook.php | 2 +-
src/gen/lib/Model/Connector.php | 2 +-
src/gen/lib/Model/ConnectorDoc.php | 2 +-
src/gen/lib/Model/ConnectorEvent.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes1.php | 2 +-
src/gen/lib/Model/ConnectorResource.php | 2 +-
src/gen/lib/Model/ConnectorSetting.php | 2 +-
src/gen/lib/Model/ConnectorStatus.php | 2 +-
src/gen/lib/Model/ConnectorTlsSupport.php | 2 +-
src/gen/lib/Model/ConnectorUnifiedApis.php | 2 +-
src/gen/lib/Model/ConnectorsFilter.php | 2 +-
src/gen/lib/Model/Consumer.php | 2 +-
src/gen/lib/Model/ConsumerConnection.php | 2 +-
src/gen/lib/Model/ConsumerMetadata.php | 2 +-
...nsumerRequestCountsInDateRangeResponse.php | 2 +-
...erRequestCountsInDateRangeResponseData.php | 2 +-
src/gen/lib/Model/Contact.php | 2 +-
src/gen/lib/Model/ContactsFilter.php | 2 +-
src/gen/lib/Model/ContactsSort.php | 2 +-
src/gen/lib/Model/CopyFolderRequest.php | 2 +-
src/gen/lib/Model/CreateActivityResponse.php | 2 +-
src/gen/lib/Model/CreateApplicantResponse.php | 2 +-
.../lib/Model/CreateApplicationResponse.php | 2 +-
src/gen/lib/Model/CreateBillResponse.php | 2 +-
src/gen/lib/Model/CreateCommentResponse.php | 2 +-
src/gen/lib/Model/CreateCompanyResponse.php | 2 +-
.../lib/Model/CreateConnectionResponse.php | 2 +-
src/gen/lib/Model/CreateConsumerResponse.php | 2 +-
src/gen/lib/Model/CreateContactResponse.php | 2 +-
.../lib/Model/CreateCreditNoteResponse.php | 2 +-
.../lib/Model/CreateCustomMappingRequest.php | 2 +-
.../lib/Model/CreateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/CreateCustomerResponse.php | 2 +-
.../lib/Model/CreateDepartmentResponse.php | 2 +-
.../lib/Model/CreateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/CreateDriveResponse.php | 2 +-
.../Model/CreateEcommerceCustomerResponse.php | 2 +-
.../Model/CreateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/CreateEmployeeResponse.php | 2 +-
src/gen/lib/Model/CreateFileRequest.php | 2 +-
src/gen/lib/Model/CreateFileResponse.php | 2 +-
src/gen/lib/Model/CreateFolderRequest.php | 2 +-
src/gen/lib/Model/CreateFolderResponse.php | 2 +-
.../lib/Model/CreateHrisCompanyResponse.php | 2 +-
.../lib/Model/CreateInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/CreateInvoiceResponse.php | 2 +-
src/gen/lib/Model/CreateItemResponse.php | 2 +-
src/gen/lib/Model/CreateJobResponse.php | 2 +-
.../lib/Model/CreateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/CreateLeadResponse.php | 2 +-
.../lib/Model/CreateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/CreateLocationResponse.php | 2 +-
src/gen/lib/Model/CreateMerchantResponse.php | 2 +-
src/gen/lib/Model/CreateMessageResponse.php | 2 +-
.../lib/Model/CreateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/CreateModifierResponse.php | 2 +-
src/gen/lib/Model/CreateNoteResponse.php | 2 +-
.../lib/Model/CreateOpportunityResponse.php | 2 +-
src/gen/lib/Model/CreateOrderResponse.php | 2 +-
src/gen/lib/Model/CreateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/CreatePaymentResponse.php | 2 +-
src/gen/lib/Model/CreatePipelineResponse.php | 2 +-
.../lib/Model/CreatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/CreateProductResponse.php | 2 +-
.../lib/Model/CreatePurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/CreateSessionResponse.php | 2 +-
.../lib/Model/CreateSessionResponseData.php | 2 +-
.../lib/Model/CreateSharedLinkResponse.php | 2 +-
src/gen/lib/Model/CreateSupplierResponse.php | 2 +-
src/gen/lib/Model/CreateTaxRateResponse.php | 2 +-
src/gen/lib/Model/CreateTenderResponse.php | 2 +-
src/gen/lib/Model/CreateTicketResponse.php | 2 +-
.../Model/CreateTimeOffRequestResponse.php | 2 +-
.../lib/Model/CreateUploadSessionRequest.php | 2 +-
.../lib/Model/CreateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/CreateUserResponse.php | 2 +-
src/gen/lib/Model/CreateWebhookRequest.php | 2 +-
src/gen/lib/Model/CreateWebhookResponse.php | 2 +-
src/gen/lib/Model/CreditNote.php | 2 +-
src/gen/lib/Model/CreditNotesFilter.php | 2 +-
src/gen/lib/Model/CreditNotesSort.php | 2 +-
src/gen/lib/Model/CrmEventType.php | 2 +-
src/gen/lib/Model/Currency.php | 2 +-
src/gen/lib/Model/CustomField.php | 2 +-
src/gen/lib/Model/CustomFieldFinder.php | 2 +-
src/gen/lib/Model/CustomMapping.php | 2 +-
src/gen/lib/Model/Customer.php | 2 +-
src/gen/lib/Model/CustomersFilter.php | 2 +-
src/gen/lib/Model/CustomersSort.php | 2 +-
src/gen/lib/Model/Deduction.php | 2 +-
src/gen/lib/Model/DeleteActivityResponse.php | 2 +-
src/gen/lib/Model/DeleteApplicantResponse.php | 2 +-
.../lib/Model/DeleteApplicationResponse.php | 2 +-
src/gen/lib/Model/DeleteBillResponse.php | 2 +-
src/gen/lib/Model/DeleteCommentResponse.php | 2 +-
src/gen/lib/Model/DeleteCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteConsumerResponse.php | 2 +-
src/gen/lib/Model/DeleteContactResponse.php | 2 +-
.../lib/Model/DeleteCreditNoteResponse.php | 2 +-
src/gen/lib/Model/DeleteCustomerResponse.php | 2 +-
.../lib/Model/DeleteDepartmentResponse.php | 2 +-
.../lib/Model/DeleteDriveGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteDriveResponse.php | 2 +-
.../Model/DeleteEcommerceCustomerResponse.php | 2 +-
.../Model/DeleteEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteEmployeeResponse.php | 2 +-
src/gen/lib/Model/DeleteFileResponse.php | 2 +-
src/gen/lib/Model/DeleteFolderResponse.php | 2 +-
.../lib/Model/DeleteHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteInvoiceResponse.php | 2 +-
src/gen/lib/Model/DeleteItemResponse.php | 2 +-
src/gen/lib/Model/DeleteJobResponse.php | 2 +-
.../lib/Model/DeleteJournalEntryResponse.php | 2 +-
src/gen/lib/Model/DeleteLeadResponse.php | 2 +-
.../lib/Model/DeleteLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/DeleteLocationResponse.php | 2 +-
src/gen/lib/Model/DeleteMerchantResponse.php | 2 +-
src/gen/lib/Model/DeleteMessageResponse.php | 2 +-
.../lib/Model/DeleteModifierGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteModifierResponse.php | 2 +-
src/gen/lib/Model/DeleteNoteResponse.php | 2 +-
.../lib/Model/DeleteOpportunityResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderTypeResponse.php | 2 +-
src/gen/lib/Model/DeletePaymentResponse.php | 2 +-
src/gen/lib/Model/DeletePipelineResponse.php | 2 +-
.../lib/Model/DeletePosPaymentResponse.php | 2 +-
src/gen/lib/Model/DeleteProductResponse.php | 2 +-
.../lib/Model/DeletePurchaseOrderResponse.php | 2 +-
.../lib/Model/DeleteSharedLinkResponse.php | 2 +-
src/gen/lib/Model/DeleteSupplierResponse.php | 2 +-
src/gen/lib/Model/DeleteTaxRateResponse.php | 2 +-
src/gen/lib/Model/DeleteTenderResponse.php | 2 +-
src/gen/lib/Model/DeleteTicketResponse.php | 2 +-
.../Model/DeleteTimeOffRequestResponse.php | 2 +-
.../lib/Model/DeleteUploadSessionResponse.php | 2 +-
src/gen/lib/Model/DeleteUserResponse.php | 2 +-
src/gen/lib/Model/DeleteWebhookResponse.php | 2 +-
src/gen/lib/Model/Department.php | 2 +-
src/gen/lib/Model/Drive.php | 2 +-
src/gen/lib/Model/DriveGroup.php | 2 +-
src/gen/lib/Model/DriveGroupsFilter.php | 2 +-
src/gen/lib/Model/DrivesFilter.php | 2 +-
src/gen/lib/Model/EcommerceAddress.php | 2 +-
src/gen/lib/Model/EcommerceCustomer.php | 2 +-
.../lib/Model/EcommerceCustomerAddresses.php | 2 +-
.../lib/Model/EcommerceCustomersFilter.php | 2 +-
src/gen/lib/Model/EcommerceDiscount.php | 2 +-
src/gen/lib/Model/EcommerceOrder.php | 2 +-
src/gen/lib/Model/EcommerceOrderLineItem.php | 2 +-
src/gen/lib/Model/EcommerceOrderStatus.php | 2 +-
src/gen/lib/Model/EcommerceOrdersFilter.php | 2 +-
src/gen/lib/Model/EcommerceProduct.php | 2 +-
.../lib/Model/EcommerceProductCategories.php | 2 +-
src/gen/lib/Model/EcommerceProductImages.php | 2 +-
src/gen/lib/Model/EcommerceProductImages1.php | 2 +-
src/gen/lib/Model/EcommerceProductOptions.php | 2 +-
.../lib/Model/EcommerceProductOptions1.php | 2 +-
.../lib/Model/EcommerceProductVariants.php | 2 +-
src/gen/lib/Model/EcommerceStore.php | 2 +-
src/gen/lib/Model/Email.php | 2 +-
src/gen/lib/Model/Employee.php | 2 +-
src/gen/lib/Model/EmployeeCompensation.php | 2 +-
src/gen/lib/Model/EmployeeEmploymentRole.php | 2 +-
src/gen/lib/Model/EmployeeJob.php | 2 +-
src/gen/lib/Model/EmployeeList.php | 2 +-
src/gen/lib/Model/EmployeeManager.php | 2 +-
src/gen/lib/Model/EmployeePayroll.php | 2 +-
src/gen/lib/Model/EmployeeSchedules.php | 2 +-
src/gen/lib/Model/EmployeesFilter.php | 2 +-
src/gen/lib/Model/EmployeesSort.php | 2 +-
src/gen/lib/Model/EmploymentStatus.php | 2 +-
src/gen/lib/Model/Error.php | 2 +-
src/gen/lib/Model/ExecuteWebhookResponse.php | 2 +-
src/gen/lib/Model/FileStorageEventType.php | 2 +-
src/gen/lib/Model/FileType.php | 2 +-
src/gen/lib/Model/FilesFilter.php | 2 +-
src/gen/lib/Model/FilesSearch.php | 2 +-
src/gen/lib/Model/FilesSort.php | 2 +-
src/gen/lib/Model/Folder.php | 2 +-
src/gen/lib/Model/FormField.php | 2 +-
src/gen/lib/Model/FormFieldOption.php | 2 +-
src/gen/lib/Model/FormFieldOptionGroup.php | 2 +-
src/gen/lib/Model/Gender.php | 2 +-
src/gen/lib/Model/GetActivitiesResponse.php | 2 +-
src/gen/lib/Model/GetActivityResponse.php | 2 +-
.../Model/GetApiResourceCoverageResponse.php | 2 +-
src/gen/lib/Model/GetApiResourceResponse.php | 2 +-
src/gen/lib/Model/GetApiResponse.php | 2 +-
src/gen/lib/Model/GetApisResponse.php | 2 +-
src/gen/lib/Model/GetApplicantResponse.php | 2 +-
src/gen/lib/Model/GetApplicantsResponse.php | 2 +-
src/gen/lib/Model/GetApplicationResponse.php | 2 +-
src/gen/lib/Model/GetApplicationsResponse.php | 2 +-
src/gen/lib/Model/GetBalanceSheetResponse.php | 2 +-
src/gen/lib/Model/GetBillResponse.php | 2 +-
src/gen/lib/Model/GetBillsResponse.php | 2 +-
src/gen/lib/Model/GetCollectionResponse.php | 2 +-
.../lib/Model/GetCollectionTagsResponse.php | 2 +-
.../lib/Model/GetCollectionUserResponse.php | 2 +-
.../lib/Model/GetCollectionUsersResponse.php | 2 +-
src/gen/lib/Model/GetCollectionsResponse.php | 2 +-
src/gen/lib/Model/GetCommentResponse.php | 2 +-
src/gen/lib/Model/GetCommentsResponse.php | 2 +-
src/gen/lib/Model/GetCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetCompanyInfoResponse.php | 2 +-
src/gen/lib/Model/GetCompanyResponse.php | 2 +-
src/gen/lib/Model/GetConnectionResponse.php | 2 +-
src/gen/lib/Model/GetConnectionsResponse.php | 2 +-
.../GetConnectorResourceExampleResponse.php | 2 +-
...etConnectorResourceExampleResponseData.php | 2 +-
.../Model/GetConnectorResourceResponse.php | 2 +-
.../GetConnectorResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetConnectorResponse.php | 2 +-
src/gen/lib/Model/GetConnectorsResponse.php | 2 +-
src/gen/lib/Model/GetConsumerResponse.php | 2 +-
src/gen/lib/Model/GetConsumersResponse.php | 2 +-
.../lib/Model/GetConsumersResponseData.php | 2 +-
src/gen/lib/Model/GetContactResponse.php | 2 +-
src/gen/lib/Model/GetContactsResponse.php | 2 +-
src/gen/lib/Model/GetCreditNoteResponse.php | 2 +-
src/gen/lib/Model/GetCreditNotesResponse.php | 2 +-
src/gen/lib/Model/GetCustomFieldsResponse.php | 2 +-
.../lib/Model/GetCustomMappingResponse.php | 2 +-
src/gen/lib/Model/GetCustomerResponse.php | 2 +-
src/gen/lib/Model/GetCustomersResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentsResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupsResponse.php | 2 +-
src/gen/lib/Model/GetDriveResponse.php | 2 +-
src/gen/lib/Model/GetDrivesResponse.php | 2 +-
.../Model/GetEcommerceCustomerResponse.php | 2 +-
.../Model/GetEcommerceCustomersResponse.php | 2 +-
.../lib/Model/GetEcommerceOrderResponse.php | 2 +-
.../lib/Model/GetEcommerceOrdersResponse.php | 2 +-
.../lib/Model/GetEmployeePayrollResponse.php | 2 +-
.../lib/Model/GetEmployeePayrollsResponse.php | 2 +-
src/gen/lib/Model/GetEmployeeResponse.php | 2 +-
.../Model/GetEmployeeSchedulesResponse.php | 2 +-
src/gen/lib/Model/GetEmployeesResponse.php | 2 +-
src/gen/lib/Model/GetFileResponse.php | 2 +-
src/gen/lib/Model/GetFilesResponse.php | 2 +-
src/gen/lib/Model/GetFolderResponse.php | 2 +-
src/gen/lib/Model/GetFoldersResponse.php | 2 +-
.../lib/Model/GetHrisCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceResponse.php | 2 +-
src/gen/lib/Model/GetInvoicesResponse.php | 2 +-
src/gen/lib/Model/GetItemResponse.php | 2 +-
src/gen/lib/Model/GetItemsResponse.php | 2 +-
src/gen/lib/Model/GetJobResponse.php | 2 +-
src/gen/lib/Model/GetJobsResponse.php | 2 +-
.../lib/Model/GetJournalEntriesResponse.php | 2 +-
src/gen/lib/Model/GetJournalEntryResponse.php | 2 +-
src/gen/lib/Model/GetLeadResponse.php | 2 +-
src/gen/lib/Model/GetLeadsResponse.php | 2 +-
.../lib/Model/GetLedgerAccountResponse.php | 2 +-
.../lib/Model/GetLedgerAccountsResponse.php | 2 +-
src/gen/lib/Model/GetLocationResponse.php | 2 +-
src/gen/lib/Model/GetLocationsResponse.php | 2 +-
src/gen/lib/Model/GetLogsResponse.php | 2 +-
src/gen/lib/Model/GetMerchantResponse.php | 2 +-
src/gen/lib/Model/GetMerchantsResponse.php | 2 +-
src/gen/lib/Model/GetMessageResponse.php | 2 +-
src/gen/lib/Model/GetMessagesResponse.php | 2 +-
.../lib/Model/GetModifierGroupResponse.php | 2 +-
.../lib/Model/GetModifierGroupsResponse.php | 2 +-
src/gen/lib/Model/GetModifierResponse.php | 2 +-
src/gen/lib/Model/GetModifiersResponse.php | 2 +-
src/gen/lib/Model/GetNoteResponse.php | 2 +-
src/gen/lib/Model/GetNotesResponse.php | 2 +-
.../lib/Model/GetOpportunitiesResponse.php | 2 +-
src/gen/lib/Model/GetOpportunityResponse.php | 2 +-
src/gen/lib/Model/GetOrderResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypeResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypesResponse.php | 2 +-
src/gen/lib/Model/GetOrdersResponse.php | 2 +-
src/gen/lib/Model/GetPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetPayrollResponse.php | 2 +-
src/gen/lib/Model/GetPayrollsResponse.php | 2 +-
src/gen/lib/Model/GetPipelineResponse.php | 2 +-
src/gen/lib/Model/GetPipelinesResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetProductResponse.php | 2 +-
src/gen/lib/Model/GetProductsResponse.php | 2 +-
.../lib/Model/GetProfitAndLossResponse.php | 2 +-
.../lib/Model/GetPurchaseOrderResponse.php | 2 +-
.../lib/Model/GetPurchaseOrdersResponse.php | 2 +-
.../lib/Model/GetResourceExampleResponse.php | 2 +-
.../lib/Model/GetResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinkResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinksResponse.php | 2 +-
src/gen/lib/Model/GetStoreResponse.php | 2 +-
src/gen/lib/Model/GetStoresResponse.php | 2 +-
src/gen/lib/Model/GetSubsidiariesResponse.php | 548 ++++++++
src/gen/lib/Model/GetSubsidiaryResponse.php | 488 ++++++++
src/gen/lib/Model/GetSupplierResponse.php | 2 +-
src/gen/lib/Model/GetSuppliersResponse.php | 2 +-
src/gen/lib/Model/GetTaxRateResponse.php | 2 +-
src/gen/lib/Model/GetTaxRatesResponse.php | 2 +-
src/gen/lib/Model/GetTenderResponse.php | 2 +-
src/gen/lib/Model/GetTendersResponse.php | 2 +-
src/gen/lib/Model/GetTicketResponse.php | 2 +-
src/gen/lib/Model/GetTicketsResponse.php | 2 +-
.../lib/Model/GetTimeOffRequestResponse.php | 2 +-
.../lib/Model/GetTimeOffRequestsResponse.php | 2 +-
.../lib/Model/GetUploadSessionResponse.php | 2 +-
src/gen/lib/Model/GetUserResponse.php | 2 +-
src/gen/lib/Model/GetUsersResponse.php | 2 +-
.../lib/Model/GetWebhookEventLogsResponse.php | 2 +-
src/gen/lib/Model/GetWebhookResponse.php | 2 +-
src/gen/lib/Model/GetWebhooksResponse.php | 2 +-
src/gen/lib/Model/HrisCompany.php | 2 +-
src/gen/lib/Model/HrisEventType.php | 2 +-
src/gen/lib/Model/HrisJob.php | 2 +-
src/gen/lib/Model/HrisJobLocation.php | 2 +-
src/gen/lib/Model/HrisJobs.php | 2 +-
src/gen/lib/Model/IntegrationState.php | 2 +-
src/gen/lib/Model/Invoice.php | 2 +-
src/gen/lib/Model/InvoiceItem.php | 2 +-
src/gen/lib/Model/InvoiceItemSalesDetails.php | 2 +-
src/gen/lib/Model/InvoiceItemsFilter.php | 2 +-
src/gen/lib/Model/InvoiceLineItem.php | 2 +-
src/gen/lib/Model/InvoiceResponse.php | 2 +-
src/gen/lib/Model/InvoicesFilter.php | 2 +-
src/gen/lib/Model/InvoicesSort.php | 2 +-
src/gen/lib/Model/IssueTrackingEventType.php | 2 +-
src/gen/lib/Model/IssuesFilter.php | 2 +-
src/gen/lib/Model/Item.php | 2 +-
src/gen/lib/Model/Job.php | 2 +-
src/gen/lib/Model/JobLinks.php | 2 +-
src/gen/lib/Model/JobSalary.php | 2 +-
src/gen/lib/Model/JobStatus.php | 2 +-
src/gen/lib/Model/JournalEntriesFilter.php | 2 +-
src/gen/lib/Model/JournalEntriesSort.php | 2 +-
src/gen/lib/Model/JournalEntry.php | 2 +-
src/gen/lib/Model/JournalEntryLineItem.php | 2 +-
src/gen/lib/Model/Lead.php | 2 +-
src/gen/lib/Model/LeadEventType.php | 2 +-
src/gen/lib/Model/LeadsFilter.php | 2 +-
src/gen/lib/Model/LeadsSort.php | 2 +-
src/gen/lib/Model/LedgerAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountCategories.php | 2 +-
.../lib/Model/LedgerAccountParentAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountsFilter.php | 2 +-
src/gen/lib/Model/LedgerAccountsSort.php | 2 +-
src/gen/lib/Model/LinkedConnectorResource.php | 2 +-
src/gen/lib/Model/LinkedCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceOrder.php | 2 +-
src/gen/lib/Model/LinkedFolder.php | 2 +-
src/gen/lib/Model/LinkedInvoiceItem.php | 2 +-
src/gen/lib/Model/LinkedLedgerAccount.php | 2 +-
src/gen/lib/Model/LinkedParentCustomer.php | 2 +-
src/gen/lib/Model/LinkedSupplier.php | 2 +-
src/gen/lib/Model/LinkedTaxRate.php | 2 +-
src/gen/lib/Model/LinkedTrackingCategory.php | 2 +-
src/gen/lib/Model/Links.php | 2 +-
src/gen/lib/Model/Location.php | 2 +-
src/gen/lib/Model/Log.php | 2 +-
src/gen/lib/Model/LogOperation.php | 2 +-
src/gen/lib/Model/LogService.php | 2 +-
src/gen/lib/Model/LogsFilter.php | 2 +-
src/gen/lib/Model/Merchant.php | 2 +-
src/gen/lib/Model/Message.php | 2 +-
src/gen/lib/Model/Meta.php | 2 +-
src/gen/lib/Model/MetaCursors.php | 2 +-
src/gen/lib/Model/ModelInterface.php | 2 +-
src/gen/lib/Model/Modifier.php | 2 +-
src/gen/lib/Model/ModifierGroup.php | 2 +-
src/gen/lib/Model/ModifierGroupFilter.php | 2 +-
src/gen/lib/Model/NotFoundResponse.php | 2 +-
src/gen/lib/Model/NotImplementedResponse.php | 2 +-
src/gen/lib/Model/Note.php | 2 +-
src/gen/lib/Model/OAuthGrantType.php | 2 +-
src/gen/lib/Model/Offer.php | 2 +-
src/gen/lib/Model/OpportunitiesFilter.php | 2 +-
src/gen/lib/Model/OpportunitiesSort.php | 2 +-
src/gen/lib/Model/Opportunity.php | 2 +-
src/gen/lib/Model/Order.php | 2 +-
src/gen/lib/Model/OrderCustomers.php | 2 +-
src/gen/lib/Model/OrderDiscounts.php | 2 +-
src/gen/lib/Model/OrderFulfillments.php | 2 +-
src/gen/lib/Model/OrderLineItems.php | 2 +-
src/gen/lib/Model/OrderPayments.php | 2 +-
src/gen/lib/Model/OrderPickupDetails.php | 2 +-
...rderPickupDetailsCurbsidePickupDetails.php | 2 +-
.../lib/Model/OrderPickupDetailsRecipient.php | 2 +-
src/gen/lib/Model/OrderRefunds.php | 2 +-
src/gen/lib/Model/OrderTenders.php | 2 +-
src/gen/lib/Model/OrderType.php | 2 +-
src/gen/lib/Model/Owner.php | 2 +-
src/gen/lib/Model/PaginationCoverage.php | 2 +-
src/gen/lib/Model/PassThroughQuery.php | 2 +-
src/gen/lib/Model/Payment.php | 2 +-
src/gen/lib/Model/PaymentAllocations.php | 2 +-
src/gen/lib/Model/PaymentCard.php | 2 +-
src/gen/lib/Model/PaymentFrequency.php | 2 +-
src/gen/lib/Model/PaymentRequiredResponse.php | 2 +-
src/gen/lib/Model/PaymentUnit.php | 2 +-
src/gen/lib/Model/PaymentsFilter.php | 2 +-
src/gen/lib/Model/PaymentsSort.php | 2 +-
src/gen/lib/Model/Payroll.php | 2 +-
src/gen/lib/Model/PayrollTotals.php | 2 +-
src/gen/lib/Model/PayrollsFilter.php | 2 +-
src/gen/lib/Model/Person.php | 2 +-
src/gen/lib/Model/PhoneNumber.php | 2 +-
src/gen/lib/Model/Pipeline.php | 2 +-
src/gen/lib/Model/PipelineStages.php | 2 +-
src/gen/lib/Model/PosBankAccount.php | 2 +-
.../lib/Model/PosBankAccountAchDetails.php | 2 +-
src/gen/lib/Model/PosPayment.php | 2 +-
src/gen/lib/Model/PosPaymentCardDetails.php | 2 +-
.../lib/Model/PosPaymentExternalDetails.php | 2 +-
src/gen/lib/Model/Price.php | 2 +-
src/gen/lib/Model/ProbationPeriod.php | 2 +-
src/gen/lib/Model/ProfitAndLoss.php | 2 +-
src/gen/lib/Model/ProfitAndLossExpenses.php | 2 +-
src/gen/lib/Model/ProfitAndLossFilter.php | 2 +-
.../lib/Model/ProfitAndLossGrossProfit.php | 2 +-
src/gen/lib/Model/ProfitAndLossIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossNetIncome.php | 2 +-
.../Model/ProfitAndLossNetOperatingIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossRecord.php | 2 +-
src/gen/lib/Model/ProfitAndLossSection.php | 2 +-
src/gen/lib/Model/PurchaseOrder.php | 2 +-
src/gen/lib/Model/PurchaseOrdersFilter.php | 2 +-
src/gen/lib/Model/PurchaseOrdersSort.php | 2 +-
src/gen/lib/Model/RequestCountAllocation.php | 2 +-
src/gen/lib/Model/RequestRate.php | 2 +-
src/gen/lib/Model/ResolveWebhookResponse.php | 2 +-
src/gen/lib/Model/ResourceExample.php | 2 +-
src/gen/lib/Model/ResourceStatus.php | 2 +-
src/gen/lib/Model/Schedule.php | 2 +-
src/gen/lib/Model/ScheduleWorkPattern.php | 2 +-
.../lib/Model/ScheduleWorkPatternOddWeeks.php | 2 +-
src/gen/lib/Model/SchemaSupport.php | 2 +-
src/gen/lib/Model/ServiceCharge.php | 2 +-
src/gen/lib/Model/Session.php | 2 +-
src/gen/lib/Model/SessionSettings.php | 2 +-
src/gen/lib/Model/SessionTheme.php | 2 +-
src/gen/lib/Model/SharedLink.php | 2 +-
src/gen/lib/Model/SharedLinkTarget.php | 2 +-
src/gen/lib/Model/SimpleFormFieldOption.php | 2 +-
src/gen/lib/Model/SocialLink.php | 2 +-
src/gen/lib/Model/SortDirection.php | 2 +-
src/gen/lib/Model/Status.php | 2 +-
src/gen/lib/Model/Subsidiary.php | 624 ++++++++++
src/gen/lib/Model/Supplier.php | 2 +-
src/gen/lib/Model/SuppliersFilter.php | 2 +-
src/gen/lib/Model/SuppliersSort.php | 2 +-
src/gen/lib/Model/SupportedProperty.php | 2 +-
src/gen/lib/Model/Tax.php | 2 +-
src/gen/lib/Model/TaxRate.php | 2 +-
src/gen/lib/Model/TaxRatesFilter.php | 2 +-
src/gen/lib/Model/Team.php | 2 +-
src/gen/lib/Model/Tender.php | 2 +-
src/gen/lib/Model/Ticket.php | 2 +-
src/gen/lib/Model/TicketsSort.php | 2 +-
src/gen/lib/Model/TimeOffRequest.php | 2 +-
src/gen/lib/Model/TimeOffRequestNotes.php | 2 +-
src/gen/lib/Model/TimeOffRequestsFilter.php | 2 +-
src/gen/lib/Model/TooManyRequestsResponse.php | 2 +-
.../Model/TooManyRequestsResponseDetail.php | 2 +-
src/gen/lib/Model/TrackingItem.php | 2 +-
src/gen/lib/Model/UnauthorizedResponse.php | 2 +-
src/gen/lib/Model/UnexpectedErrorResponse.php | 2 +-
src/gen/lib/Model/UnifiedApiId.php | 2 +-
src/gen/lib/Model/UnifiedFile.php | 2 +-
src/gen/lib/Model/UnifiedFilePermissions.php | 2 +-
src/gen/lib/Model/UnifiedId.php | 2 +-
src/gen/lib/Model/UnprocessableResponse.php | 2 +-
src/gen/lib/Model/UpdateActivityResponse.php | 2 +-
src/gen/lib/Model/UpdateApplicantResponse.php | 2 +-
.../lib/Model/UpdateApplicationResponse.php | 2 +-
src/gen/lib/Model/UpdateBillResponse.php | 2 +-
src/gen/lib/Model/UpdateCommentResponse.php | 2 +-
src/gen/lib/Model/UpdateCompanyResponse.php | 2 +-
.../lib/Model/UpdateConnectionResponse.php | 2 +-
src/gen/lib/Model/UpdateConsumerRequest.php | 2 +-
src/gen/lib/Model/UpdateConsumerResponse.php | 2 +-
src/gen/lib/Model/UpdateContactResponse.php | 2 +-
.../lib/Model/UpdateCreditNoteResponse.php | 2 +-
.../lib/Model/UpdateCustomMappingRequest.php | 2 +-
.../lib/Model/UpdateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/UpdateCustomerResponse.php | 2 +-
.../lib/Model/UpdateDepartmentResponse.php | 2 +-
.../lib/Model/UpdateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateDriveResponse.php | 2 +-
.../Model/UpdateEcommerceCustomerResponse.php | 2 +-
.../Model/UpdateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateEmployeeResponse.php | 2 +-
src/gen/lib/Model/UpdateFileRequest.php | 2 +-
src/gen/lib/Model/UpdateFileResponse.php | 2 +-
src/gen/lib/Model/UpdateFolderRequest.php | 2 +-
src/gen/lib/Model/UpdateFolderResponse.php | 2 +-
.../lib/Model/UpdateHrisCompanyResponse.php | 2 +-
.../lib/Model/UpdateInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/UpdateInvoiceResponse.php | 2 +-
src/gen/lib/Model/UpdateItemResponse.php | 2 +-
src/gen/lib/Model/UpdateJobResponse.php | 2 +-
.../lib/Model/UpdateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/UpdateLeadResponse.php | 2 +-
.../lib/Model/UpdateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/UpdateLocationResponse.php | 2 +-
src/gen/lib/Model/UpdateMerchantResponse.php | 2 +-
src/gen/lib/Model/UpdateMessageResponse.php | 2 +-
.../lib/Model/UpdateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateModifierResponse.php | 2 +-
src/gen/lib/Model/UpdateNoteResponse.php | 2 +-
.../lib/Model/UpdateOpportunityResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/UpdatePaymentResponse.php | 2 +-
src/gen/lib/Model/UpdatePipelineResponse.php | 2 +-
.../lib/Model/UpdatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/UpdateProductResponse.php | 2 +-
.../lib/Model/UpdatePurchaseOrderResponse.php | 2 +-
.../lib/Model/UpdateSharedLinkResponse.php | 2 +-
src/gen/lib/Model/UpdateSupplierResponse.php | 2 +-
src/gen/lib/Model/UpdateTaxRateResponse.php | 2 +-
src/gen/lib/Model/UpdateTenderResponse.php | 2 +-
src/gen/lib/Model/UpdateTicketResponse.php | 2 +-
.../Model/UpdateTimeOffRequestResponse.php | 2 +-
.../lib/Model/UpdateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/UpdateUserResponse.php | 2 +-
src/gen/lib/Model/UpdateWebhookRequest.php | 2 +-
src/gen/lib/Model/UpdateWebhookResponse.php | 2 +-
src/gen/lib/Model/UploadSession.php | 2 +-
src/gen/lib/Model/User.php | 2 +-
src/gen/lib/Model/VaultEventType.php | 2 +-
src/gen/lib/Model/VirtualWebhooks.php | 2 +-
src/gen/lib/Model/WalletDetails.php | 2 +-
src/gen/lib/Model/Webhook.php | 2 +-
src/gen/lib/Model/WebhookEvent.php | 2 +-
src/gen/lib/Model/WebhookEventLog.php | 2 +-
src/gen/lib/Model/WebhookEventLogAttempts.php | 2 +-
src/gen/lib/Model/WebhookEventLogService.php | 2 +-
src/gen/lib/Model/WebhookEventLogsFilter.php | 2 +-
.../Model/WebhookEventLogsFilterService.php | 2 +-
src/gen/lib/Model/WebhookEventType.php | 2 +-
src/gen/lib/Model/WebhookSubscription.php | 2 +-
src/gen/lib/Model/WebhookSupport.php | 2 +-
src/gen/lib/Model/Website.php | 2 +-
src/gen/lib/ObjectSerializer.php | 2 +-
src/gen/test/Api/AccountingApiTest.php | 26 +-
src/gen/test/Api/AtsApiTest.php | 2 +-
src/gen/test/Api/ConnectorApiTest.php | 2 +-
src/gen/test/Api/CrmApiTest.php | 2 +-
src/gen/test/Api/EcommerceApiTest.php | 2 +-
src/gen/test/Api/FileStorageApiTest.php | 2 +-
src/gen/test/Api/HrisApiTest.php | 2 +-
src/gen/test/Api/IssueTrackingApiTest.php | 2 +-
src/gen/test/Api/LeadApiTest.php | 2 +-
src/gen/test/Api/PosApiTest.php | 2 +-
src/gen/test/Api/SmsApiTest.php | 2 +-
src/gen/test/Api/VaultApiTest.php | 2 +-
src/gen/test/Api/WebhookApiTest.php | 2 +-
.../test/Model/AccountingEventTypeTest.php | 2 +-
src/gen/test/Model/ActivitiesFilterTest.php | 2 +-
src/gen/test/Model/ActivitiesSortTest.php | 2 +-
src/gen/test/Model/ActivityAttendeeTest.php | 2 +-
src/gen/test/Model/ActivityTest.php | 2 +-
src/gen/test/Model/AddressTest.php | 2 +-
.../Model/ApiResourceCoverageCoverageTest.php | 2 +-
.../test/Model/ApiResourceCoverageTest.php | 2 +-
.../Model/ApiResourceLinkedResourcesTest.php | 2 +-
src/gen/test/Model/ApiResourceTest.php | 2 +-
src/gen/test/Model/ApiResourcesTest.php | 2 +-
src/gen/test/Model/ApiStatusTest.php | 2 +-
src/gen/test/Model/ApiTest.php | 2 +-
src/gen/test/Model/ApisFilterTest.php | 2 +-
.../test/Model/ApplicantSocialLinksTest.php | 2 +-
src/gen/test/Model/ApplicantTest.php | 2 +-
src/gen/test/Model/ApplicantWebsitesTest.php | 2 +-
src/gen/test/Model/ApplicantsFilterTest.php | 2 +-
src/gen/test/Model/ApplicationStageTest.php | 2 +-
src/gen/test/Model/ApplicationTest.php | 2 +-
src/gen/test/Model/AssigneeTest.php | 2 +-
src/gen/test/Model/AtsActivityTest.php | 2 +-
src/gen/test/Model/AtsEventTypeTest.php | 2 +-
src/gen/test/Model/AuthTypeTest.php | 2 +-
src/gen/test/Model/BadRequestResponseTest.php | 2 +-
...ceSheetAssetsCurrentAssetsAccountsTest.php | 2 +-
.../BalanceSheetAssetsCurrentAssetsTest.php | 2 +-
...anceSheetAssetsFixedAssetsAccountsTest.php | 2 +-
.../BalanceSheetAssetsFixedAssetsTest.php | 2 +-
src/gen/test/Model/BalanceSheetAssetsTest.php | 2 +-
.../Model/BalanceSheetEquityItemsTest.php | 2 +-
src/gen/test/Model/BalanceSheetEquityTest.php | 2 +-
src/gen/test/Model/BalanceSheetFilterTest.php | 2 +-
.../BalanceSheetLiabilitiesAccountsTest.php | 2 +-
.../Model/BalanceSheetLiabilitiesTest.php | 2 +-
src/gen/test/Model/BalanceSheetTest.php | 2 +-
src/gen/test/Model/BankAccountTest.php | 2 +-
src/gen/test/Model/BenefitTest.php | 2 +-
src/gen/test/Model/BillLineItemTest.php | 2 +-
src/gen/test/Model/BillTest.php | 2 +-
src/gen/test/Model/BillsFilterTest.php | 2 +-
src/gen/test/Model/BillsSortTest.php | 2 +-
src/gen/test/Model/BranchTest.php | 2 +-
src/gen/test/Model/CashDetailsTest.php | 2 +-
src/gen/test/Model/CollectionTagTest.php | 2 +-
src/gen/test/Model/CollectionTest.php | 2 +-
.../Model/CollectionTicketCommentTest.php | 2 +-
src/gen/test/Model/CollectionUserTest.php | 2 +-
src/gen/test/Model/CollectionsSortTest.php | 2 +-
src/gen/test/Model/CommentsSortTest.php | 2 +-
src/gen/test/Model/CompaniesFilterTest.php | 2 +-
src/gen/test/Model/CompaniesSortTest.php | 2 +-
src/gen/test/Model/CompanyInfoTest.php | 2 +-
src/gen/test/Model/CompanyRowTypeTest.php | 2 +-
src/gen/test/Model/CompanyTest.php | 2 +-
src/gen/test/Model/CompensationTest.php | 2 +-
.../Model/ConnectionConfigurationTest.php | 2 +-
src/gen/test/Model/ConnectionDefaultsTest.php | 2 +-
.../ConnectionImportDataCredentialsTest.php | 2 +-
.../test/Model/ConnectionImportDataTest.php | 2 +-
src/gen/test/Model/ConnectionMetadataTest.php | 2 +-
src/gen/test/Model/ConnectionStateTest.php | 2 +-
src/gen/test/Model/ConnectionTest.php | 2 +-
src/gen/test/Model/ConnectionWebhookTest.php | 2 +-
src/gen/test/Model/ConnectorDocTest.php | 2 +-
src/gen/test/Model/ConnectorEventTest.php | 2 +-
.../test/Model/ConnectorOauthScopes1Test.php | 2 +-
.../test/Model/ConnectorOauthScopesTest.php | 2 +-
src/gen/test/Model/ConnectorResourceTest.php | 2 +-
src/gen/test/Model/ConnectorSettingTest.php | 2 +-
src/gen/test/Model/ConnectorStatusTest.php | 2 +-
src/gen/test/Model/ConnectorTest.php | 2 +-
.../test/Model/ConnectorTlsSupportTest.php | 2 +-
.../test/Model/ConnectorUnifiedApisTest.php | 2 +-
src/gen/test/Model/ConnectorsFilterTest.php | 2 +-
src/gen/test/Model/ConsumerConnectionTest.php | 2 +-
src/gen/test/Model/ConsumerMetadataTest.php | 2 +-
...questCountsInDateRangeResponseDataTest.php | 2 +-
...erRequestCountsInDateRangeResponseTest.php | 2 +-
src/gen/test/Model/ConsumerTest.php | 2 +-
src/gen/test/Model/ContactTest.php | 2 +-
src/gen/test/Model/ContactsFilterTest.php | 2 +-
src/gen/test/Model/ContactsSortTest.php | 2 +-
src/gen/test/Model/CopyFolderRequestTest.php | 2 +-
.../test/Model/CreateActivityResponseTest.php | 2 +-
.../Model/CreateApplicantResponseTest.php | 2 +-
.../Model/CreateApplicationResponseTest.php | 2 +-
src/gen/test/Model/CreateBillResponseTest.php | 2 +-
.../test/Model/CreateCommentResponseTest.php | 2 +-
.../test/Model/CreateCompanyResponseTest.php | 2 +-
.../Model/CreateConnectionResponseTest.php | 2 +-
.../test/Model/CreateConsumerResponseTest.php | 2 +-
.../test/Model/CreateContactResponseTest.php | 2 +-
.../Model/CreateCreditNoteResponseTest.php | 2 +-
.../Model/CreateCustomMappingRequestTest.php | 2 +-
.../Model/CreateCustomMappingResponseTest.php | 2 +-
.../test/Model/CreateCustomerResponseTest.php | 2 +-
.../Model/CreateDepartmentResponseTest.php | 2 +-
.../Model/CreateDriveGroupResponseTest.php | 2 +-
.../test/Model/CreateDriveResponseTest.php | 2 +-
.../CreateEcommerceCustomerResponseTest.php | 2 +-
.../CreateEcommerceOrderResponseTest.php | 2 +-
.../test/Model/CreateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/CreateFileRequestTest.php | 2 +-
src/gen/test/Model/CreateFileResponseTest.php | 2 +-
.../test/Model/CreateFolderRequestTest.php | 2 +-
.../test/Model/CreateFolderResponseTest.php | 2 +-
.../Model/CreateHrisCompanyResponseTest.php | 2 +-
.../Model/CreateInvoiceItemResponseTest.php | 2 +-
.../test/Model/CreateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/CreateItemResponseTest.php | 2 +-
src/gen/test/Model/CreateJobResponseTest.php | 2 +-
.../Model/CreateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/CreateLeadResponseTest.php | 2 +-
.../Model/CreateLedgerAccountResponseTest.php | 2 +-
.../test/Model/CreateLocationResponseTest.php | 2 +-
.../test/Model/CreateMerchantResponseTest.php | 2 +-
.../test/Model/CreateMessageResponseTest.php | 2 +-
.../Model/CreateModifierGroupResponseTest.php | 2 +-
.../test/Model/CreateModifierResponseTest.php | 2 +-
src/gen/test/Model/CreateNoteResponseTest.php | 2 +-
.../Model/CreateOpportunityResponseTest.php | 2 +-
.../test/Model/CreateOrderResponseTest.php | 2 +-
.../Model/CreateOrderTypeResponseTest.php | 2 +-
.../test/Model/CreatePaymentResponseTest.php | 2 +-
.../test/Model/CreatePipelineResponseTest.php | 2 +-
.../Model/CreatePosPaymentResponseTest.php | 2 +-
.../test/Model/CreateProductResponseTest.php | 2 +-
.../Model/CreatePurchaseOrderResponseTest.php | 2 +-
.../Model/CreateSessionResponseDataTest.php | 2 +-
.../test/Model/CreateSessionResponseTest.php | 2 +-
.../Model/CreateSharedLinkResponseTest.php | 2 +-
.../test/Model/CreateSupplierResponseTest.php | 2 +-
.../test/Model/CreateTaxRateResponseTest.php | 2 +-
.../test/Model/CreateTenderResponseTest.php | 2 +-
.../test/Model/CreateTicketResponseTest.php | 2 +-
.../CreateTimeOffRequestResponseTest.php | 2 +-
.../Model/CreateUploadSessionRequestTest.php | 2 +-
.../Model/CreateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/CreateUserResponseTest.php | 2 +-
.../test/Model/CreateWebhookRequestTest.php | 2 +-
.../test/Model/CreateWebhookResponseTest.php | 2 +-
src/gen/test/Model/CreditNoteTest.php | 2 +-
src/gen/test/Model/CreditNotesFilterTest.php | 2 +-
src/gen/test/Model/CreditNotesSortTest.php | 2 +-
src/gen/test/Model/CrmEventTypeTest.php | 2 +-
src/gen/test/Model/CurrencyTest.php | 2 +-
src/gen/test/Model/CustomFieldFinderTest.php | 2 +-
src/gen/test/Model/CustomFieldTest.php | 2 +-
src/gen/test/Model/CustomMappingTest.php | 2 +-
src/gen/test/Model/CustomerTest.php | 2 +-
src/gen/test/Model/CustomersFilterTest.php | 2 +-
src/gen/test/Model/CustomersSortTest.php | 2 +-
src/gen/test/Model/DeductionTest.php | 2 +-
.../test/Model/DeleteActivityResponseTest.php | 2 +-
.../Model/DeleteApplicantResponseTest.php | 2 +-
.../Model/DeleteApplicationResponseTest.php | 2 +-
src/gen/test/Model/DeleteBillResponseTest.php | 2 +-
.../test/Model/DeleteCommentResponseTest.php | 2 +-
.../test/Model/DeleteCompanyResponseTest.php | 2 +-
.../test/Model/DeleteConsumerResponseTest.php | 2 +-
.../test/Model/DeleteContactResponseTest.php | 2 +-
.../Model/DeleteCreditNoteResponseTest.php | 2 +-
.../test/Model/DeleteCustomerResponseTest.php | 2 +-
.../Model/DeleteDepartmentResponseTest.php | 2 +-
.../Model/DeleteDriveGroupResponseTest.php | 2 +-
.../test/Model/DeleteDriveResponseTest.php | 2 +-
.../DeleteEcommerceCustomerResponseTest.php | 2 +-
.../DeleteEcommerceOrderResponseTest.php | 2 +-
.../test/Model/DeleteEmployeeResponseTest.php | 2 +-
src/gen/test/Model/DeleteFileResponseTest.php | 2 +-
.../test/Model/DeleteFolderResponseTest.php | 2 +-
.../Model/DeleteHrisCompanyResponseTest.php | 2 +-
.../test/Model/DeleteInvoiceResponseTest.php | 2 +-
src/gen/test/Model/DeleteItemResponseTest.php | 2 +-
src/gen/test/Model/DeleteJobResponseTest.php | 2 +-
.../Model/DeleteJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/DeleteLeadResponseTest.php | 2 +-
.../Model/DeleteLedgerAccountResponseTest.php | 2 +-
.../test/Model/DeleteLocationResponseTest.php | 2 +-
.../test/Model/DeleteMerchantResponseTest.php | 2 +-
.../test/Model/DeleteMessageResponseTest.php | 2 +-
.../Model/DeleteModifierGroupResponseTest.php | 2 +-
.../test/Model/DeleteModifierResponseTest.php | 2 +-
src/gen/test/Model/DeleteNoteResponseTest.php | 2 +-
.../Model/DeleteOpportunityResponseTest.php | 2 +-
.../test/Model/DeleteOrderResponseTest.php | 2 +-
.../Model/DeleteOrderTypeResponseTest.php | 2 +-
.../test/Model/DeletePaymentResponseTest.php | 2 +-
.../test/Model/DeletePipelineResponseTest.php | 2 +-
.../Model/DeletePosPaymentResponseTest.php | 2 +-
.../test/Model/DeleteProductResponseTest.php | 2 +-
.../Model/DeletePurchaseOrderResponseTest.php | 2 +-
.../Model/DeleteSharedLinkResponseTest.php | 2 +-
.../test/Model/DeleteSupplierResponseTest.php | 2 +-
.../test/Model/DeleteTaxRateResponseTest.php | 2 +-
.../test/Model/DeleteTenderResponseTest.php | 2 +-
.../test/Model/DeleteTicketResponseTest.php | 2 +-
.../DeleteTimeOffRequestResponseTest.php | 2 +-
.../Model/DeleteUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/DeleteUserResponseTest.php | 2 +-
.../test/Model/DeleteWebhookResponseTest.php | 2 +-
src/gen/test/Model/DepartmentTest.php | 2 +-
src/gen/test/Model/DriveGroupTest.php | 2 +-
src/gen/test/Model/DriveGroupsFilterTest.php | 2 +-
src/gen/test/Model/DriveTest.php | 2 +-
src/gen/test/Model/DrivesFilterTest.php | 2 +-
src/gen/test/Model/EcommerceAddressTest.php | 2 +-
.../Model/EcommerceCustomerAddressesTest.php | 2 +-
src/gen/test/Model/EcommerceCustomerTest.php | 2 +-
.../Model/EcommerceCustomersFilterTest.php | 2 +-
src/gen/test/Model/EcommerceDiscountTest.php | 2 +-
.../test/Model/EcommerceOrderLineItemTest.php | 2 +-
.../test/Model/EcommerceOrderStatusTest.php | 2 +-
src/gen/test/Model/EcommerceOrderTest.php | 2 +-
.../test/Model/EcommerceOrdersFilterTest.php | 2 +-
.../Model/EcommerceProductCategoriesTest.php | 2 +-
.../Model/EcommerceProductImages1Test.php | 2 +-
.../test/Model/EcommerceProductImagesTest.php | 2 +-
.../Model/EcommerceProductOptions1Test.php | 2 +-
.../Model/EcommerceProductOptionsTest.php | 2 +-
src/gen/test/Model/EcommerceProductTest.php | 2 +-
.../Model/EcommerceProductVariantsTest.php | 2 +-
src/gen/test/Model/EcommerceStoreTest.php | 2 +-
src/gen/test/Model/EmailTest.php | 2 +-
.../test/Model/EmployeeCompensationTest.php | 2 +-
.../test/Model/EmployeeEmploymentRoleTest.php | 2 +-
src/gen/test/Model/EmployeeJobTest.php | 2 +-
src/gen/test/Model/EmployeeListTest.php | 2 +-
src/gen/test/Model/EmployeeManagerTest.php | 2 +-
src/gen/test/Model/EmployeePayrollTest.php | 2 +-
src/gen/test/Model/EmployeeSchedulesTest.php | 2 +-
src/gen/test/Model/EmployeeTest.php | 2 +-
src/gen/test/Model/EmployeesFilterTest.php | 2 +-
src/gen/test/Model/EmployeesSortTest.php | 2 +-
src/gen/test/Model/EmploymentStatusTest.php | 2 +-
src/gen/test/Model/ErrorTest.php | 2 +-
.../test/Model/ExecuteWebhookResponseTest.php | 2 +-
.../test/Model/FileStorageEventTypeTest.php | 2 +-
src/gen/test/Model/FileTypeTest.php | 2 +-
src/gen/test/Model/FilesFilterTest.php | 2 +-
src/gen/test/Model/FilesSearchTest.php | 2 +-
src/gen/test/Model/FilesSortTest.php | 2 +-
src/gen/test/Model/FolderTest.php | 2 +-
.../test/Model/FormFieldOptionGroupTest.php | 2 +-
src/gen/test/Model/FormFieldOptionTest.php | 2 +-
src/gen/test/Model/FormFieldTest.php | 2 +-
src/gen/test/Model/GenderTest.php | 2 +-
.../test/Model/GetActivitiesResponseTest.php | 2 +-
.../test/Model/GetActivityResponseTest.php | 2 +-
.../GetApiResourceCoverageResponseTest.php | 2 +-
.../test/Model/GetApiResourceResponseTest.php | 2 +-
src/gen/test/Model/GetApiResponseTest.php | 2 +-
src/gen/test/Model/GetApisResponseTest.php | 2 +-
.../test/Model/GetApplicantResponseTest.php | 2 +-
.../test/Model/GetApplicantsResponseTest.php | 2 +-
.../test/Model/GetApplicationResponseTest.php | 2 +-
.../Model/GetApplicationsResponseTest.php | 2 +-
.../Model/GetBalanceSheetResponseTest.php | 2 +-
src/gen/test/Model/GetBillResponseTest.php | 2 +-
src/gen/test/Model/GetBillsResponseTest.php | 2 +-
.../test/Model/GetCollectionResponseTest.php | 2 +-
.../Model/GetCollectionTagsResponseTest.php | 2 +-
.../Model/GetCollectionUserResponseTest.php | 2 +-
.../Model/GetCollectionUsersResponseTest.php | 2 +-
.../test/Model/GetCollectionsResponseTest.php | 2 +-
src/gen/test/Model/GetCommentResponseTest.php | 2 +-
.../test/Model/GetCommentsResponseTest.php | 2 +-
.../test/Model/GetCompaniesResponseTest.php | 2 +-
.../test/Model/GetCompanyInfoResponseTest.php | 2 +-
src/gen/test/Model/GetCompanyResponseTest.php | 2 +-
.../test/Model/GetConnectionResponseTest.php | 2 +-
.../test/Model/GetConnectionsResponseTest.php | 2 +-
...nnectorResourceExampleResponseDataTest.php | 2 +-
...etConnectorResourceExampleResponseTest.php | 2 +-
.../GetConnectorResourceResponseTest.php | 2 +-
...GetConnectorResourceSchemaResponseTest.php | 2 +-
.../test/Model/GetConnectorResponseTest.php | 2 +-
.../test/Model/GetConnectorsResponseTest.php | 2 +-
.../test/Model/GetConsumerResponseTest.php | 2 +-
.../Model/GetConsumersResponseDataTest.php | 2 +-
.../test/Model/GetConsumersResponseTest.php | 2 +-
src/gen/test/Model/GetContactResponseTest.php | 2 +-
.../test/Model/GetContactsResponseTest.php | 2 +-
.../test/Model/GetCreditNoteResponseTest.php | 2 +-
.../test/Model/GetCreditNotesResponseTest.php | 2 +-
.../Model/GetCustomFieldsResponseTest.php | 2 +-
.../Model/GetCustomMappingResponseTest.php | 2 +-
.../test/Model/GetCustomerResponseTest.php | 2 +-
.../test/Model/GetCustomersResponseTest.php | 2 +-
.../test/Model/GetDepartmentResponseTest.php | 2 +-
.../test/Model/GetDepartmentsResponseTest.php | 2 +-
.../test/Model/GetDriveGroupResponseTest.php | 2 +-
.../test/Model/GetDriveGroupsResponseTest.php | 2 +-
src/gen/test/Model/GetDriveResponseTest.php | 2 +-
src/gen/test/Model/GetDrivesResponseTest.php | 2 +-
.../GetEcommerceCustomerResponseTest.php | 2 +-
.../GetEcommerceCustomersResponseTest.php | 2 +-
.../Model/GetEcommerceOrderResponseTest.php | 2 +-
.../Model/GetEcommerceOrdersResponseTest.php | 2 +-
.../Model/GetEmployeePayrollResponseTest.php | 2 +-
.../Model/GetEmployeePayrollsResponseTest.php | 2 +-
.../test/Model/GetEmployeeResponseTest.php | 2 +-
.../GetEmployeeSchedulesResponseTest.php | 2 +-
.../test/Model/GetEmployeesResponseTest.php | 2 +-
src/gen/test/Model/GetFileResponseTest.php | 2 +-
src/gen/test/Model/GetFilesResponseTest.php | 2 +-
src/gen/test/Model/GetFolderResponseTest.php | 2 +-
src/gen/test/Model/GetFoldersResponseTest.php | 2 +-
.../Model/GetHrisCompaniesResponseTest.php | 2 +-
.../test/Model/GetHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/GetHrisJobResponseTest.php | 2 +-
.../test/Model/GetHrisJobsResponseTest.php | 2 +-
.../test/Model/GetInvoiceItemResponseTest.php | 2 +-
.../Model/GetInvoiceItemsResponseTest.php | 2 +-
src/gen/test/Model/GetInvoiceResponseTest.php | 2 +-
.../test/Model/GetInvoicesResponseTest.php | 2 +-
src/gen/test/Model/GetItemResponseTest.php | 2 +-
src/gen/test/Model/GetItemsResponseTest.php | 2 +-
src/gen/test/Model/GetJobResponseTest.php | 2 +-
src/gen/test/Model/GetJobsResponseTest.php | 2 +-
.../Model/GetJournalEntriesResponseTest.php | 2 +-
.../Model/GetJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/GetLeadResponseTest.php | 2 +-
src/gen/test/Model/GetLeadsResponseTest.php | 2 +-
.../Model/GetLedgerAccountResponseTest.php | 2 +-
.../Model/GetLedgerAccountsResponseTest.php | 2 +-
.../test/Model/GetLocationResponseTest.php | 2 +-
.../test/Model/GetLocationsResponseTest.php | 2 +-
src/gen/test/Model/GetLogsResponseTest.php | 2 +-
.../test/Model/GetMerchantResponseTest.php | 2 +-
.../test/Model/GetMerchantsResponseTest.php | 2 +-
src/gen/test/Model/GetMessageResponseTest.php | 2 +-
.../test/Model/GetMessagesResponseTest.php | 2 +-
.../Model/GetModifierGroupResponseTest.php | 2 +-
.../Model/GetModifierGroupsResponseTest.php | 2 +-
.../test/Model/GetModifierResponseTest.php | 2 +-
.../test/Model/GetModifiersResponseTest.php | 2 +-
src/gen/test/Model/GetNoteResponseTest.php | 2 +-
src/gen/test/Model/GetNotesResponseTest.php | 2 +-
.../Model/GetOpportunitiesResponseTest.php | 2 +-
.../test/Model/GetOpportunityResponseTest.php | 2 +-
src/gen/test/Model/GetOrderResponseTest.php | 2 +-
.../test/Model/GetOrderTypeResponseTest.php | 2 +-
.../test/Model/GetOrderTypesResponseTest.php | 2 +-
src/gen/test/Model/GetOrdersResponseTest.php | 2 +-
src/gen/test/Model/GetPaymentResponseTest.php | 2 +-
.../test/Model/GetPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetPayrollResponseTest.php | 2 +-
.../test/Model/GetPayrollsResponseTest.php | 2 +-
.../test/Model/GetPipelineResponseTest.php | 2 +-
.../test/Model/GetPipelinesResponseTest.php | 2 +-
.../test/Model/GetPosPaymentResponseTest.php | 2 +-
.../test/Model/GetPosPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetProductResponseTest.php | 2 +-
.../test/Model/GetProductsResponseTest.php | 2 +-
.../Model/GetProfitAndLossResponseTest.php | 2 +-
.../Model/GetPurchaseOrderResponseTest.php | 2 +-
.../Model/GetPurchaseOrdersResponseTest.php | 2 +-
.../Model/GetResourceExampleResponseTest.php | 2 +-
.../Model/GetResourceSchemaResponseTest.php | 2 +-
.../test/Model/GetSharedLinkResponseTest.php | 2 +-
.../test/Model/GetSharedLinksResponseTest.php | 2 +-
src/gen/test/Model/GetStoreResponseTest.php | 2 +-
src/gen/test/Model/GetStoresResponseTest.php | 2 +-
.../Model/GetSubsidiariesResponseTest.php | 153 +++
.../test/Model/GetSubsidiaryResponseTest.php | 135 ++
.../test/Model/GetSupplierResponseTest.php | 2 +-
.../test/Model/GetSuppliersResponseTest.php | 2 +-
src/gen/test/Model/GetTaxRateResponseTest.php | 2 +-
.../test/Model/GetTaxRatesResponseTest.php | 2 +-
src/gen/test/Model/GetTenderResponseTest.php | 2 +-
src/gen/test/Model/GetTendersResponseTest.php | 2 +-
src/gen/test/Model/GetTicketResponseTest.php | 2 +-
src/gen/test/Model/GetTicketsResponseTest.php | 2 +-
.../Model/GetTimeOffRequestResponseTest.php | 2 +-
.../Model/GetTimeOffRequestsResponseTest.php | 2 +-
.../Model/GetUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/GetUserResponseTest.php | 2 +-
src/gen/test/Model/GetUsersResponseTest.php | 2 +-
.../Model/GetWebhookEventLogsResponseTest.php | 2 +-
src/gen/test/Model/GetWebhookResponseTest.php | 2 +-
.../test/Model/GetWebhooksResponseTest.php | 2 +-
src/gen/test/Model/HrisCompanyTest.php | 2 +-
src/gen/test/Model/HrisEventTypeTest.php | 2 +-
src/gen/test/Model/HrisJobLocationTest.php | 2 +-
src/gen/test/Model/HrisJobTest.php | 2 +-
src/gen/test/Model/HrisJobsTest.php | 2 +-
src/gen/test/Model/IntegrationStateTest.php | 2 +-
.../Model/InvoiceItemSalesDetailsTest.php | 2 +-
src/gen/test/Model/InvoiceItemTest.php | 2 +-
src/gen/test/Model/InvoiceItemsFilterTest.php | 2 +-
src/gen/test/Model/InvoiceLineItemTest.php | 2 +-
src/gen/test/Model/InvoiceResponseTest.php | 2 +-
src/gen/test/Model/InvoiceTest.php | 2 +-
src/gen/test/Model/InvoicesFilterTest.php | 2 +-
src/gen/test/Model/InvoicesSortTest.php | 2 +-
.../test/Model/IssueTrackingEventTypeTest.php | 2 +-
src/gen/test/Model/IssuesFilterTest.php | 2 +-
src/gen/test/Model/ItemTest.php | 2 +-
src/gen/test/Model/JobLinksTest.php | 2 +-
src/gen/test/Model/JobSalaryTest.php | 2 +-
src/gen/test/Model/JobStatusTest.php | 2 +-
src/gen/test/Model/JobTest.php | 2 +-
.../test/Model/JournalEntriesFilterTest.php | 2 +-
src/gen/test/Model/JournalEntriesSortTest.php | 2 +-
.../test/Model/JournalEntryLineItemTest.php | 2 +-
src/gen/test/Model/JournalEntryTest.php | 2 +-
src/gen/test/Model/LeadEventTypeTest.php | 2 +-
src/gen/test/Model/LeadTest.php | 2 +-
src/gen/test/Model/LeadsFilterTest.php | 2 +-
src/gen/test/Model/LeadsSortTest.php | 2 +-
.../Model/LedgerAccountCategoriesTest.php | 2 +-
.../Model/LedgerAccountParentAccountTest.php | 2 +-
src/gen/test/Model/LedgerAccountTest.php | 2 +-
.../test/Model/LedgerAccountsFilterTest.php | 2 +-
src/gen/test/Model/LedgerAccountsSortTest.php | 2 +-
.../Model/LinkedConnectorResourceTest.php | 2 +-
src/gen/test/Model/LinkedCustomerTest.php | 2 +-
.../Model/LinkedEcommerceCustomerTest.php | 2 +-
.../test/Model/LinkedEcommerceOrderTest.php | 2 +-
src/gen/test/Model/LinkedFolderTest.php | 2 +-
src/gen/test/Model/LinkedInvoiceItemTest.php | 2 +-
.../test/Model/LinkedLedgerAccountTest.php | 2 +-
.../test/Model/LinkedParentCustomerTest.php | 2 +-
src/gen/test/Model/LinkedSupplierTest.php | 2 +-
src/gen/test/Model/LinkedTaxRateTest.php | 2 +-
.../test/Model/LinkedTrackingCategoryTest.php | 2 +-
src/gen/test/Model/LinksTest.php | 2 +-
src/gen/test/Model/LocationTest.php | 2 +-
src/gen/test/Model/LogOperationTest.php | 2 +-
src/gen/test/Model/LogServiceTest.php | 2 +-
src/gen/test/Model/LogTest.php | 2 +-
src/gen/test/Model/LogsFilterTest.php | 2 +-
src/gen/test/Model/MerchantTest.php | 2 +-
src/gen/test/Model/MessageTest.php | 2 +-
src/gen/test/Model/MetaCursorsTest.php | 2 +-
src/gen/test/Model/MetaTest.php | 2 +-
.../test/Model/ModifierGroupFilterTest.php | 2 +-
src/gen/test/Model/ModifierGroupTest.php | 2 +-
src/gen/test/Model/ModifierTest.php | 2 +-
src/gen/test/Model/NotFoundResponseTest.php | 2 +-
.../test/Model/NotImplementedResponseTest.php | 2 +-
src/gen/test/Model/NoteTest.php | 2 +-
src/gen/test/Model/OAuthGrantTypeTest.php | 2 +-
src/gen/test/Model/OfferTest.php | 2 +-
.../test/Model/OpportunitiesFilterTest.php | 2 +-
src/gen/test/Model/OpportunitiesSortTest.php | 2 +-
src/gen/test/Model/OpportunityTest.php | 2 +-
src/gen/test/Model/OrderCustomersTest.php | 2 +-
src/gen/test/Model/OrderDiscountsTest.php | 2 +-
src/gen/test/Model/OrderFulfillmentsTest.php | 2 +-
src/gen/test/Model/OrderLineItemsTest.php | 2 +-
src/gen/test/Model/OrderPaymentsTest.php | 2 +-
...PickupDetailsCurbsidePickupDetailsTest.php | 2 +-
.../Model/OrderPickupDetailsRecipientTest.php | 2 +-
src/gen/test/Model/OrderPickupDetailsTest.php | 2 +-
src/gen/test/Model/OrderRefundsTest.php | 2 +-
src/gen/test/Model/OrderTendersTest.php | 2 +-
src/gen/test/Model/OrderTest.php | 2 +-
src/gen/test/Model/OrderTypeTest.php | 2 +-
src/gen/test/Model/OwnerTest.php | 2 +-
src/gen/test/Model/PaginationCoverageTest.php | 2 +-
src/gen/test/Model/PassThroughQueryTest.php | 2 +-
src/gen/test/Model/PaymentAllocationsTest.php | 2 +-
src/gen/test/Model/PaymentCardTest.php | 2 +-
src/gen/test/Model/PaymentFrequencyTest.php | 2 +-
.../Model/PaymentRequiredResponseTest.php | 2 +-
src/gen/test/Model/PaymentTest.php | 2 +-
src/gen/test/Model/PaymentUnitTest.php | 2 +-
src/gen/test/Model/PaymentsFilterTest.php | 2 +-
src/gen/test/Model/PaymentsSortTest.php | 2 +-
src/gen/test/Model/PayrollTest.php | 2 +-
src/gen/test/Model/PayrollTotalsTest.php | 2 +-
src/gen/test/Model/PayrollsFilterTest.php | 2 +-
src/gen/test/Model/PersonTest.php | 2 +-
src/gen/test/Model/PhoneNumberTest.php | 2 +-
src/gen/test/Model/PipelineStagesTest.php | 2 +-
src/gen/test/Model/PipelineTest.php | 2 +-
.../Model/PosBankAccountAchDetailsTest.php | 2 +-
src/gen/test/Model/PosBankAccountTest.php | 2 +-
.../test/Model/PosPaymentCardDetailsTest.php | 2 +-
.../Model/PosPaymentExternalDetailsTest.php | 2 +-
src/gen/test/Model/PosPaymentTest.php | 2 +-
src/gen/test/Model/PriceTest.php | 2 +-
src/gen/test/Model/ProbationPeriodTest.php | 2 +-
.../test/Model/ProfitAndLossExpensesTest.php | 2 +-
.../test/Model/ProfitAndLossFilterTest.php | 2 +-
.../Model/ProfitAndLossGrossProfitTest.php | 2 +-
.../test/Model/ProfitAndLossIncomeTest.php | 2 +-
.../test/Model/ProfitAndLossNetIncomeTest.php | 2 +-
.../ProfitAndLossNetOperatingIncomeTest.php | 2 +-
.../test/Model/ProfitAndLossRecordTest.php | 2 +-
.../test/Model/ProfitAndLossSectionTest.php | 2 +-
src/gen/test/Model/ProfitAndLossTest.php | 2 +-
src/gen/test/Model/PurchaseOrderTest.php | 2 +-
.../test/Model/PurchaseOrdersFilterTest.php | 2 +-
src/gen/test/Model/PurchaseOrdersSortTest.php | 2 +-
.../test/Model/RequestCountAllocationTest.php | 2 +-
src/gen/test/Model/RequestRateTest.php | 2 +-
.../test/Model/ResolveWebhookResponseTest.php | 2 +-
src/gen/test/Model/ResourceExampleTest.php | 2 +-
src/gen/test/Model/ResourceStatusTest.php | 2 +-
src/gen/test/Model/ScheduleTest.php | 2 +-
.../Model/ScheduleWorkPatternOddWeeksTest.php | 2 +-
.../test/Model/ScheduleWorkPatternTest.php | 2 +-
src/gen/test/Model/SchemaSupportTest.php | 2 +-
src/gen/test/Model/ServiceChargeTest.php | 2 +-
src/gen/test/Model/SessionSettingsTest.php | 2 +-
src/gen/test/Model/SessionTest.php | 2 +-
src/gen/test/Model/SessionThemeTest.php | 2 +-
src/gen/test/Model/SharedLinkTargetTest.php | 2 +-
src/gen/test/Model/SharedLinkTest.php | 2 +-
.../test/Model/SimpleFormFieldOptionTest.php | 2 +-
src/gen/test/Model/SocialLinkTest.php | 2 +-
src/gen/test/Model/SortDirectionTest.php | 2 +-
src/gen/test/Model/StatusTest.php | 2 +-
src/gen/test/Model/SubsidiaryTest.php | 171 +++
src/gen/test/Model/SupplierTest.php | 2 +-
src/gen/test/Model/SuppliersFilterTest.php | 2 +-
src/gen/test/Model/SuppliersSortTest.php | 2 +-
src/gen/test/Model/SupportedPropertyTest.php | 2 +-
src/gen/test/Model/TaxRateTest.php | 2 +-
src/gen/test/Model/TaxRatesFilterTest.php | 2 +-
src/gen/test/Model/TaxTest.php | 2 +-
src/gen/test/Model/TeamTest.php | 2 +-
src/gen/test/Model/TenderTest.php | 2 +-
src/gen/test/Model/TicketTest.php | 2 +-
src/gen/test/Model/TicketsSortTest.php | 2 +-
.../test/Model/TimeOffRequestNotesTest.php | 2 +-
src/gen/test/Model/TimeOffRequestTest.php | 2 +-
.../test/Model/TimeOffRequestsFilterTest.php | 2 +-
.../TooManyRequestsResponseDetailTest.php | 2 +-
.../Model/TooManyRequestsResponseTest.php | 2 +-
src/gen/test/Model/TrackingItemTest.php | 2 +-
.../test/Model/UnauthorizedResponseTest.php | 2 +-
.../Model/UnexpectedErrorResponseTest.php | 2 +-
src/gen/test/Model/UnifiedApiIdTest.php | 2 +-
.../test/Model/UnifiedFilePermissionsTest.php | 2 +-
src/gen/test/Model/UnifiedFileTest.php | 2 +-
src/gen/test/Model/UnifiedIdTest.php | 2 +-
.../test/Model/UnprocessableResponseTest.php | 2 +-
.../test/Model/UpdateActivityResponseTest.php | 2 +-
.../Model/UpdateApplicantResponseTest.php | 2 +-
.../Model/UpdateApplicationResponseTest.php | 2 +-
src/gen/test/Model/UpdateBillResponseTest.php | 2 +-
.../test/Model/UpdateCommentResponseTest.php | 2 +-
.../test/Model/UpdateCompanyResponseTest.php | 2 +-
.../Model/UpdateConnectionResponseTest.php | 2 +-
.../test/Model/UpdateConsumerRequestTest.php | 2 +-
.../test/Model/UpdateConsumerResponseTest.php | 2 +-
.../test/Model/UpdateContactResponseTest.php | 2 +-
.../Model/UpdateCreditNoteResponseTest.php | 2 +-
.../Model/UpdateCustomMappingRequestTest.php | 2 +-
.../Model/UpdateCustomMappingResponseTest.php | 2 +-
.../test/Model/UpdateCustomerResponseTest.php | 2 +-
.../Model/UpdateDepartmentResponseTest.php | 2 +-
.../Model/UpdateDriveGroupResponseTest.php | 2 +-
.../test/Model/UpdateDriveResponseTest.php | 2 +-
.../UpdateEcommerceCustomerResponseTest.php | 2 +-
.../UpdateEcommerceOrderResponseTest.php | 2 +-
.../test/Model/UpdateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/UpdateFileRequestTest.php | 2 +-
src/gen/test/Model/UpdateFileResponseTest.php | 2 +-
.../test/Model/UpdateFolderRequestTest.php | 2 +-
.../test/Model/UpdateFolderResponseTest.php | 2 +-
.../Model/UpdateHrisCompanyResponseTest.php | 2 +-
.../Model/UpdateInvoiceItemsResponseTest.php | 2 +-
.../test/Model/UpdateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/UpdateItemResponseTest.php | 2 +-
src/gen/test/Model/UpdateJobResponseTest.php | 2 +-
.../Model/UpdateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/UpdateLeadResponseTest.php | 2 +-
.../Model/UpdateLedgerAccountResponseTest.php | 2 +-
.../test/Model/UpdateLocationResponseTest.php | 2 +-
.../test/Model/UpdateMerchantResponseTest.php | 2 +-
.../test/Model/UpdateMessageResponseTest.php | 2 +-
.../Model/UpdateModifierGroupResponseTest.php | 2 +-
.../test/Model/UpdateModifierResponseTest.php | 2 +-
src/gen/test/Model/UpdateNoteResponseTest.php | 2 +-
.../Model/UpdateOpportunityResponseTest.php | 2 +-
.../test/Model/UpdateOrderResponseTest.php | 2 +-
.../Model/UpdateOrderTypeResponseTest.php | 2 +-
.../test/Model/UpdatePaymentResponseTest.php | 2 +-
.../test/Model/UpdatePipelineResponseTest.php | 2 +-
.../Model/UpdatePosPaymentResponseTest.php | 2 +-
.../test/Model/UpdateProductResponseTest.php | 2 +-
.../Model/UpdatePurchaseOrderResponseTest.php | 2 +-
.../Model/UpdateSharedLinkResponseTest.php | 2 +-
.../test/Model/UpdateSupplierResponseTest.php | 2 +-
.../test/Model/UpdateTaxRateResponseTest.php | 2 +-
.../test/Model/UpdateTenderResponseTest.php | 2 +-
.../test/Model/UpdateTicketResponseTest.php | 2 +-
.../UpdateTimeOffRequestResponseTest.php | 2 +-
.../Model/UpdateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/UpdateUserResponseTest.php | 2 +-
.../test/Model/UpdateWebhookRequestTest.php | 2 +-
.../test/Model/UpdateWebhookResponseTest.php | 2 +-
src/gen/test/Model/UploadSessionTest.php | 2 +-
src/gen/test/Model/UserTest.php | 2 +-
src/gen/test/Model/VaultEventTypeTest.php | 2 +-
src/gen/test/Model/VirtualWebhooksTest.php | 2 +-
src/gen/test/Model/WalletDetailsTest.php | 2 +-
.../Model/WebhookEventLogAttemptsTest.php | 2 +-
.../test/Model/WebhookEventLogServiceTest.php | 2 +-
src/gen/test/Model/WebhookEventLogTest.php | 2 +-
.../WebhookEventLogsFilterServiceTest.php | 2 +-
.../test/Model/WebhookEventLogsFilterTest.php | 2 +-
src/gen/test/Model/WebhookEventTest.php | 2 +-
src/gen/test/Model/WebhookEventTypeTest.php | 2 +-
.../test/Model/WebhookSubscriptionTest.php | 2 +-
src/gen/test/Model/WebhookSupportTest.php | 2 +-
src/gen/test/Model/WebhookTest.php | 2 +-
src/gen/test/Model/WebsiteTest.php | 2 +-
1266 files changed, 4755 insertions(+), 1258 deletions(-)
create mode 100644 src/gen/docs/models/GetSubsidiariesResponse.md
create mode 100644 src/gen/docs/models/GetSubsidiaryResponse.md
create mode 100644 src/gen/docs/models/Subsidiary.md
create mode 100644 src/gen/lib/Model/GetSubsidiariesResponse.php
create mode 100644 src/gen/lib/Model/GetSubsidiaryResponse.php
create mode 100644 src/gen/lib/Model/Subsidiary.php
create mode 100644 src/gen/test/Model/GetSubsidiariesResponseTest.php
create mode 100644 src/gen/test/Model/GetSubsidiaryResponseTest.php
create mode 100644 src/gen/test/Model/SubsidiaryTest.php
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 5973f8ef86..9018e8f525 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -18,5 +18,5 @@ jobs:
uses: ncipollo/release-action@v1
with:
commit: main
- tag: 3.1.2
+ tag: 3.2.0
diff --git a/package.json b/package.json
index 6766d148f4..5ede3c032d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@apideck/php",
- "version": "3.1.2",
+ "version": "3.2.0",
"description": "Apideck PHP SDK",
"keywords": [
"apideck",
diff --git a/src/gen/.openapi-generator/FILES b/src/gen/.openapi-generator/FILES
index 0ae3a485b8..56087156db 100644
--- a/src/gen/.openapi-generator/FILES
+++ b/src/gen/.openapi-generator/FILES
@@ -387,6 +387,8 @@ docs/Model/GetSharedLinkResponse.md
docs/Model/GetSharedLinksResponse.md
docs/Model/GetStoreResponse.md
docs/Model/GetStoresResponse.md
+docs/Model/GetSubsidiariesResponse.md
+docs/Model/GetSubsidiaryResponse.md
docs/Model/GetSupplierResponse.md
docs/Model/GetSuppliersResponse.md
docs/Model/GetTaxRateResponse.md
@@ -537,6 +539,7 @@ docs/Model/SimpleFormFieldOption.md
docs/Model/SocialLink.md
docs/Model/SortDirection.md
docs/Model/Status.md
+docs/Model/Subsidiary.md
docs/Model/Supplier.md
docs/Model/SuppliersFilter.md
docs/Model/SuppliersSort.md
@@ -1017,6 +1020,8 @@ lib/Model/GetSharedLinkResponse.php
lib/Model/GetSharedLinksResponse.php
lib/Model/GetStoreResponse.php
lib/Model/GetStoresResponse.php
+lib/Model/GetSubsidiariesResponse.php
+lib/Model/GetSubsidiaryResponse.php
lib/Model/GetSupplierResponse.php
lib/Model/GetSuppliersResponse.php
lib/Model/GetTaxRateResponse.php
@@ -1168,6 +1173,7 @@ lib/Model/SimpleFormFieldOption.php
lib/Model/SocialLink.php
lib/Model/SortDirection.php
lib/Model/Status.php
+lib/Model/Subsidiary.php
lib/Model/Supplier.php
lib/Model/SuppliersFilter.php
lib/Model/SuppliersSort.php
@@ -1644,6 +1650,8 @@ test/Model/GetSharedLinkResponseTest.php
test/Model/GetSharedLinksResponseTest.php
test/Model/GetStoreResponseTest.php
test/Model/GetStoresResponseTest.php
+test/Model/GetSubsidiariesResponseTest.php
+test/Model/GetSubsidiaryResponseTest.php
test/Model/GetSupplierResponseTest.php
test/Model/GetSuppliersResponseTest.php
test/Model/GetTaxRateResponseTest.php
@@ -1794,6 +1802,7 @@ test/Model/SimpleFormFieldOptionTest.php
test/Model/SocialLinkTest.php
test/Model/SortDirectionTest.php
test/Model/StatusTest.php
+test/Model/SubsidiaryTest.php
test/Model/SupplierTest.php
test/Model/SuppliersFilterTest.php
test/Model/SuppliersSortTest.php
diff --git a/src/gen/docs/apis/AccountingApi.md b/src/gen/docs/apis/AccountingApi.md
index 4bea10e53a..70d9748e10 100644
--- a/src/gen/docs/apis/AccountingApi.md
+++ b/src/gen/docs/apis/AccountingApi.md
@@ -53,6 +53,8 @@
* [Delete Purchase Order](#purchaseOrdersDelete)
* [Get Purchase Order](#purchaseOrdersOne)
* [Update Purchase Order](#purchaseOrdersUpdate)
+* [List Subsidiaries](#subsidiariesAll)
+* [Get Subsidiary](#subsidiariesOne)
* [Create Supplier](#suppliersAdd)
* [List Suppliers](#suppliersAll)
* [Delete Supplier](#suppliersDelete)
@@ -3293,6 +3295,141 @@ try {
```
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# List Subsidiaries
+
+
+Method: **subsidiariesAll**
+
+```php
+Apideck->getAccountingApi()->subsidiariesAll($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **cursor** | **string**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. |
+ **fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+ **limit** | [**int**] | Number of results to return. Minimum 1, Maximum 200, Default 20 | (optional) defaults to 20
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\GetSubsidiariesResponse`](../models/\Apideck\Client\Model\GetSubsidiariesResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | Subsidiaries |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->subsidiariesAll();
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Get Subsidiary
+
+
+Method: **subsidiariesOne**
+
+```php
+Apideck->getAccountingApi()->subsidiariesOne($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **id** | **string**| ID of the record you are acting upon. |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\GetSubsidiaryResponse`](../models/\Apideck\Client\Model\GetSubsidiaryResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | Subsidiary |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->subsidiariesOne('id_example');
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
diff --git a/src/gen/docs/models/GetSubsidiariesResponse.md b/src/gen/docs/models/GetSubsidiariesResponse.md
new file mode 100644
index 0000000000..a14f046466
--- /dev/null
+++ b/src/gen/docs/models/GetSubsidiariesResponse.md
@@ -0,0 +1,35 @@
+# Apideck.GetSubsidiariesResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\Subsidiary[]**](Subsidiary.md) | |
+`meta` | [**\Apideck\Client\Model\Meta**](Meta.md) | | [optional]
+`links` | [**\Apideck\Client\Model\Links**](Links.md) | | [optional]
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`Subsidiary`](Subsidiary.md)
+* [`Meta`](Meta.md)
+* [`Links`](Links.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/GetSubsidiaryResponse.md b/src/gen/docs/models/GetSubsidiaryResponse.md
new file mode 100644
index 0000000000..1342707209
--- /dev/null
+++ b/src/gen/docs/models/GetSubsidiaryResponse.md
@@ -0,0 +1,31 @@
+# Apideck.GetSubsidiaryResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\Subsidiary**](Subsidiary.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`Subsidiary`](Subsidiary.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/Subsidiary.md b/src/gen/docs/models/Subsidiary.md
new file mode 100644
index 0000000000..3c27e55fe3
--- /dev/null
+++ b/src/gen/docs/models/Subsidiary.md
@@ -0,0 +1,38 @@
+# Apideck.Subsidiary
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`id` | **string** | A unique identifier for an object. | [optional]
+`parent_id` | **string** | A unique identifier for an object. | [optional]
+`name` | **string** | The name of the company. | [optional]
+`status` | **string** | Based on the status some functionality is enabled or disabled. | [optional]
+`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional]
+`row_version` | **string** | A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. | [optional]
+`updated_by` | **string** | The user who last updated the object. | [optional]
+`created_by` | **string** | The user who created the object. | [optional]
+`updated_at` | **\DateTime** | The date and time when the object was last updated. | [optional]
+`created_at` | **\DateTime** | The date and time when the object was created. | [optional]
+
+
+
+
+
+
+## Enum: Subsidiary.status
+
+
+* `ACTIVE` (value: `'active'`)
+
+* `INACTIVE` (value: `'inactive'`)
+
+
+
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/lib/Api/AccountingApi.php b/src/gen/lib/Api/AccountingApi.php
index 1c05d38bf9..5d4556d48c 100644
--- a/src/gen/lib/Api/AccountingApi.php
+++ b/src/gen/lib/Api/AccountingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -25519,6 +25519,1110 @@ public function purchaseOrdersUpdateRequest($id, $purchase_order, $x_apideck_con
);
}
+ /**
+ * Operation subsidiariesAll
+ *
+ * List Subsidiaries
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\GetSubsidiariesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function subsidiariesAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ list($response) = $this->subsidiariesAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields);
+ return $response;
+ }
+
+ /**
+ * Operation subsidiariesAllWithHttpInfo
+ *
+ * List Subsidiaries
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\GetSubsidiariesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function subsidiariesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ $request = $this->subsidiariesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\GetSubsidiariesResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetSubsidiariesResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\GetSubsidiariesResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\GetSubsidiariesResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation subsidiariesAllAsync
+ *
+ * List Subsidiaries
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ return $this->subsidiariesAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation subsidiariesAllAsyncWithHttpInfo
+ *
+ * List Subsidiaries
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ $returnType = '\Apideck\Client\Model\GetSubsidiariesResponse';
+ $request = $this->subsidiariesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields);
+
+ 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();
+ }
+
+ 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 'subsidiariesAll'
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function subsidiariesAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ if ($limit !== null && $limit > 200) {
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.subsidiariesAll, must be smaller than or equal to 200.');
+ }
+ if ($limit !== null && $limit < 1) {
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.subsidiariesAll, must be bigger than or equal to 1.');
+ }
+
+
+ $resourcePath = '/accounting/subsidiaries';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+ // query params
+
+ if ('raw' === 'cursor') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($cursor)) {
+ foreach($cursor as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['cursor'] = $cursor ? 'true' : 'false';
+ }
+ }
+
+
+ if ($cursor !== null && 'sort' === 'cursor') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($cursor !== null && 'filter' === 'cursor') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($cursor !== null && !('cursor' === 'raw' || 'cursor' === 'sort' || 'cursor' === 'filter')) {
+ if('form' === 'form' && is_array($cursor)) {
+ foreach($cursor as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['cursor'] = $cursor;
+ }
+ }
+ // query params
+
+ if ('raw' === 'limit') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($limit)) {
+ foreach($limit as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['limit'] = $limit ? 'true' : 'false';
+ }
+ }
+
+
+ if ($limit !== null && 'sort' === 'limit') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($limit !== null && 'filter' === 'limit') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($limit !== null && !('limit' === 'raw' || 'limit' === 'sort' || 'limit' === 'filter')) {
+ if('form' === 'form' && is_array($limit)) {
+ foreach($limit as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['limit'] = $limit;
+ }
+ }
+ // query params
+
+ if ('raw' === 'fields') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields ? 'true' : 'false';
+ }
+ }
+
+
+ if ($fields !== null && 'sort' === 'fields') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($fields !== null && 'filter' === 'fields') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'GET',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation subsidiariesOne
+ *
+ * Get Subsidiary
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\GetSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function subsidiariesOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ list($response) = $this->subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ return $response;
+ }
+
+ /**
+ * Operation subsidiariesOneWithHttpInfo
+ *
+ * Get Subsidiary
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\GetSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ $request = $this->subsidiariesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\GetSubsidiaryResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetSubsidiaryResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\GetSubsidiaryResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\GetSubsidiaryResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation subsidiariesOneAsync
+ *
+ * Get Subsidiary
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ return $this->subsidiariesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation subsidiariesOneAsyncWithHttpInfo
+ *
+ * Get Subsidiary
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ $returnType = '\Apideck\Client\Model\GetSubsidiaryResponse';
+ $request = $this->subsidiariesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+
+ 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();
+ }
+
+ 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 'subsidiariesOne'
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function subsidiariesOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ // verify the required parameter 'id' is set
+ if ($id === null || (is_array($id) && count($id) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $id when calling subsidiariesOne'
+ );
+ }
+
+ $resourcePath = '/accounting/subsidiaries/{id}';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+ // query params
+
+ if ('raw' === 'fields') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields ? 'true' : 'false';
+ }
+ }
+
+
+ if ($fields !== null && 'sort' === 'fields') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($fields !== null && 'filter' === 'fields') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+ // path params
+ if ($id !== null) {
+ $resourcePath = str_replace(
+ '{' . 'id' . '}',
+ ObjectSerializer::toPathValue($id),
+ $resourcePath
+ );
+ }
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'GET',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
/**
* Operation suppliersAdd
*
diff --git a/src/gen/lib/Api/AtsApi.php b/src/gen/lib/Api/AtsApi.php
index c05cdf4185..3895380289 100644
--- a/src/gen/lib/Api/AtsApi.php
+++ b/src/gen/lib/Api/AtsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/ConnectorApi.php b/src/gen/lib/Api/ConnectorApi.php
index 9cde2b1d74..b7a6feff57 100644
--- a/src/gen/lib/Api/ConnectorApi.php
+++ b/src/gen/lib/Api/ConnectorApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/CrmApi.php b/src/gen/lib/Api/CrmApi.php
index 37e24fbc46..c8312b7276 100644
--- a/src/gen/lib/Api/CrmApi.php
+++ b/src/gen/lib/Api/CrmApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/EcommerceApi.php b/src/gen/lib/Api/EcommerceApi.php
index 9f92ad4243..a7cd66feca 100644
--- a/src/gen/lib/Api/EcommerceApi.php
+++ b/src/gen/lib/Api/EcommerceApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/FileStorageApi.php b/src/gen/lib/Api/FileStorageApi.php
index ee0f1d4084..b5df29fcc5 100644
--- a/src/gen/lib/Api/FileStorageApi.php
+++ b/src/gen/lib/Api/FileStorageApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/HrisApi.php b/src/gen/lib/Api/HrisApi.php
index f85b8c1bb8..3fc429c4c4 100644
--- a/src/gen/lib/Api/HrisApi.php
+++ b/src/gen/lib/Api/HrisApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/IssueTrackingApi.php b/src/gen/lib/Api/IssueTrackingApi.php
index 21b12c0976..b904de0897 100644
--- a/src/gen/lib/Api/IssueTrackingApi.php
+++ b/src/gen/lib/Api/IssueTrackingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/LeadApi.php b/src/gen/lib/Api/LeadApi.php
index 7acdc81fed..7cda33b7b5 100644
--- a/src/gen/lib/Api/LeadApi.php
+++ b/src/gen/lib/Api/LeadApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/PosApi.php b/src/gen/lib/Api/PosApi.php
index 30e1256a02..11b90119da 100644
--- a/src/gen/lib/Api/PosApi.php
+++ b/src/gen/lib/Api/PosApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/SmsApi.php b/src/gen/lib/Api/SmsApi.php
index 983aef4caa..fdc48c137a 100644
--- a/src/gen/lib/Api/SmsApi.php
+++ b/src/gen/lib/Api/SmsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/VaultApi.php b/src/gen/lib/Api/VaultApi.php
index b03a8a6505..abf4feb2f0 100644
--- a/src/gen/lib/Api/VaultApi.php
+++ b/src/gen/lib/Api/VaultApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/WebhookApi.php b/src/gen/lib/Api/WebhookApi.php
index 3b84392ccc..e7d13e2a74 100644
--- a/src/gen/lib/Api/WebhookApi.php
+++ b/src/gen/lib/Api/WebhookApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ApiException.php b/src/gen/lib/ApiException.php
index f815a85cd2..866c1aba86 100644
--- a/src/gen/lib/ApiException.php
+++ b/src/gen/lib/ApiException.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Configuration.php b/src/gen/lib/Configuration.php
index 6e999a1c52..dd4213de8c 100644
--- a/src/gen/lib/Configuration.php
+++ b/src/gen/lib/Configuration.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -97,7 +97,7 @@ class Configuration
*
* @var string
*/
- protected $userAgent = 'OpenAPI-Generator/3.1.2/PHP';
+ protected $userAgent = 'OpenAPI-Generator/3.2.0/PHP';
/**
* Debug switch (default set to false)
@@ -447,8 +447,8 @@ public static function toDebugReport()
$report = 'PHP SDK (Apideck\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: 10.1.3' . PHP_EOL;
- $report .= ' SDK Package Version: 3.1.2' . PHP_EOL;
+ $report .= ' The version of the OpenAPI document: 10.2.0' . PHP_EOL;
+ $report .= ' SDK Package Version: 3.2.0' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
return $report;
diff --git a/src/gen/lib/HeaderSelector.php b/src/gen/lib/HeaderSelector.php
index 075db4dba9..4672eb8c6a 100644
--- a/src/gen/lib/HeaderSelector.php
+++ b/src/gen/lib/HeaderSelector.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingEventType.php b/src/gen/lib/Model/AccountingEventType.php
index 6747b63555..e51904ef7a 100644
--- a/src/gen/lib/Model/AccountingEventType.php
+++ b/src/gen/lib/Model/AccountingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivitiesFilter.php b/src/gen/lib/Model/ActivitiesFilter.php
index f943d69b96..01771b51c5 100644
--- a/src/gen/lib/Model/ActivitiesFilter.php
+++ b/src/gen/lib/Model/ActivitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivitiesSort.php b/src/gen/lib/Model/ActivitiesSort.php
index 88cecbee4b..deacf380e0 100644
--- a/src/gen/lib/Model/ActivitiesSort.php
+++ b/src/gen/lib/Model/ActivitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Activity.php b/src/gen/lib/Model/Activity.php
index a3fd0453cc..cb53f7e5b6 100644
--- a/src/gen/lib/Model/Activity.php
+++ b/src/gen/lib/Model/Activity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivityAttendee.php b/src/gen/lib/Model/ActivityAttendee.php
index 3013a839a8..a154a73204 100644
--- a/src/gen/lib/Model/ActivityAttendee.php
+++ b/src/gen/lib/Model/ActivityAttendee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Address.php b/src/gen/lib/Model/Address.php
index c353ef95ab..4555dc89c8 100644
--- a/src/gen/lib/Model/Address.php
+++ b/src/gen/lib/Model/Address.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Api.php b/src/gen/lib/Model/Api.php
index 1bfcbcaf57..2c488a8d5a 100644
--- a/src/gen/lib/Model/Api.php
+++ b/src/gen/lib/Model/Api.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResource.php b/src/gen/lib/Model/ApiResource.php
index 5fec712e9d..a0b763d70d 100644
--- a/src/gen/lib/Model/ApiResource.php
+++ b/src/gen/lib/Model/ApiResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverage.php b/src/gen/lib/Model/ApiResourceCoverage.php
index 02c73c936a..d8476dc179 100644
--- a/src/gen/lib/Model/ApiResourceCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverageCoverage.php b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
index 94cb3091db..9bb5f8c3c9 100644
--- a/src/gen/lib/Model/ApiResourceCoverageCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceLinkedResources.php b/src/gen/lib/Model/ApiResourceLinkedResources.php
index 826d59e74e..493f839688 100644
--- a/src/gen/lib/Model/ApiResourceLinkedResources.php
+++ b/src/gen/lib/Model/ApiResourceLinkedResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResources.php b/src/gen/lib/Model/ApiResources.php
index d5f9ec6038..3e2d4972b9 100644
--- a/src/gen/lib/Model/ApiResources.php
+++ b/src/gen/lib/Model/ApiResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiStatus.php b/src/gen/lib/Model/ApiStatus.php
index f693a1d0dd..810e345cd6 100644
--- a/src/gen/lib/Model/ApiStatus.php
+++ b/src/gen/lib/Model/ApiStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApisFilter.php b/src/gen/lib/Model/ApisFilter.php
index 867d69a2b6..675f1fb66c 100644
--- a/src/gen/lib/Model/ApisFilter.php
+++ b/src/gen/lib/Model/ApisFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Applicant.php b/src/gen/lib/Model/Applicant.php
index 22b20ecf30..b918d03451 100644
--- a/src/gen/lib/Model/Applicant.php
+++ b/src/gen/lib/Model/Applicant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantSocialLinks.php b/src/gen/lib/Model/ApplicantSocialLinks.php
index 11fb19ad29..fddb20411a 100644
--- a/src/gen/lib/Model/ApplicantSocialLinks.php
+++ b/src/gen/lib/Model/ApplicantSocialLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantWebsites.php b/src/gen/lib/Model/ApplicantWebsites.php
index a2168f2037..46d9453c74 100644
--- a/src/gen/lib/Model/ApplicantWebsites.php
+++ b/src/gen/lib/Model/ApplicantWebsites.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantsFilter.php b/src/gen/lib/Model/ApplicantsFilter.php
index 4d097e7e01..79586fa5b9 100644
--- a/src/gen/lib/Model/ApplicantsFilter.php
+++ b/src/gen/lib/Model/ApplicantsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Application.php b/src/gen/lib/Model/Application.php
index 2a369c3047..8f4df53f08 100644
--- a/src/gen/lib/Model/Application.php
+++ b/src/gen/lib/Model/Application.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicationStage.php b/src/gen/lib/Model/ApplicationStage.php
index 40ae266526..43d2115d1a 100644
--- a/src/gen/lib/Model/ApplicationStage.php
+++ b/src/gen/lib/Model/ApplicationStage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Assignee.php b/src/gen/lib/Model/Assignee.php
index 93140f00d0..4e7f88b36a 100644
--- a/src/gen/lib/Model/Assignee.php
+++ b/src/gen/lib/Model/Assignee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsActivity.php b/src/gen/lib/Model/AtsActivity.php
index 50412e86e0..506c067fea 100644
--- a/src/gen/lib/Model/AtsActivity.php
+++ b/src/gen/lib/Model/AtsActivity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsEventType.php b/src/gen/lib/Model/AtsEventType.php
index dc29990232..ddf460982e 100644
--- a/src/gen/lib/Model/AtsEventType.php
+++ b/src/gen/lib/Model/AtsEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AuthType.php b/src/gen/lib/Model/AuthType.php
index 27ce03599b..386223c686 100644
--- a/src/gen/lib/Model/AuthType.php
+++ b/src/gen/lib/Model/AuthType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BadRequestResponse.php b/src/gen/lib/Model/BadRequestResponse.php
index b047b0c758..b3cfac85d9 100644
--- a/src/gen/lib/Model/BadRequestResponse.php
+++ b/src/gen/lib/Model/BadRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheet.php b/src/gen/lib/Model/BalanceSheet.php
index 04a11cd8bc..2a04657e34 100644
--- a/src/gen/lib/Model/BalanceSheet.php
+++ b/src/gen/lib/Model/BalanceSheet.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssets.php b/src/gen/lib/Model/BalanceSheetAssets.php
index 6acb2d4c24..509fda8968 100644
--- a/src/gen/lib/Model/BalanceSheetAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
index f155e8c0f0..0a844089c2 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
index 54fffe8740..7ea61620bd 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
index 1f7223d0bc..5380774526 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
index 39e177bad0..9745988b5b 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquity.php b/src/gen/lib/Model/BalanceSheetEquity.php
index 0c250518d4..78e71524bf 100644
--- a/src/gen/lib/Model/BalanceSheetEquity.php
+++ b/src/gen/lib/Model/BalanceSheetEquity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquityItems.php b/src/gen/lib/Model/BalanceSheetEquityItems.php
index 87e7463568..4aa14b939f 100644
--- a/src/gen/lib/Model/BalanceSheetEquityItems.php
+++ b/src/gen/lib/Model/BalanceSheetEquityItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetFilter.php b/src/gen/lib/Model/BalanceSheetFilter.php
index 1fcf7cfc95..e1c94d7ee8 100644
--- a/src/gen/lib/Model/BalanceSheetFilter.php
+++ b/src/gen/lib/Model/BalanceSheetFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilities.php b/src/gen/lib/Model/BalanceSheetLiabilities.php
index b91bd460bc..a766bc79c2 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilities.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilities.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
index 4c5f1066db..8680a9eda5 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BankAccount.php b/src/gen/lib/Model/BankAccount.php
index d88ac93ada..95d95d87e8 100644
--- a/src/gen/lib/Model/BankAccount.php
+++ b/src/gen/lib/Model/BankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Benefit.php b/src/gen/lib/Model/Benefit.php
index 5b10f525aa..d52887cc26 100644
--- a/src/gen/lib/Model/Benefit.php
+++ b/src/gen/lib/Model/Benefit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Bill.php b/src/gen/lib/Model/Bill.php
index 7631b50b25..bdb59f57e5 100644
--- a/src/gen/lib/Model/Bill.php
+++ b/src/gen/lib/Model/Bill.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillLineItem.php b/src/gen/lib/Model/BillLineItem.php
index cebc1b1ff1..00949e8186 100644
--- a/src/gen/lib/Model/BillLineItem.php
+++ b/src/gen/lib/Model/BillLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsFilter.php b/src/gen/lib/Model/BillsFilter.php
index 1165c56172..29ef671557 100644
--- a/src/gen/lib/Model/BillsFilter.php
+++ b/src/gen/lib/Model/BillsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsSort.php b/src/gen/lib/Model/BillsSort.php
index 9295603878..573fcf17ee 100644
--- a/src/gen/lib/Model/BillsSort.php
+++ b/src/gen/lib/Model/BillsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Branch.php b/src/gen/lib/Model/Branch.php
index 9c92f59bc1..69c512d617 100644
--- a/src/gen/lib/Model/Branch.php
+++ b/src/gen/lib/Model/Branch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CashDetails.php b/src/gen/lib/Model/CashDetails.php
index bf74ac9d62..3c6d8c0398 100644
--- a/src/gen/lib/Model/CashDetails.php
+++ b/src/gen/lib/Model/CashDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Collection.php b/src/gen/lib/Model/Collection.php
index 88f3b0dc09..f83ffcc895 100644
--- a/src/gen/lib/Model/Collection.php
+++ b/src/gen/lib/Model/Collection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTag.php b/src/gen/lib/Model/CollectionTag.php
index 501b9c22e2..521c65c90b 100644
--- a/src/gen/lib/Model/CollectionTag.php
+++ b/src/gen/lib/Model/CollectionTag.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTicketComment.php b/src/gen/lib/Model/CollectionTicketComment.php
index 6ae74a0d52..e5476033f6 100644
--- a/src/gen/lib/Model/CollectionTicketComment.php
+++ b/src/gen/lib/Model/CollectionTicketComment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionUser.php b/src/gen/lib/Model/CollectionUser.php
index 06c78c6488..7126b27125 100644
--- a/src/gen/lib/Model/CollectionUser.php
+++ b/src/gen/lib/Model/CollectionUser.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionsSort.php b/src/gen/lib/Model/CollectionsSort.php
index b646fed34e..2aea5b134f 100644
--- a/src/gen/lib/Model/CollectionsSort.php
+++ b/src/gen/lib/Model/CollectionsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CommentsSort.php b/src/gen/lib/Model/CommentsSort.php
index 976c5b9c8f..2c35c74c94 100644
--- a/src/gen/lib/Model/CommentsSort.php
+++ b/src/gen/lib/Model/CommentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesFilter.php b/src/gen/lib/Model/CompaniesFilter.php
index 89fc562d04..37298b0225 100644
--- a/src/gen/lib/Model/CompaniesFilter.php
+++ b/src/gen/lib/Model/CompaniesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesSort.php b/src/gen/lib/Model/CompaniesSort.php
index 7a35725e56..4f1d7e0374 100644
--- a/src/gen/lib/Model/CompaniesSort.php
+++ b/src/gen/lib/Model/CompaniesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Company.php b/src/gen/lib/Model/Company.php
index 938a68ffd8..4aeef6344b 100644
--- a/src/gen/lib/Model/Company.php
+++ b/src/gen/lib/Model/Company.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyInfo.php b/src/gen/lib/Model/CompanyInfo.php
index f6bf673754..e2cbc3b2f4 100644
--- a/src/gen/lib/Model/CompanyInfo.php
+++ b/src/gen/lib/Model/CompanyInfo.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyRowType.php b/src/gen/lib/Model/CompanyRowType.php
index 029a8f246d..1bb07a5f55 100644
--- a/src/gen/lib/Model/CompanyRowType.php
+++ b/src/gen/lib/Model/CompanyRowType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Compensation.php b/src/gen/lib/Model/Compensation.php
index 30e8fa7d14..9a0fec58bb 100644
--- a/src/gen/lib/Model/Compensation.php
+++ b/src/gen/lib/Model/Compensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connection.php b/src/gen/lib/Model/Connection.php
index 4e0a7b64b0..e4703221fc 100644
--- a/src/gen/lib/Model/Connection.php
+++ b/src/gen/lib/Model/Connection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionConfiguration.php b/src/gen/lib/Model/ConnectionConfiguration.php
index 6b7ba4a60a..e6b5b80f3f 100644
--- a/src/gen/lib/Model/ConnectionConfiguration.php
+++ b/src/gen/lib/Model/ConnectionConfiguration.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionDefaults.php b/src/gen/lib/Model/ConnectionDefaults.php
index 28c06fb15b..024b31d77a 100644
--- a/src/gen/lib/Model/ConnectionDefaults.php
+++ b/src/gen/lib/Model/ConnectionDefaults.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportData.php b/src/gen/lib/Model/ConnectionImportData.php
index 56dd261607..8cb37e5135 100644
--- a/src/gen/lib/Model/ConnectionImportData.php
+++ b/src/gen/lib/Model/ConnectionImportData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportDataCredentials.php b/src/gen/lib/Model/ConnectionImportDataCredentials.php
index f2a6e19774..496f03fd31 100644
--- a/src/gen/lib/Model/ConnectionImportDataCredentials.php
+++ b/src/gen/lib/Model/ConnectionImportDataCredentials.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionMetadata.php b/src/gen/lib/Model/ConnectionMetadata.php
index 98a4c2f6de..3e7640fa42 100644
--- a/src/gen/lib/Model/ConnectionMetadata.php
+++ b/src/gen/lib/Model/ConnectionMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionState.php b/src/gen/lib/Model/ConnectionState.php
index c336282d75..b4384073f1 100644
--- a/src/gen/lib/Model/ConnectionState.php
+++ b/src/gen/lib/Model/ConnectionState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionWebhook.php b/src/gen/lib/Model/ConnectionWebhook.php
index 96aa6ec2fb..1470ddd6a4 100644
--- a/src/gen/lib/Model/ConnectionWebhook.php
+++ b/src/gen/lib/Model/ConnectionWebhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connector.php b/src/gen/lib/Model/Connector.php
index ee389bec10..8fcaaf19f1 100644
--- a/src/gen/lib/Model/Connector.php
+++ b/src/gen/lib/Model/Connector.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorDoc.php b/src/gen/lib/Model/ConnectorDoc.php
index 47e059c0d1..2c5234a483 100644
--- a/src/gen/lib/Model/ConnectorDoc.php
+++ b/src/gen/lib/Model/ConnectorDoc.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorEvent.php b/src/gen/lib/Model/ConnectorEvent.php
index b3d71be9cc..60ff475ade 100644
--- a/src/gen/lib/Model/ConnectorEvent.php
+++ b/src/gen/lib/Model/ConnectorEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes.php b/src/gen/lib/Model/ConnectorOauthScopes.php
index 05056f81d0..8adbf63340 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes1.php b/src/gen/lib/Model/ConnectorOauthScopes1.php
index e2751e7d2f..9954aa2147 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes1.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorResource.php b/src/gen/lib/Model/ConnectorResource.php
index 82542b55c4..f6daf46d40 100644
--- a/src/gen/lib/Model/ConnectorResource.php
+++ b/src/gen/lib/Model/ConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorSetting.php b/src/gen/lib/Model/ConnectorSetting.php
index 52bc543229..dc7a3ca7cf 100644
--- a/src/gen/lib/Model/ConnectorSetting.php
+++ b/src/gen/lib/Model/ConnectorSetting.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorStatus.php b/src/gen/lib/Model/ConnectorStatus.php
index d0bb1cb12b..c3e9629413 100644
--- a/src/gen/lib/Model/ConnectorStatus.php
+++ b/src/gen/lib/Model/ConnectorStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorTlsSupport.php b/src/gen/lib/Model/ConnectorTlsSupport.php
index 03e9eab2d1..1236cb7c25 100644
--- a/src/gen/lib/Model/ConnectorTlsSupport.php
+++ b/src/gen/lib/Model/ConnectorTlsSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorUnifiedApis.php b/src/gen/lib/Model/ConnectorUnifiedApis.php
index c050ea7d01..8761116fb4 100644
--- a/src/gen/lib/Model/ConnectorUnifiedApis.php
+++ b/src/gen/lib/Model/ConnectorUnifiedApis.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorsFilter.php b/src/gen/lib/Model/ConnectorsFilter.php
index 7612c6e271..9a6fa4c3d4 100644
--- a/src/gen/lib/Model/ConnectorsFilter.php
+++ b/src/gen/lib/Model/ConnectorsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Consumer.php b/src/gen/lib/Model/Consumer.php
index 3ba6703cb7..29c45d1574 100644
--- a/src/gen/lib/Model/Consumer.php
+++ b/src/gen/lib/Model/Consumer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerConnection.php b/src/gen/lib/Model/ConsumerConnection.php
index e295892f4c..4157ffb266 100644
--- a/src/gen/lib/Model/ConsumerConnection.php
+++ b/src/gen/lib/Model/ConsumerConnection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerMetadata.php b/src/gen/lib/Model/ConsumerMetadata.php
index 3e9d461696..238c8d5f49 100644
--- a/src/gen/lib/Model/ConsumerMetadata.php
+++ b/src/gen/lib/Model/ConsumerMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
index 489f258d0a..257cbe9a01 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
index 99491f394d..20cf47282e 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Contact.php b/src/gen/lib/Model/Contact.php
index 8eb6e033f4..11dfdd3bb2 100644
--- a/src/gen/lib/Model/Contact.php
+++ b/src/gen/lib/Model/Contact.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsFilter.php b/src/gen/lib/Model/ContactsFilter.php
index 21393de636..45b7e26466 100644
--- a/src/gen/lib/Model/ContactsFilter.php
+++ b/src/gen/lib/Model/ContactsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsSort.php b/src/gen/lib/Model/ContactsSort.php
index d9f928d1d2..9c7b421699 100644
--- a/src/gen/lib/Model/ContactsSort.php
+++ b/src/gen/lib/Model/ContactsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CopyFolderRequest.php b/src/gen/lib/Model/CopyFolderRequest.php
index ce5156e006..7154943f7f 100644
--- a/src/gen/lib/Model/CopyFolderRequest.php
+++ b/src/gen/lib/Model/CopyFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateActivityResponse.php b/src/gen/lib/Model/CreateActivityResponse.php
index 24e0619c67..e7dfbf3fca 100644
--- a/src/gen/lib/Model/CreateActivityResponse.php
+++ b/src/gen/lib/Model/CreateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicantResponse.php b/src/gen/lib/Model/CreateApplicantResponse.php
index db8e13f5bc..97453f2360 100644
--- a/src/gen/lib/Model/CreateApplicantResponse.php
+++ b/src/gen/lib/Model/CreateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicationResponse.php b/src/gen/lib/Model/CreateApplicationResponse.php
index 108b47ff22..a263ab51c4 100644
--- a/src/gen/lib/Model/CreateApplicationResponse.php
+++ b/src/gen/lib/Model/CreateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateBillResponse.php b/src/gen/lib/Model/CreateBillResponse.php
index 7654cabec5..b68878ec10 100644
--- a/src/gen/lib/Model/CreateBillResponse.php
+++ b/src/gen/lib/Model/CreateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCommentResponse.php b/src/gen/lib/Model/CreateCommentResponse.php
index 6eeb78ae16..646318f35b 100644
--- a/src/gen/lib/Model/CreateCommentResponse.php
+++ b/src/gen/lib/Model/CreateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCompanyResponse.php b/src/gen/lib/Model/CreateCompanyResponse.php
index f3f5c7371e..009449aed9 100644
--- a/src/gen/lib/Model/CreateCompanyResponse.php
+++ b/src/gen/lib/Model/CreateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConnectionResponse.php b/src/gen/lib/Model/CreateConnectionResponse.php
index 922ba7c366..4f2ac3f08b 100644
--- a/src/gen/lib/Model/CreateConnectionResponse.php
+++ b/src/gen/lib/Model/CreateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConsumerResponse.php b/src/gen/lib/Model/CreateConsumerResponse.php
index aa0750406c..368d6d25d9 100644
--- a/src/gen/lib/Model/CreateConsumerResponse.php
+++ b/src/gen/lib/Model/CreateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateContactResponse.php b/src/gen/lib/Model/CreateContactResponse.php
index 28e6feef35..09f50b5a73 100644
--- a/src/gen/lib/Model/CreateContactResponse.php
+++ b/src/gen/lib/Model/CreateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCreditNoteResponse.php b/src/gen/lib/Model/CreateCreditNoteResponse.php
index 09f4720567..2b0de984fd 100644
--- a/src/gen/lib/Model/CreateCreditNoteResponse.php
+++ b/src/gen/lib/Model/CreateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingRequest.php b/src/gen/lib/Model/CreateCustomMappingRequest.php
index 3fb77a61b5..b3618a4e64 100644
--- a/src/gen/lib/Model/CreateCustomMappingRequest.php
+++ b/src/gen/lib/Model/CreateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingResponse.php b/src/gen/lib/Model/CreateCustomMappingResponse.php
index bfa6185934..727f2e027e 100644
--- a/src/gen/lib/Model/CreateCustomMappingResponse.php
+++ b/src/gen/lib/Model/CreateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomerResponse.php b/src/gen/lib/Model/CreateCustomerResponse.php
index f74e380a18..34edf79ec2 100644
--- a/src/gen/lib/Model/CreateCustomerResponse.php
+++ b/src/gen/lib/Model/CreateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDepartmentResponse.php b/src/gen/lib/Model/CreateDepartmentResponse.php
index 9423dcc915..d4f4bc78ec 100644
--- a/src/gen/lib/Model/CreateDepartmentResponse.php
+++ b/src/gen/lib/Model/CreateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveGroupResponse.php b/src/gen/lib/Model/CreateDriveGroupResponse.php
index a735b5bcf9..755a626c39 100644
--- a/src/gen/lib/Model/CreateDriveGroupResponse.php
+++ b/src/gen/lib/Model/CreateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveResponse.php b/src/gen/lib/Model/CreateDriveResponse.php
index c3c9794a0a..1c216277d0 100644
--- a/src/gen/lib/Model/CreateDriveResponse.php
+++ b/src/gen/lib/Model/CreateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
index c8b3b97a03..a7cd2c6f50 100644
--- a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceOrderResponse.php b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
index 11947ad610..c2ac9cda1e 100644
--- a/src/gen/lib/Model/CreateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEmployeeResponse.php b/src/gen/lib/Model/CreateEmployeeResponse.php
index a849a6a8f2..613145ce7e 100644
--- a/src/gen/lib/Model/CreateEmployeeResponse.php
+++ b/src/gen/lib/Model/CreateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileRequest.php b/src/gen/lib/Model/CreateFileRequest.php
index 900b05470c..976ee3d685 100644
--- a/src/gen/lib/Model/CreateFileRequest.php
+++ b/src/gen/lib/Model/CreateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileResponse.php b/src/gen/lib/Model/CreateFileResponse.php
index 3a2babe0d2..ad8383b993 100644
--- a/src/gen/lib/Model/CreateFileResponse.php
+++ b/src/gen/lib/Model/CreateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderRequest.php b/src/gen/lib/Model/CreateFolderRequest.php
index a50b92608a..e16c5e6012 100644
--- a/src/gen/lib/Model/CreateFolderRequest.php
+++ b/src/gen/lib/Model/CreateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderResponse.php b/src/gen/lib/Model/CreateFolderResponse.php
index 8d10baacd8..8304389ec6 100644
--- a/src/gen/lib/Model/CreateFolderResponse.php
+++ b/src/gen/lib/Model/CreateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateHrisCompanyResponse.php b/src/gen/lib/Model/CreateHrisCompanyResponse.php
index df9f18f6b5..0c82f5ab21 100644
--- a/src/gen/lib/Model/CreateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/CreateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceItemResponse.php b/src/gen/lib/Model/CreateInvoiceItemResponse.php
index ef4047b25d..3e66c2ba72 100644
--- a/src/gen/lib/Model/CreateInvoiceItemResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceResponse.php b/src/gen/lib/Model/CreateInvoiceResponse.php
index 8eca5eff97..20791a192c 100644
--- a/src/gen/lib/Model/CreateInvoiceResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateItemResponse.php b/src/gen/lib/Model/CreateItemResponse.php
index 85a833abeb..c16e6b079f 100644
--- a/src/gen/lib/Model/CreateItemResponse.php
+++ b/src/gen/lib/Model/CreateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJobResponse.php b/src/gen/lib/Model/CreateJobResponse.php
index 4e87c7d294..959e3b512e 100644
--- a/src/gen/lib/Model/CreateJobResponse.php
+++ b/src/gen/lib/Model/CreateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJournalEntryResponse.php b/src/gen/lib/Model/CreateJournalEntryResponse.php
index fa5afe490b..281ad80a7c 100644
--- a/src/gen/lib/Model/CreateJournalEntryResponse.php
+++ b/src/gen/lib/Model/CreateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLeadResponse.php b/src/gen/lib/Model/CreateLeadResponse.php
index 39755a2a21..3af9bd6ac3 100644
--- a/src/gen/lib/Model/CreateLeadResponse.php
+++ b/src/gen/lib/Model/CreateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLedgerAccountResponse.php b/src/gen/lib/Model/CreateLedgerAccountResponse.php
index 7feacb06a5..f7344585ee 100644
--- a/src/gen/lib/Model/CreateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/CreateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLocationResponse.php b/src/gen/lib/Model/CreateLocationResponse.php
index ce6fedf3d1..f640c7f707 100644
--- a/src/gen/lib/Model/CreateLocationResponse.php
+++ b/src/gen/lib/Model/CreateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMerchantResponse.php b/src/gen/lib/Model/CreateMerchantResponse.php
index 0020c33c51..73220a76d1 100644
--- a/src/gen/lib/Model/CreateMerchantResponse.php
+++ b/src/gen/lib/Model/CreateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMessageResponse.php b/src/gen/lib/Model/CreateMessageResponse.php
index 959136eff9..45f28ef34a 100644
--- a/src/gen/lib/Model/CreateMessageResponse.php
+++ b/src/gen/lib/Model/CreateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierGroupResponse.php b/src/gen/lib/Model/CreateModifierGroupResponse.php
index b7503275dd..ca37f99791 100644
--- a/src/gen/lib/Model/CreateModifierGroupResponse.php
+++ b/src/gen/lib/Model/CreateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierResponse.php b/src/gen/lib/Model/CreateModifierResponse.php
index c3d7586481..0c3d9a9bbd 100644
--- a/src/gen/lib/Model/CreateModifierResponse.php
+++ b/src/gen/lib/Model/CreateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateNoteResponse.php b/src/gen/lib/Model/CreateNoteResponse.php
index ac874cee99..4c152ce1e2 100644
--- a/src/gen/lib/Model/CreateNoteResponse.php
+++ b/src/gen/lib/Model/CreateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOpportunityResponse.php b/src/gen/lib/Model/CreateOpportunityResponse.php
index 0f8ae70f34..fd97899cd4 100644
--- a/src/gen/lib/Model/CreateOpportunityResponse.php
+++ b/src/gen/lib/Model/CreateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderResponse.php b/src/gen/lib/Model/CreateOrderResponse.php
index 8c54161fb1..01cc7eabc9 100644
--- a/src/gen/lib/Model/CreateOrderResponse.php
+++ b/src/gen/lib/Model/CreateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderTypeResponse.php b/src/gen/lib/Model/CreateOrderTypeResponse.php
index 9ba8e761ae..fb3ae0d7dd 100644
--- a/src/gen/lib/Model/CreateOrderTypeResponse.php
+++ b/src/gen/lib/Model/CreateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePaymentResponse.php b/src/gen/lib/Model/CreatePaymentResponse.php
index 5b1c440f33..d58fb74f3c 100644
--- a/src/gen/lib/Model/CreatePaymentResponse.php
+++ b/src/gen/lib/Model/CreatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePipelineResponse.php b/src/gen/lib/Model/CreatePipelineResponse.php
index f6ea399005..9b78add0a0 100644
--- a/src/gen/lib/Model/CreatePipelineResponse.php
+++ b/src/gen/lib/Model/CreatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePosPaymentResponse.php b/src/gen/lib/Model/CreatePosPaymentResponse.php
index 8d83bba910..f850638b55 100644
--- a/src/gen/lib/Model/CreatePosPaymentResponse.php
+++ b/src/gen/lib/Model/CreatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateProductResponse.php b/src/gen/lib/Model/CreateProductResponse.php
index 375ec00d1b..0895eb6577 100644
--- a/src/gen/lib/Model/CreateProductResponse.php
+++ b/src/gen/lib/Model/CreateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePurchaseOrderResponse.php b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
index 8afe99347f..6c7e975562 100644
--- a/src/gen/lib/Model/CreatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponse.php b/src/gen/lib/Model/CreateSessionResponse.php
index ccfa89a5fc..702cc0c2e3 100644
--- a/src/gen/lib/Model/CreateSessionResponse.php
+++ b/src/gen/lib/Model/CreateSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponseData.php b/src/gen/lib/Model/CreateSessionResponseData.php
index 1f2e9cd701..ca3fb12637 100644
--- a/src/gen/lib/Model/CreateSessionResponseData.php
+++ b/src/gen/lib/Model/CreateSessionResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSharedLinkResponse.php b/src/gen/lib/Model/CreateSharedLinkResponse.php
index 21916b8f43..f041386c3c 100644
--- a/src/gen/lib/Model/CreateSharedLinkResponse.php
+++ b/src/gen/lib/Model/CreateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSupplierResponse.php b/src/gen/lib/Model/CreateSupplierResponse.php
index a38e40446c..96c89f9061 100644
--- a/src/gen/lib/Model/CreateSupplierResponse.php
+++ b/src/gen/lib/Model/CreateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTaxRateResponse.php b/src/gen/lib/Model/CreateTaxRateResponse.php
index 1fc6295103..c70b2df68e 100644
--- a/src/gen/lib/Model/CreateTaxRateResponse.php
+++ b/src/gen/lib/Model/CreateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTenderResponse.php b/src/gen/lib/Model/CreateTenderResponse.php
index 6408417c03..0267f6d1fa 100644
--- a/src/gen/lib/Model/CreateTenderResponse.php
+++ b/src/gen/lib/Model/CreateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTicketResponse.php b/src/gen/lib/Model/CreateTicketResponse.php
index 9c6a69c4bf..d5289bfce0 100644
--- a/src/gen/lib/Model/CreateTicketResponse.php
+++ b/src/gen/lib/Model/CreateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTimeOffRequestResponse.php b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
index 26b1161149..46391eaaf6 100644
--- a/src/gen/lib/Model/CreateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionRequest.php b/src/gen/lib/Model/CreateUploadSessionRequest.php
index 3824ef9967..630df33851 100644
--- a/src/gen/lib/Model/CreateUploadSessionRequest.php
+++ b/src/gen/lib/Model/CreateUploadSessionRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionResponse.php b/src/gen/lib/Model/CreateUploadSessionResponse.php
index 302e147bdf..21ab6b3a23 100644
--- a/src/gen/lib/Model/CreateUploadSessionResponse.php
+++ b/src/gen/lib/Model/CreateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUserResponse.php b/src/gen/lib/Model/CreateUserResponse.php
index a4b95102f5..d823260bf6 100644
--- a/src/gen/lib/Model/CreateUserResponse.php
+++ b/src/gen/lib/Model/CreateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookRequest.php b/src/gen/lib/Model/CreateWebhookRequest.php
index 8db3e6104d..c67f848d8b 100644
--- a/src/gen/lib/Model/CreateWebhookRequest.php
+++ b/src/gen/lib/Model/CreateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookResponse.php b/src/gen/lib/Model/CreateWebhookResponse.php
index 24558fee68..da4bcc0aa2 100644
--- a/src/gen/lib/Model/CreateWebhookResponse.php
+++ b/src/gen/lib/Model/CreateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNote.php b/src/gen/lib/Model/CreditNote.php
index 8735e558a1..6c5d071672 100644
--- a/src/gen/lib/Model/CreditNote.php
+++ b/src/gen/lib/Model/CreditNote.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesFilter.php b/src/gen/lib/Model/CreditNotesFilter.php
index 31f83f9afc..c018344898 100644
--- a/src/gen/lib/Model/CreditNotesFilter.php
+++ b/src/gen/lib/Model/CreditNotesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesSort.php b/src/gen/lib/Model/CreditNotesSort.php
index db7cb1c2be..54b05b14d3 100644
--- a/src/gen/lib/Model/CreditNotesSort.php
+++ b/src/gen/lib/Model/CreditNotesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CrmEventType.php b/src/gen/lib/Model/CrmEventType.php
index 270161a1bb..c07555b852 100644
--- a/src/gen/lib/Model/CrmEventType.php
+++ b/src/gen/lib/Model/CrmEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Currency.php b/src/gen/lib/Model/Currency.php
index 52a2cfb714..6574740af6 100644
--- a/src/gen/lib/Model/Currency.php
+++ b/src/gen/lib/Model/Currency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomField.php b/src/gen/lib/Model/CustomField.php
index daceeec7e5..7472dcc1f1 100644
--- a/src/gen/lib/Model/CustomField.php
+++ b/src/gen/lib/Model/CustomField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomFieldFinder.php b/src/gen/lib/Model/CustomFieldFinder.php
index bc11b8a59c..63ddf2e2de 100644
--- a/src/gen/lib/Model/CustomFieldFinder.php
+++ b/src/gen/lib/Model/CustomFieldFinder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomMapping.php b/src/gen/lib/Model/CustomMapping.php
index c49307a074..38b1d37319 100644
--- a/src/gen/lib/Model/CustomMapping.php
+++ b/src/gen/lib/Model/CustomMapping.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Customer.php b/src/gen/lib/Model/Customer.php
index 6ab13c27be..b23c723350 100644
--- a/src/gen/lib/Model/Customer.php
+++ b/src/gen/lib/Model/Customer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersFilter.php b/src/gen/lib/Model/CustomersFilter.php
index d8f6ab2d14..ad76d3259a 100644
--- a/src/gen/lib/Model/CustomersFilter.php
+++ b/src/gen/lib/Model/CustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersSort.php b/src/gen/lib/Model/CustomersSort.php
index 081fd42378..ebc6bf8544 100644
--- a/src/gen/lib/Model/CustomersSort.php
+++ b/src/gen/lib/Model/CustomersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Deduction.php b/src/gen/lib/Model/Deduction.php
index 79e2f17916..6a3641998d 100644
--- a/src/gen/lib/Model/Deduction.php
+++ b/src/gen/lib/Model/Deduction.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteActivityResponse.php b/src/gen/lib/Model/DeleteActivityResponse.php
index 0615f8d718..b84084c8d1 100644
--- a/src/gen/lib/Model/DeleteActivityResponse.php
+++ b/src/gen/lib/Model/DeleteActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicantResponse.php b/src/gen/lib/Model/DeleteApplicantResponse.php
index 763e76e715..19b0585bc6 100644
--- a/src/gen/lib/Model/DeleteApplicantResponse.php
+++ b/src/gen/lib/Model/DeleteApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicationResponse.php b/src/gen/lib/Model/DeleteApplicationResponse.php
index da35eb05b9..6b0b1060c1 100644
--- a/src/gen/lib/Model/DeleteApplicationResponse.php
+++ b/src/gen/lib/Model/DeleteApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteBillResponse.php b/src/gen/lib/Model/DeleteBillResponse.php
index 61ff7f28de..5bcb724f76 100644
--- a/src/gen/lib/Model/DeleteBillResponse.php
+++ b/src/gen/lib/Model/DeleteBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCommentResponse.php b/src/gen/lib/Model/DeleteCommentResponse.php
index a4b90f5d96..6b72114a12 100644
--- a/src/gen/lib/Model/DeleteCommentResponse.php
+++ b/src/gen/lib/Model/DeleteCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCompanyResponse.php b/src/gen/lib/Model/DeleteCompanyResponse.php
index 966f08d160..1bb7e3c09c 100644
--- a/src/gen/lib/Model/DeleteCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteConsumerResponse.php b/src/gen/lib/Model/DeleteConsumerResponse.php
index 9aeb7e4356..c5dbf6cc5b 100644
--- a/src/gen/lib/Model/DeleteConsumerResponse.php
+++ b/src/gen/lib/Model/DeleteConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteContactResponse.php b/src/gen/lib/Model/DeleteContactResponse.php
index 9f26a64ea2..933d47e170 100644
--- a/src/gen/lib/Model/DeleteContactResponse.php
+++ b/src/gen/lib/Model/DeleteContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCreditNoteResponse.php b/src/gen/lib/Model/DeleteCreditNoteResponse.php
index 3621abf819..93385e3d83 100644
--- a/src/gen/lib/Model/DeleteCreditNoteResponse.php
+++ b/src/gen/lib/Model/DeleteCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCustomerResponse.php b/src/gen/lib/Model/DeleteCustomerResponse.php
index 7091c17d02..da79fda170 100644
--- a/src/gen/lib/Model/DeleteCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDepartmentResponse.php b/src/gen/lib/Model/DeleteDepartmentResponse.php
index e8649ae930..e0ba9656fc 100644
--- a/src/gen/lib/Model/DeleteDepartmentResponse.php
+++ b/src/gen/lib/Model/DeleteDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveGroupResponse.php b/src/gen/lib/Model/DeleteDriveGroupResponse.php
index 2f65b4f0e4..084ae86efe 100644
--- a/src/gen/lib/Model/DeleteDriveGroupResponse.php
+++ b/src/gen/lib/Model/DeleteDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveResponse.php b/src/gen/lib/Model/DeleteDriveResponse.php
index cb9620116f..5d33179f6e 100644
--- a/src/gen/lib/Model/DeleteDriveResponse.php
+++ b/src/gen/lib/Model/DeleteDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
index 8c9496ff97..698fe88544 100644
--- a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
index a5931944a7..38061a16a3 100644
--- a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEmployeeResponse.php b/src/gen/lib/Model/DeleteEmployeeResponse.php
index 34cf133ca9..635517fe13 100644
--- a/src/gen/lib/Model/DeleteEmployeeResponse.php
+++ b/src/gen/lib/Model/DeleteEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFileResponse.php b/src/gen/lib/Model/DeleteFileResponse.php
index 5cfefd1a9b..010511a88d 100644
--- a/src/gen/lib/Model/DeleteFileResponse.php
+++ b/src/gen/lib/Model/DeleteFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFolderResponse.php b/src/gen/lib/Model/DeleteFolderResponse.php
index 5b224ad595..71d68d70e6 100644
--- a/src/gen/lib/Model/DeleteFolderResponse.php
+++ b/src/gen/lib/Model/DeleteFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteHrisCompanyResponse.php b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
index e2fa2fab00..be3cc170fa 100644
--- a/src/gen/lib/Model/DeleteHrisCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteInvoiceResponse.php b/src/gen/lib/Model/DeleteInvoiceResponse.php
index 9975299478..a7602e1391 100644
--- a/src/gen/lib/Model/DeleteInvoiceResponse.php
+++ b/src/gen/lib/Model/DeleteInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteItemResponse.php b/src/gen/lib/Model/DeleteItemResponse.php
index 568a0cadac..1dab0b2bb2 100644
--- a/src/gen/lib/Model/DeleteItemResponse.php
+++ b/src/gen/lib/Model/DeleteItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJobResponse.php b/src/gen/lib/Model/DeleteJobResponse.php
index 72b1b5f2ec..9f4eecd17f 100644
--- a/src/gen/lib/Model/DeleteJobResponse.php
+++ b/src/gen/lib/Model/DeleteJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJournalEntryResponse.php b/src/gen/lib/Model/DeleteJournalEntryResponse.php
index 7f6d103fe4..5bec0fabd4 100644
--- a/src/gen/lib/Model/DeleteJournalEntryResponse.php
+++ b/src/gen/lib/Model/DeleteJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLeadResponse.php b/src/gen/lib/Model/DeleteLeadResponse.php
index e5acef1ade..4d1b3ddc76 100644
--- a/src/gen/lib/Model/DeleteLeadResponse.php
+++ b/src/gen/lib/Model/DeleteLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLedgerAccountResponse.php b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
index 299162996d..59a3be1cfb 100644
--- a/src/gen/lib/Model/DeleteLedgerAccountResponse.php
+++ b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLocationResponse.php b/src/gen/lib/Model/DeleteLocationResponse.php
index b7141f7e66..bd1ba72426 100644
--- a/src/gen/lib/Model/DeleteLocationResponse.php
+++ b/src/gen/lib/Model/DeleteLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMerchantResponse.php b/src/gen/lib/Model/DeleteMerchantResponse.php
index 1173ba0bd9..4da571cb78 100644
--- a/src/gen/lib/Model/DeleteMerchantResponse.php
+++ b/src/gen/lib/Model/DeleteMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMessageResponse.php b/src/gen/lib/Model/DeleteMessageResponse.php
index bc5ee767d7..796aa8194f 100644
--- a/src/gen/lib/Model/DeleteMessageResponse.php
+++ b/src/gen/lib/Model/DeleteMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierGroupResponse.php b/src/gen/lib/Model/DeleteModifierGroupResponse.php
index 58bc53d112..dee0a35b4f 100644
--- a/src/gen/lib/Model/DeleteModifierGroupResponse.php
+++ b/src/gen/lib/Model/DeleteModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierResponse.php b/src/gen/lib/Model/DeleteModifierResponse.php
index 803641a9d2..9ad48ff0ee 100644
--- a/src/gen/lib/Model/DeleteModifierResponse.php
+++ b/src/gen/lib/Model/DeleteModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteNoteResponse.php b/src/gen/lib/Model/DeleteNoteResponse.php
index deab0a79f0..4e2f8d38d0 100644
--- a/src/gen/lib/Model/DeleteNoteResponse.php
+++ b/src/gen/lib/Model/DeleteNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOpportunityResponse.php b/src/gen/lib/Model/DeleteOpportunityResponse.php
index f137418635..7ee5853320 100644
--- a/src/gen/lib/Model/DeleteOpportunityResponse.php
+++ b/src/gen/lib/Model/DeleteOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderResponse.php b/src/gen/lib/Model/DeleteOrderResponse.php
index b21e5b2b47..4186c357c3 100644
--- a/src/gen/lib/Model/DeleteOrderResponse.php
+++ b/src/gen/lib/Model/DeleteOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderTypeResponse.php b/src/gen/lib/Model/DeleteOrderTypeResponse.php
index 4d1a43f7c3..7d0b93d3b2 100644
--- a/src/gen/lib/Model/DeleteOrderTypeResponse.php
+++ b/src/gen/lib/Model/DeleteOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePaymentResponse.php b/src/gen/lib/Model/DeletePaymentResponse.php
index 17b83f9801..de77483240 100644
--- a/src/gen/lib/Model/DeletePaymentResponse.php
+++ b/src/gen/lib/Model/DeletePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePipelineResponse.php b/src/gen/lib/Model/DeletePipelineResponse.php
index b6d5359039..acf699e703 100644
--- a/src/gen/lib/Model/DeletePipelineResponse.php
+++ b/src/gen/lib/Model/DeletePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePosPaymentResponse.php b/src/gen/lib/Model/DeletePosPaymentResponse.php
index 8607b6d39f..798cb2ab23 100644
--- a/src/gen/lib/Model/DeletePosPaymentResponse.php
+++ b/src/gen/lib/Model/DeletePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteProductResponse.php b/src/gen/lib/Model/DeleteProductResponse.php
index 6b1744268e..ae6295dbb2 100644
--- a/src/gen/lib/Model/DeleteProductResponse.php
+++ b/src/gen/lib/Model/DeleteProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePurchaseOrderResponse.php b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
index 67e7f1aca6..65b9dd8b14 100644
--- a/src/gen/lib/Model/DeletePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSharedLinkResponse.php b/src/gen/lib/Model/DeleteSharedLinkResponse.php
index 222bd60377..7e694e7988 100644
--- a/src/gen/lib/Model/DeleteSharedLinkResponse.php
+++ b/src/gen/lib/Model/DeleteSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSupplierResponse.php b/src/gen/lib/Model/DeleteSupplierResponse.php
index f2b080e72f..ac9c651e51 100644
--- a/src/gen/lib/Model/DeleteSupplierResponse.php
+++ b/src/gen/lib/Model/DeleteSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTaxRateResponse.php b/src/gen/lib/Model/DeleteTaxRateResponse.php
index 78589a014a..cceb25b924 100644
--- a/src/gen/lib/Model/DeleteTaxRateResponse.php
+++ b/src/gen/lib/Model/DeleteTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTenderResponse.php b/src/gen/lib/Model/DeleteTenderResponse.php
index 675e1836af..fd4c60d3d8 100644
--- a/src/gen/lib/Model/DeleteTenderResponse.php
+++ b/src/gen/lib/Model/DeleteTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTicketResponse.php b/src/gen/lib/Model/DeleteTicketResponse.php
index adfb065bc2..0de347d656 100644
--- a/src/gen/lib/Model/DeleteTicketResponse.php
+++ b/src/gen/lib/Model/DeleteTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
index 3289afeff9..9744a196b7 100644
--- a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUploadSessionResponse.php b/src/gen/lib/Model/DeleteUploadSessionResponse.php
index 5ee739306f..bf1b88db40 100644
--- a/src/gen/lib/Model/DeleteUploadSessionResponse.php
+++ b/src/gen/lib/Model/DeleteUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUserResponse.php b/src/gen/lib/Model/DeleteUserResponse.php
index 709d23a048..423836af58 100644
--- a/src/gen/lib/Model/DeleteUserResponse.php
+++ b/src/gen/lib/Model/DeleteUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteWebhookResponse.php b/src/gen/lib/Model/DeleteWebhookResponse.php
index feae52d9b2..12124c6408 100644
--- a/src/gen/lib/Model/DeleteWebhookResponse.php
+++ b/src/gen/lib/Model/DeleteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Department.php b/src/gen/lib/Model/Department.php
index f6e68bbc9b..83b3637537 100644
--- a/src/gen/lib/Model/Department.php
+++ b/src/gen/lib/Model/Department.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Drive.php b/src/gen/lib/Model/Drive.php
index 46d391a342..e4fb72cb5e 100644
--- a/src/gen/lib/Model/Drive.php
+++ b/src/gen/lib/Model/Drive.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroup.php b/src/gen/lib/Model/DriveGroup.php
index 3836b0d702..394d357e0c 100644
--- a/src/gen/lib/Model/DriveGroup.php
+++ b/src/gen/lib/Model/DriveGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroupsFilter.php b/src/gen/lib/Model/DriveGroupsFilter.php
index e4a06b4f98..99caa2bcc3 100644
--- a/src/gen/lib/Model/DriveGroupsFilter.php
+++ b/src/gen/lib/Model/DriveGroupsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DrivesFilter.php b/src/gen/lib/Model/DrivesFilter.php
index c5435687b6..111b36136f 100644
--- a/src/gen/lib/Model/DrivesFilter.php
+++ b/src/gen/lib/Model/DrivesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceAddress.php b/src/gen/lib/Model/EcommerceAddress.php
index cb5acb8c73..914105d17c 100644
--- a/src/gen/lib/Model/EcommerceAddress.php
+++ b/src/gen/lib/Model/EcommerceAddress.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomer.php b/src/gen/lib/Model/EcommerceCustomer.php
index 35281dfad2..9951dde740 100644
--- a/src/gen/lib/Model/EcommerceCustomer.php
+++ b/src/gen/lib/Model/EcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomerAddresses.php b/src/gen/lib/Model/EcommerceCustomerAddresses.php
index 02f92d6cf2..2f633811d8 100644
--- a/src/gen/lib/Model/EcommerceCustomerAddresses.php
+++ b/src/gen/lib/Model/EcommerceCustomerAddresses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomersFilter.php b/src/gen/lib/Model/EcommerceCustomersFilter.php
index 77cb5e7933..642a424270 100644
--- a/src/gen/lib/Model/EcommerceCustomersFilter.php
+++ b/src/gen/lib/Model/EcommerceCustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceDiscount.php b/src/gen/lib/Model/EcommerceDiscount.php
index b277379491..fb937b25a5 100644
--- a/src/gen/lib/Model/EcommerceDiscount.php
+++ b/src/gen/lib/Model/EcommerceDiscount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrder.php b/src/gen/lib/Model/EcommerceOrder.php
index 4d476de2ed..b94fc6ee0d 100644
--- a/src/gen/lib/Model/EcommerceOrder.php
+++ b/src/gen/lib/Model/EcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderLineItem.php b/src/gen/lib/Model/EcommerceOrderLineItem.php
index dae556b04a..4fe2a9597b 100644
--- a/src/gen/lib/Model/EcommerceOrderLineItem.php
+++ b/src/gen/lib/Model/EcommerceOrderLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderStatus.php b/src/gen/lib/Model/EcommerceOrderStatus.php
index bc37e51c76..3accc26b30 100644
--- a/src/gen/lib/Model/EcommerceOrderStatus.php
+++ b/src/gen/lib/Model/EcommerceOrderStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrdersFilter.php b/src/gen/lib/Model/EcommerceOrdersFilter.php
index a587b20908..b8220b206a 100644
--- a/src/gen/lib/Model/EcommerceOrdersFilter.php
+++ b/src/gen/lib/Model/EcommerceOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProduct.php b/src/gen/lib/Model/EcommerceProduct.php
index faade49f77..8ae75f3d0e 100644
--- a/src/gen/lib/Model/EcommerceProduct.php
+++ b/src/gen/lib/Model/EcommerceProduct.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductCategories.php b/src/gen/lib/Model/EcommerceProductCategories.php
index 9f1541e1bb..41d250da8e 100644
--- a/src/gen/lib/Model/EcommerceProductCategories.php
+++ b/src/gen/lib/Model/EcommerceProductCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages.php b/src/gen/lib/Model/EcommerceProductImages.php
index 5ce124cee6..b489489a3f 100644
--- a/src/gen/lib/Model/EcommerceProductImages.php
+++ b/src/gen/lib/Model/EcommerceProductImages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages1.php b/src/gen/lib/Model/EcommerceProductImages1.php
index 6b217ea600..3f907a22b3 100644
--- a/src/gen/lib/Model/EcommerceProductImages1.php
+++ b/src/gen/lib/Model/EcommerceProductImages1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions.php b/src/gen/lib/Model/EcommerceProductOptions.php
index 8bf78779bc..b8c713f1e0 100644
--- a/src/gen/lib/Model/EcommerceProductOptions.php
+++ b/src/gen/lib/Model/EcommerceProductOptions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions1.php b/src/gen/lib/Model/EcommerceProductOptions1.php
index 382c9531d8..1dede70b9c 100644
--- a/src/gen/lib/Model/EcommerceProductOptions1.php
+++ b/src/gen/lib/Model/EcommerceProductOptions1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductVariants.php b/src/gen/lib/Model/EcommerceProductVariants.php
index a0b3358540..29bc9f9450 100644
--- a/src/gen/lib/Model/EcommerceProductVariants.php
+++ b/src/gen/lib/Model/EcommerceProductVariants.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceStore.php b/src/gen/lib/Model/EcommerceStore.php
index 1e76d2fe80..b031ac6953 100644
--- a/src/gen/lib/Model/EcommerceStore.php
+++ b/src/gen/lib/Model/EcommerceStore.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Email.php b/src/gen/lib/Model/Email.php
index 69d29239bf..e84eb12586 100644
--- a/src/gen/lib/Model/Email.php
+++ b/src/gen/lib/Model/Email.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Employee.php b/src/gen/lib/Model/Employee.php
index c668d168fd..531f57c730 100644
--- a/src/gen/lib/Model/Employee.php
+++ b/src/gen/lib/Model/Employee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeCompensation.php b/src/gen/lib/Model/EmployeeCompensation.php
index 159d0e7e5f..25bd972d6d 100644
--- a/src/gen/lib/Model/EmployeeCompensation.php
+++ b/src/gen/lib/Model/EmployeeCompensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeEmploymentRole.php b/src/gen/lib/Model/EmployeeEmploymentRole.php
index 837dab207a..753715f894 100644
--- a/src/gen/lib/Model/EmployeeEmploymentRole.php
+++ b/src/gen/lib/Model/EmployeeEmploymentRole.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeJob.php b/src/gen/lib/Model/EmployeeJob.php
index 0d63e02f88..225d216a6f 100644
--- a/src/gen/lib/Model/EmployeeJob.php
+++ b/src/gen/lib/Model/EmployeeJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeList.php b/src/gen/lib/Model/EmployeeList.php
index feb7a02c6e..1e7a587f04 100644
--- a/src/gen/lib/Model/EmployeeList.php
+++ b/src/gen/lib/Model/EmployeeList.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeManager.php b/src/gen/lib/Model/EmployeeManager.php
index 88511f1287..7294b5492c 100644
--- a/src/gen/lib/Model/EmployeeManager.php
+++ b/src/gen/lib/Model/EmployeeManager.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeePayroll.php b/src/gen/lib/Model/EmployeePayroll.php
index 60598bc162..dd75d9105c 100644
--- a/src/gen/lib/Model/EmployeePayroll.php
+++ b/src/gen/lib/Model/EmployeePayroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeSchedules.php b/src/gen/lib/Model/EmployeeSchedules.php
index a30dc2237e..535df05dc3 100644
--- a/src/gen/lib/Model/EmployeeSchedules.php
+++ b/src/gen/lib/Model/EmployeeSchedules.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesFilter.php b/src/gen/lib/Model/EmployeesFilter.php
index 201c171005..a726dbdfca 100644
--- a/src/gen/lib/Model/EmployeesFilter.php
+++ b/src/gen/lib/Model/EmployeesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesSort.php b/src/gen/lib/Model/EmployeesSort.php
index 233f4cf9f7..d39a234c4e 100644
--- a/src/gen/lib/Model/EmployeesSort.php
+++ b/src/gen/lib/Model/EmployeesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmploymentStatus.php b/src/gen/lib/Model/EmploymentStatus.php
index b9b8e9d7cf..e3caeceb67 100644
--- a/src/gen/lib/Model/EmploymentStatus.php
+++ b/src/gen/lib/Model/EmploymentStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Error.php b/src/gen/lib/Model/Error.php
index db1d197673..72132fed70 100644
--- a/src/gen/lib/Model/Error.php
+++ b/src/gen/lib/Model/Error.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ExecuteWebhookResponse.php b/src/gen/lib/Model/ExecuteWebhookResponse.php
index 6be5aa9da8..4391fb8347 100644
--- a/src/gen/lib/Model/ExecuteWebhookResponse.php
+++ b/src/gen/lib/Model/ExecuteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileStorageEventType.php b/src/gen/lib/Model/FileStorageEventType.php
index 974a3d302c..ae04ea2e06 100644
--- a/src/gen/lib/Model/FileStorageEventType.php
+++ b/src/gen/lib/Model/FileStorageEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileType.php b/src/gen/lib/Model/FileType.php
index 67822e2cf5..b38a3e73c5 100644
--- a/src/gen/lib/Model/FileType.php
+++ b/src/gen/lib/Model/FileType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesFilter.php b/src/gen/lib/Model/FilesFilter.php
index 95e10ea79e..3c85a70cd0 100644
--- a/src/gen/lib/Model/FilesFilter.php
+++ b/src/gen/lib/Model/FilesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSearch.php b/src/gen/lib/Model/FilesSearch.php
index cc0200195f..90e1720fdd 100644
--- a/src/gen/lib/Model/FilesSearch.php
+++ b/src/gen/lib/Model/FilesSearch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSort.php b/src/gen/lib/Model/FilesSort.php
index 73e8e8084f..a605db26f1 100644
--- a/src/gen/lib/Model/FilesSort.php
+++ b/src/gen/lib/Model/FilesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Folder.php b/src/gen/lib/Model/Folder.php
index 60a0197763..190ada87e5 100644
--- a/src/gen/lib/Model/Folder.php
+++ b/src/gen/lib/Model/Folder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormField.php b/src/gen/lib/Model/FormField.php
index 3687790917..710c1ea9fa 100644
--- a/src/gen/lib/Model/FormField.php
+++ b/src/gen/lib/Model/FormField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOption.php b/src/gen/lib/Model/FormFieldOption.php
index 0c79e13601..75541cff3d 100644
--- a/src/gen/lib/Model/FormFieldOption.php
+++ b/src/gen/lib/Model/FormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOptionGroup.php b/src/gen/lib/Model/FormFieldOptionGroup.php
index 15b0f693fc..6ef194de2b 100644
--- a/src/gen/lib/Model/FormFieldOptionGroup.php
+++ b/src/gen/lib/Model/FormFieldOptionGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Gender.php b/src/gen/lib/Model/Gender.php
index 61c1cbf486..c7a2addb6e 100644
--- a/src/gen/lib/Model/Gender.php
+++ b/src/gen/lib/Model/Gender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetActivitiesResponse.php b/src/gen/lib/Model/GetActivitiesResponse.php
index 96c8258a26..a5b170b4d6 100644
--- a/src/gen/lib/Model/GetActivitiesResponse.php
+++ b/src/gen/lib/Model/GetActivitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetActivityResponse.php b/src/gen/lib/Model/GetActivityResponse.php
index 303836a8ed..7dabb538c8 100644
--- a/src/gen/lib/Model/GetActivityResponse.php
+++ b/src/gen/lib/Model/GetActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceCoverageResponse.php b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
index 1b9662e0f2..418f24ab51 100644
--- a/src/gen/lib/Model/GetApiResourceCoverageResponse.php
+++ b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceResponse.php b/src/gen/lib/Model/GetApiResourceResponse.php
index 7d91c03071..6147002c03 100644
--- a/src/gen/lib/Model/GetApiResourceResponse.php
+++ b/src/gen/lib/Model/GetApiResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResponse.php b/src/gen/lib/Model/GetApiResponse.php
index 7551f9422c..049a995854 100644
--- a/src/gen/lib/Model/GetApiResponse.php
+++ b/src/gen/lib/Model/GetApiResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApisResponse.php b/src/gen/lib/Model/GetApisResponse.php
index 709b79f33c..513d8f13a2 100644
--- a/src/gen/lib/Model/GetApisResponse.php
+++ b/src/gen/lib/Model/GetApisResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantResponse.php b/src/gen/lib/Model/GetApplicantResponse.php
index 1d857a8e79..36b2aad946 100644
--- a/src/gen/lib/Model/GetApplicantResponse.php
+++ b/src/gen/lib/Model/GetApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantsResponse.php b/src/gen/lib/Model/GetApplicantsResponse.php
index 06399a258c..74fc20a024 100644
--- a/src/gen/lib/Model/GetApplicantsResponse.php
+++ b/src/gen/lib/Model/GetApplicantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationResponse.php b/src/gen/lib/Model/GetApplicationResponse.php
index bdee97cf3a..cb084684a7 100644
--- a/src/gen/lib/Model/GetApplicationResponse.php
+++ b/src/gen/lib/Model/GetApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationsResponse.php b/src/gen/lib/Model/GetApplicationsResponse.php
index 6b6a4719da..168771a652 100644
--- a/src/gen/lib/Model/GetApplicationsResponse.php
+++ b/src/gen/lib/Model/GetApplicationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBalanceSheetResponse.php b/src/gen/lib/Model/GetBalanceSheetResponse.php
index 8eba0d1516..aa572bbabf 100644
--- a/src/gen/lib/Model/GetBalanceSheetResponse.php
+++ b/src/gen/lib/Model/GetBalanceSheetResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillResponse.php b/src/gen/lib/Model/GetBillResponse.php
index d76e15f54c..63f9939339 100644
--- a/src/gen/lib/Model/GetBillResponse.php
+++ b/src/gen/lib/Model/GetBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillsResponse.php b/src/gen/lib/Model/GetBillsResponse.php
index e4a98bfd93..e238047551 100644
--- a/src/gen/lib/Model/GetBillsResponse.php
+++ b/src/gen/lib/Model/GetBillsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionResponse.php b/src/gen/lib/Model/GetCollectionResponse.php
index 99db7df4ca..d9fc1f8f69 100644
--- a/src/gen/lib/Model/GetCollectionResponse.php
+++ b/src/gen/lib/Model/GetCollectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionTagsResponse.php b/src/gen/lib/Model/GetCollectionTagsResponse.php
index 67c2de3bb0..b14ab0d610 100644
--- a/src/gen/lib/Model/GetCollectionTagsResponse.php
+++ b/src/gen/lib/Model/GetCollectionTagsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUserResponse.php b/src/gen/lib/Model/GetCollectionUserResponse.php
index e750e78b65..36dd686e0b 100644
--- a/src/gen/lib/Model/GetCollectionUserResponse.php
+++ b/src/gen/lib/Model/GetCollectionUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUsersResponse.php b/src/gen/lib/Model/GetCollectionUsersResponse.php
index 1afb9b56fa..a87ae6c710 100644
--- a/src/gen/lib/Model/GetCollectionUsersResponse.php
+++ b/src/gen/lib/Model/GetCollectionUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionsResponse.php b/src/gen/lib/Model/GetCollectionsResponse.php
index 8cfb58eeaa..bcde6b54c4 100644
--- a/src/gen/lib/Model/GetCollectionsResponse.php
+++ b/src/gen/lib/Model/GetCollectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentResponse.php b/src/gen/lib/Model/GetCommentResponse.php
index d46fc2e3c9..612ede0d88 100644
--- a/src/gen/lib/Model/GetCommentResponse.php
+++ b/src/gen/lib/Model/GetCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentsResponse.php b/src/gen/lib/Model/GetCommentsResponse.php
index dd99c6b026..51c9fe0d6e 100644
--- a/src/gen/lib/Model/GetCommentsResponse.php
+++ b/src/gen/lib/Model/GetCommentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompaniesResponse.php b/src/gen/lib/Model/GetCompaniesResponse.php
index e9fd5de237..74ef0adcd9 100644
--- a/src/gen/lib/Model/GetCompaniesResponse.php
+++ b/src/gen/lib/Model/GetCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyInfoResponse.php b/src/gen/lib/Model/GetCompanyInfoResponse.php
index d85d81581d..b3c818d894 100644
--- a/src/gen/lib/Model/GetCompanyInfoResponse.php
+++ b/src/gen/lib/Model/GetCompanyInfoResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyResponse.php b/src/gen/lib/Model/GetCompanyResponse.php
index efe6da0fc4..bfd87a0233 100644
--- a/src/gen/lib/Model/GetCompanyResponse.php
+++ b/src/gen/lib/Model/GetCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionResponse.php b/src/gen/lib/Model/GetConnectionResponse.php
index 8c627022e1..aa60e7f2f4 100644
--- a/src/gen/lib/Model/GetConnectionResponse.php
+++ b/src/gen/lib/Model/GetConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionsResponse.php b/src/gen/lib/Model/GetConnectionsResponse.php
index 495a034595..9cd54d1e9a 100644
--- a/src/gen/lib/Model/GetConnectionsResponse.php
+++ b/src/gen/lib/Model/GetConnectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
index 404c637919..90e1147c1c 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
index 7679580c18..9fbd1c1f3f 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceResponse.php b/src/gen/lib/Model/GetConnectorResourceResponse.php
index bb303b9356..a1a3f29a9a 100644
--- a/src/gen/lib/Model/GetConnectorResourceResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
index 14c9ac80e1..ff8a552a02 100644
--- a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResponse.php b/src/gen/lib/Model/GetConnectorResponse.php
index 71afdadd3f..28b9f17c50 100644
--- a/src/gen/lib/Model/GetConnectorResponse.php
+++ b/src/gen/lib/Model/GetConnectorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorsResponse.php b/src/gen/lib/Model/GetConnectorsResponse.php
index d314e1293f..13e550b7fc 100644
--- a/src/gen/lib/Model/GetConnectorsResponse.php
+++ b/src/gen/lib/Model/GetConnectorsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumerResponse.php b/src/gen/lib/Model/GetConsumerResponse.php
index 06733f5cbb..0aa16a819b 100644
--- a/src/gen/lib/Model/GetConsumerResponse.php
+++ b/src/gen/lib/Model/GetConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponse.php b/src/gen/lib/Model/GetConsumersResponse.php
index c5cf1bbe35..c94db6d459 100644
--- a/src/gen/lib/Model/GetConsumersResponse.php
+++ b/src/gen/lib/Model/GetConsumersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponseData.php b/src/gen/lib/Model/GetConsumersResponseData.php
index bf8b155bf8..1df10fd844 100644
--- a/src/gen/lib/Model/GetConsumersResponseData.php
+++ b/src/gen/lib/Model/GetConsumersResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactResponse.php b/src/gen/lib/Model/GetContactResponse.php
index 83f35c6f8e..f3ab783b89 100644
--- a/src/gen/lib/Model/GetContactResponse.php
+++ b/src/gen/lib/Model/GetContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactsResponse.php b/src/gen/lib/Model/GetContactsResponse.php
index b09187cd83..b4fe39ea80 100644
--- a/src/gen/lib/Model/GetContactsResponse.php
+++ b/src/gen/lib/Model/GetContactsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNoteResponse.php b/src/gen/lib/Model/GetCreditNoteResponse.php
index 73ac79baed..05acf9be14 100644
--- a/src/gen/lib/Model/GetCreditNoteResponse.php
+++ b/src/gen/lib/Model/GetCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNotesResponse.php b/src/gen/lib/Model/GetCreditNotesResponse.php
index 05b203793c..bb9832df02 100644
--- a/src/gen/lib/Model/GetCreditNotesResponse.php
+++ b/src/gen/lib/Model/GetCreditNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomFieldsResponse.php b/src/gen/lib/Model/GetCustomFieldsResponse.php
index 77ea22543e..7c43b9dbb7 100644
--- a/src/gen/lib/Model/GetCustomFieldsResponse.php
+++ b/src/gen/lib/Model/GetCustomFieldsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomMappingResponse.php b/src/gen/lib/Model/GetCustomMappingResponse.php
index ba2dd1c596..04fddc3cc5 100644
--- a/src/gen/lib/Model/GetCustomMappingResponse.php
+++ b/src/gen/lib/Model/GetCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomerResponse.php b/src/gen/lib/Model/GetCustomerResponse.php
index 674968d911..50ab689d45 100644
--- a/src/gen/lib/Model/GetCustomerResponse.php
+++ b/src/gen/lib/Model/GetCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomersResponse.php b/src/gen/lib/Model/GetCustomersResponse.php
index 1e06b02552..550f983664 100644
--- a/src/gen/lib/Model/GetCustomersResponse.php
+++ b/src/gen/lib/Model/GetCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentResponse.php b/src/gen/lib/Model/GetDepartmentResponse.php
index 349f560675..e892fa757c 100644
--- a/src/gen/lib/Model/GetDepartmentResponse.php
+++ b/src/gen/lib/Model/GetDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentsResponse.php b/src/gen/lib/Model/GetDepartmentsResponse.php
index a162b76a77..4faeb985bf 100644
--- a/src/gen/lib/Model/GetDepartmentsResponse.php
+++ b/src/gen/lib/Model/GetDepartmentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupResponse.php b/src/gen/lib/Model/GetDriveGroupResponse.php
index 6a2dcf71ae..33325757a8 100644
--- a/src/gen/lib/Model/GetDriveGroupResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupsResponse.php b/src/gen/lib/Model/GetDriveGroupsResponse.php
index c1532e7fa3..8950a63252 100644
--- a/src/gen/lib/Model/GetDriveGroupsResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveResponse.php b/src/gen/lib/Model/GetDriveResponse.php
index bd1185fd89..de5ce6740d 100644
--- a/src/gen/lib/Model/GetDriveResponse.php
+++ b/src/gen/lib/Model/GetDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDrivesResponse.php b/src/gen/lib/Model/GetDrivesResponse.php
index d57d38650f..24bf2181ca 100644
--- a/src/gen/lib/Model/GetDrivesResponse.php
+++ b/src/gen/lib/Model/GetDrivesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomerResponse.php b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
index c163ff5943..5132ee9430 100644
--- a/src/gen/lib/Model/GetEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomersResponse.php b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
index 899a63aff0..d4e9d50cf4 100644
--- a/src/gen/lib/Model/GetEcommerceCustomersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrderResponse.php b/src/gen/lib/Model/GetEcommerceOrderResponse.php
index dd1eebb869..bb7727890a 100644
--- a/src/gen/lib/Model/GetEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrdersResponse.php b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
index 30de2c6c05..5cef313b10 100644
--- a/src/gen/lib/Model/GetEcommerceOrdersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollResponse.php b/src/gen/lib/Model/GetEmployeePayrollResponse.php
index 059df0cfa5..bdc9bda882 100644
--- a/src/gen/lib/Model/GetEmployeePayrollResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollsResponse.php b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
index a0c2c31ec2..a9a9f32c05 100644
--- a/src/gen/lib/Model/GetEmployeePayrollsResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeResponse.php b/src/gen/lib/Model/GetEmployeeResponse.php
index 0fc55837c2..80de076901 100644
--- a/src/gen/lib/Model/GetEmployeeResponse.php
+++ b/src/gen/lib/Model/GetEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
index fdcc96a1cd..580e5ecd58 100644
--- a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
+++ b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeesResponse.php b/src/gen/lib/Model/GetEmployeesResponse.php
index 1dafaffa1d..fd2f144baf 100644
--- a/src/gen/lib/Model/GetEmployeesResponse.php
+++ b/src/gen/lib/Model/GetEmployeesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFileResponse.php b/src/gen/lib/Model/GetFileResponse.php
index 4402d81a9a..ccb5fe1faa 100644
--- a/src/gen/lib/Model/GetFileResponse.php
+++ b/src/gen/lib/Model/GetFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFilesResponse.php b/src/gen/lib/Model/GetFilesResponse.php
index b0221f6cdc..5e6b6cd137 100644
--- a/src/gen/lib/Model/GetFilesResponse.php
+++ b/src/gen/lib/Model/GetFilesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFolderResponse.php b/src/gen/lib/Model/GetFolderResponse.php
index fa352f2f10..389f08d586 100644
--- a/src/gen/lib/Model/GetFolderResponse.php
+++ b/src/gen/lib/Model/GetFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFoldersResponse.php b/src/gen/lib/Model/GetFoldersResponse.php
index 249a5c37d2..b75412f05c 100644
--- a/src/gen/lib/Model/GetFoldersResponse.php
+++ b/src/gen/lib/Model/GetFoldersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompaniesResponse.php b/src/gen/lib/Model/GetHrisCompaniesResponse.php
index 6ec8b386da..c0fc139c11 100644
--- a/src/gen/lib/Model/GetHrisCompaniesResponse.php
+++ b/src/gen/lib/Model/GetHrisCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompanyResponse.php b/src/gen/lib/Model/GetHrisCompanyResponse.php
index ff160a7f0c..1773a530f7 100644
--- a/src/gen/lib/Model/GetHrisCompanyResponse.php
+++ b/src/gen/lib/Model/GetHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobResponse.php b/src/gen/lib/Model/GetHrisJobResponse.php
index 431116cbaa..95ecfe89fa 100644
--- a/src/gen/lib/Model/GetHrisJobResponse.php
+++ b/src/gen/lib/Model/GetHrisJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobsResponse.php b/src/gen/lib/Model/GetHrisJobsResponse.php
index 387de3f2d5..59e4252742 100644
--- a/src/gen/lib/Model/GetHrisJobsResponse.php
+++ b/src/gen/lib/Model/GetHrisJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemResponse.php b/src/gen/lib/Model/GetInvoiceItemResponse.php
index 373fd9cdf5..141bfb1bba 100644
--- a/src/gen/lib/Model/GetInvoiceItemResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemsResponse.php b/src/gen/lib/Model/GetInvoiceItemsResponse.php
index 580fc232e3..b42bb22094 100644
--- a/src/gen/lib/Model/GetInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceResponse.php b/src/gen/lib/Model/GetInvoiceResponse.php
index 3b863afe01..f3fa5f54f3 100644
--- a/src/gen/lib/Model/GetInvoiceResponse.php
+++ b/src/gen/lib/Model/GetInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoicesResponse.php b/src/gen/lib/Model/GetInvoicesResponse.php
index 7b9c2233f7..6bdc84f073 100644
--- a/src/gen/lib/Model/GetInvoicesResponse.php
+++ b/src/gen/lib/Model/GetInvoicesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemResponse.php b/src/gen/lib/Model/GetItemResponse.php
index 63db2c2cf4..8b3200928c 100644
--- a/src/gen/lib/Model/GetItemResponse.php
+++ b/src/gen/lib/Model/GetItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemsResponse.php b/src/gen/lib/Model/GetItemsResponse.php
index 8125f38dbd..963cbed4df 100644
--- a/src/gen/lib/Model/GetItemsResponse.php
+++ b/src/gen/lib/Model/GetItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobResponse.php b/src/gen/lib/Model/GetJobResponse.php
index e5a52a87f4..a08e513d5d 100644
--- a/src/gen/lib/Model/GetJobResponse.php
+++ b/src/gen/lib/Model/GetJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobsResponse.php b/src/gen/lib/Model/GetJobsResponse.php
index bc21fe3c19..0220462815 100644
--- a/src/gen/lib/Model/GetJobsResponse.php
+++ b/src/gen/lib/Model/GetJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntriesResponse.php b/src/gen/lib/Model/GetJournalEntriesResponse.php
index d9c89e3bcf..6415c2e20d 100644
--- a/src/gen/lib/Model/GetJournalEntriesResponse.php
+++ b/src/gen/lib/Model/GetJournalEntriesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntryResponse.php b/src/gen/lib/Model/GetJournalEntryResponse.php
index 6cfb89b0dd..ccf1837424 100644
--- a/src/gen/lib/Model/GetJournalEntryResponse.php
+++ b/src/gen/lib/Model/GetJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadResponse.php b/src/gen/lib/Model/GetLeadResponse.php
index ca9e9ad0dc..57e0cb5efa 100644
--- a/src/gen/lib/Model/GetLeadResponse.php
+++ b/src/gen/lib/Model/GetLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadsResponse.php b/src/gen/lib/Model/GetLeadsResponse.php
index b6d8bc5a2f..bad6a65b41 100644
--- a/src/gen/lib/Model/GetLeadsResponse.php
+++ b/src/gen/lib/Model/GetLeadsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountResponse.php b/src/gen/lib/Model/GetLedgerAccountResponse.php
index f35ae1accd..c5617ca518 100644
--- a/src/gen/lib/Model/GetLedgerAccountResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountsResponse.php b/src/gen/lib/Model/GetLedgerAccountsResponse.php
index 2f2326f55c..5221ff3e2e 100644
--- a/src/gen/lib/Model/GetLedgerAccountsResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationResponse.php b/src/gen/lib/Model/GetLocationResponse.php
index 8d4ff33d3e..f7475b62ac 100644
--- a/src/gen/lib/Model/GetLocationResponse.php
+++ b/src/gen/lib/Model/GetLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationsResponse.php b/src/gen/lib/Model/GetLocationsResponse.php
index aaa98d55a5..fac2ee6407 100644
--- a/src/gen/lib/Model/GetLocationsResponse.php
+++ b/src/gen/lib/Model/GetLocationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLogsResponse.php b/src/gen/lib/Model/GetLogsResponse.php
index 194174f0cc..571e1bf3fa 100644
--- a/src/gen/lib/Model/GetLogsResponse.php
+++ b/src/gen/lib/Model/GetLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantResponse.php b/src/gen/lib/Model/GetMerchantResponse.php
index 29824cbe23..3f581ab582 100644
--- a/src/gen/lib/Model/GetMerchantResponse.php
+++ b/src/gen/lib/Model/GetMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantsResponse.php b/src/gen/lib/Model/GetMerchantsResponse.php
index b7d73afa0d..2612362309 100644
--- a/src/gen/lib/Model/GetMerchantsResponse.php
+++ b/src/gen/lib/Model/GetMerchantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessageResponse.php b/src/gen/lib/Model/GetMessageResponse.php
index 30bb66f3f2..e1e1c03275 100644
--- a/src/gen/lib/Model/GetMessageResponse.php
+++ b/src/gen/lib/Model/GetMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessagesResponse.php b/src/gen/lib/Model/GetMessagesResponse.php
index 61fb675b25..8a71a86395 100644
--- a/src/gen/lib/Model/GetMessagesResponse.php
+++ b/src/gen/lib/Model/GetMessagesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupResponse.php b/src/gen/lib/Model/GetModifierGroupResponse.php
index a4b3f9bbf7..92cf91926b 100644
--- a/src/gen/lib/Model/GetModifierGroupResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupsResponse.php b/src/gen/lib/Model/GetModifierGroupsResponse.php
index 8c5552a7f0..422fd88608 100644
--- a/src/gen/lib/Model/GetModifierGroupsResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierResponse.php b/src/gen/lib/Model/GetModifierResponse.php
index 45d0caf13d..eb5d62a0a5 100644
--- a/src/gen/lib/Model/GetModifierResponse.php
+++ b/src/gen/lib/Model/GetModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifiersResponse.php b/src/gen/lib/Model/GetModifiersResponse.php
index ee2abf265e..6d686b2b1d 100644
--- a/src/gen/lib/Model/GetModifiersResponse.php
+++ b/src/gen/lib/Model/GetModifiersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNoteResponse.php b/src/gen/lib/Model/GetNoteResponse.php
index 9bad0cd291..922ffb8610 100644
--- a/src/gen/lib/Model/GetNoteResponse.php
+++ b/src/gen/lib/Model/GetNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNotesResponse.php b/src/gen/lib/Model/GetNotesResponse.php
index 1154136def..a50dc98b03 100644
--- a/src/gen/lib/Model/GetNotesResponse.php
+++ b/src/gen/lib/Model/GetNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunitiesResponse.php b/src/gen/lib/Model/GetOpportunitiesResponse.php
index fabf181302..30f6f053a6 100644
--- a/src/gen/lib/Model/GetOpportunitiesResponse.php
+++ b/src/gen/lib/Model/GetOpportunitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunityResponse.php b/src/gen/lib/Model/GetOpportunityResponse.php
index bdc652eea9..1e159b50b5 100644
--- a/src/gen/lib/Model/GetOpportunityResponse.php
+++ b/src/gen/lib/Model/GetOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderResponse.php b/src/gen/lib/Model/GetOrderResponse.php
index 1a148c1f5f..7f237f066c 100644
--- a/src/gen/lib/Model/GetOrderResponse.php
+++ b/src/gen/lib/Model/GetOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypeResponse.php b/src/gen/lib/Model/GetOrderTypeResponse.php
index ec882a8252..6df82a7c7b 100644
--- a/src/gen/lib/Model/GetOrderTypeResponse.php
+++ b/src/gen/lib/Model/GetOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypesResponse.php b/src/gen/lib/Model/GetOrderTypesResponse.php
index 0feacd07c9..d9ead79632 100644
--- a/src/gen/lib/Model/GetOrderTypesResponse.php
+++ b/src/gen/lib/Model/GetOrderTypesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrdersResponse.php b/src/gen/lib/Model/GetOrdersResponse.php
index cb5d99e0de..fc1d84c192 100644
--- a/src/gen/lib/Model/GetOrdersResponse.php
+++ b/src/gen/lib/Model/GetOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentResponse.php b/src/gen/lib/Model/GetPaymentResponse.php
index 06d7b0baf9..d8c5380c02 100644
--- a/src/gen/lib/Model/GetPaymentResponse.php
+++ b/src/gen/lib/Model/GetPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentsResponse.php b/src/gen/lib/Model/GetPaymentsResponse.php
index ae7076f3d7..da4da9d4b1 100644
--- a/src/gen/lib/Model/GetPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollResponse.php b/src/gen/lib/Model/GetPayrollResponse.php
index 154bd86754..3a1752cfc2 100644
--- a/src/gen/lib/Model/GetPayrollResponse.php
+++ b/src/gen/lib/Model/GetPayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollsResponse.php b/src/gen/lib/Model/GetPayrollsResponse.php
index 9e6c5c00e5..b504d43a22 100644
--- a/src/gen/lib/Model/GetPayrollsResponse.php
+++ b/src/gen/lib/Model/GetPayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelineResponse.php b/src/gen/lib/Model/GetPipelineResponse.php
index f249e00828..6a269eebca 100644
--- a/src/gen/lib/Model/GetPipelineResponse.php
+++ b/src/gen/lib/Model/GetPipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelinesResponse.php b/src/gen/lib/Model/GetPipelinesResponse.php
index 834da9a90a..b29f9e4325 100644
--- a/src/gen/lib/Model/GetPipelinesResponse.php
+++ b/src/gen/lib/Model/GetPipelinesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentResponse.php b/src/gen/lib/Model/GetPosPaymentResponse.php
index b63f7c50c8..8cb71baf57 100644
--- a/src/gen/lib/Model/GetPosPaymentResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentsResponse.php b/src/gen/lib/Model/GetPosPaymentsResponse.php
index 7adddbc878..ed8c019c23 100644
--- a/src/gen/lib/Model/GetPosPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductResponse.php b/src/gen/lib/Model/GetProductResponse.php
index 2140f89936..c4d1e3093e 100644
--- a/src/gen/lib/Model/GetProductResponse.php
+++ b/src/gen/lib/Model/GetProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductsResponse.php b/src/gen/lib/Model/GetProductsResponse.php
index ac275323d2..d6d6339553 100644
--- a/src/gen/lib/Model/GetProductsResponse.php
+++ b/src/gen/lib/Model/GetProductsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProfitAndLossResponse.php b/src/gen/lib/Model/GetProfitAndLossResponse.php
index 1a6ad1255c..7535007d35 100644
--- a/src/gen/lib/Model/GetProfitAndLossResponse.php
+++ b/src/gen/lib/Model/GetProfitAndLossResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrderResponse.php b/src/gen/lib/Model/GetPurchaseOrderResponse.php
index 7ac3b64363..0fc5529559 100644
--- a/src/gen/lib/Model/GetPurchaseOrderResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrdersResponse.php b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
index 06d9ea55e5..90e5e5e032 100644
--- a/src/gen/lib/Model/GetPurchaseOrdersResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceExampleResponse.php b/src/gen/lib/Model/GetResourceExampleResponse.php
index 354e9b2ca2..4799bbc0bb 100644
--- a/src/gen/lib/Model/GetResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceSchemaResponse.php b/src/gen/lib/Model/GetResourceSchemaResponse.php
index e5982852fc..4f1e31422b 100644
--- a/src/gen/lib/Model/GetResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinkResponse.php b/src/gen/lib/Model/GetSharedLinkResponse.php
index cc7b7d63a8..b7384f9622 100644
--- a/src/gen/lib/Model/GetSharedLinkResponse.php
+++ b/src/gen/lib/Model/GetSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinksResponse.php b/src/gen/lib/Model/GetSharedLinksResponse.php
index efb57e31a0..e4a18f9cc7 100644
--- a/src/gen/lib/Model/GetSharedLinksResponse.php
+++ b/src/gen/lib/Model/GetSharedLinksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoreResponse.php b/src/gen/lib/Model/GetStoreResponse.php
index 87cd38a719..ecdeebb912 100644
--- a/src/gen/lib/Model/GetStoreResponse.php
+++ b/src/gen/lib/Model/GetStoreResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoresResponse.php b/src/gen/lib/Model/GetStoresResponse.php
index 80d5a3262e..ec931647f3 100644
--- a/src/gen/lib/Model/GetStoresResponse.php
+++ b/src/gen/lib/Model/GetStoresResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSubsidiariesResponse.php b/src/gen/lib/Model/GetSubsidiariesResponse.php
new file mode 100644
index 0000000000..e3613e6037
--- /dev/null
+++ b/src/gen/lib/Model/GetSubsidiariesResponse.php
@@ -0,0 +1,548 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class GetSubsidiariesResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'GetSubsidiariesResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\Subsidiary[]',
+ 'meta' => '\Apideck\Client\Model\Meta',
+ 'links' => '\Apideck\Client\Model\Links'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null,
+ 'meta' => null,
+ 'links' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data',
+ 'meta' => 'meta',
+ 'links' => 'links'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData',
+ 'meta' => 'setMeta',
+ 'links' => 'setLinks'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData',
+ 'meta' => 'getMeta',
+ 'links' => 'getLinks'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ $this->container['meta'] = $data['meta'] ?? null;
+ $this->container['links'] = $data['links'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\Subsidiary[]
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\Subsidiary[] $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+
+ /**
+ * Gets meta
+ *
+ * @return \Apideck\Client\Model\Meta|null
+ */
+ public function getMeta()
+ {
+ return $this->container['meta'];
+ }
+
+ /**
+ * Sets meta
+ *
+ * @param \Apideck\Client\Model\Meta|null $meta meta
+ *
+ * @return self
+ */
+ public function setMeta($meta)
+ {
+ $this->container['meta'] = $meta;
+
+ return $this;
+ }
+
+ /**
+ * Gets links
+ *
+ * @return \Apideck\Client\Model\Links|null
+ */
+ public function getLinks()
+ {
+ return $this->container['links'];
+ }
+
+ /**
+ * Sets links
+ *
+ * @param \Apideck\Client\Model\Links|null $links links
+ *
+ * @return self
+ */
+ public function setLinks($links)
+ {
+ $this->container['links'] = $links;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/GetSubsidiaryResponse.php b/src/gen/lib/Model/GetSubsidiaryResponse.php
new file mode 100644
index 0000000000..f940a90205
--- /dev/null
+++ b/src/gen/lib/Model/GetSubsidiaryResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class GetSubsidiaryResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'GetSubsidiaryResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\Subsidiary'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\Subsidiary
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\Subsidiary $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/GetSupplierResponse.php b/src/gen/lib/Model/GetSupplierResponse.php
index a7b0a7c727..4db5a31317 100644
--- a/src/gen/lib/Model/GetSupplierResponse.php
+++ b/src/gen/lib/Model/GetSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSuppliersResponse.php b/src/gen/lib/Model/GetSuppliersResponse.php
index 5a39b71379..dc9308f248 100644
--- a/src/gen/lib/Model/GetSuppliersResponse.php
+++ b/src/gen/lib/Model/GetSuppliersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRateResponse.php b/src/gen/lib/Model/GetTaxRateResponse.php
index 0fa1a9de11..d8376fdf97 100644
--- a/src/gen/lib/Model/GetTaxRateResponse.php
+++ b/src/gen/lib/Model/GetTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRatesResponse.php b/src/gen/lib/Model/GetTaxRatesResponse.php
index 0e9db97a99..9a4ebbe404 100644
--- a/src/gen/lib/Model/GetTaxRatesResponse.php
+++ b/src/gen/lib/Model/GetTaxRatesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTenderResponse.php b/src/gen/lib/Model/GetTenderResponse.php
index 1a1c4e6fc4..e6349d0c74 100644
--- a/src/gen/lib/Model/GetTenderResponse.php
+++ b/src/gen/lib/Model/GetTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTendersResponse.php b/src/gen/lib/Model/GetTendersResponse.php
index ad6757c9f1..279782299d 100644
--- a/src/gen/lib/Model/GetTendersResponse.php
+++ b/src/gen/lib/Model/GetTendersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketResponse.php b/src/gen/lib/Model/GetTicketResponse.php
index 2f777c4367..d954ed0df7 100644
--- a/src/gen/lib/Model/GetTicketResponse.php
+++ b/src/gen/lib/Model/GetTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketsResponse.php b/src/gen/lib/Model/GetTicketsResponse.php
index 94f989dd9d..7783fcf5ab 100644
--- a/src/gen/lib/Model/GetTicketsResponse.php
+++ b/src/gen/lib/Model/GetTicketsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestResponse.php b/src/gen/lib/Model/GetTimeOffRequestResponse.php
index 1553e3a842..278a676049 100644
--- a/src/gen/lib/Model/GetTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestsResponse.php b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
index 4e5c974674..ca1d28a08b 100644
--- a/src/gen/lib/Model/GetTimeOffRequestsResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUploadSessionResponse.php b/src/gen/lib/Model/GetUploadSessionResponse.php
index 77bfc77482..723494774a 100644
--- a/src/gen/lib/Model/GetUploadSessionResponse.php
+++ b/src/gen/lib/Model/GetUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUserResponse.php b/src/gen/lib/Model/GetUserResponse.php
index b45500a74f..998b28b561 100644
--- a/src/gen/lib/Model/GetUserResponse.php
+++ b/src/gen/lib/Model/GetUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUsersResponse.php b/src/gen/lib/Model/GetUsersResponse.php
index 780931b955..7ad40a7294 100644
--- a/src/gen/lib/Model/GetUsersResponse.php
+++ b/src/gen/lib/Model/GetUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookEventLogsResponse.php b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
index ae0a12ed9e..0335f6aead 100644
--- a/src/gen/lib/Model/GetWebhookEventLogsResponse.php
+++ b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookResponse.php b/src/gen/lib/Model/GetWebhookResponse.php
index 6637c8cd10..9bcaa9098d 100644
--- a/src/gen/lib/Model/GetWebhookResponse.php
+++ b/src/gen/lib/Model/GetWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhooksResponse.php b/src/gen/lib/Model/GetWebhooksResponse.php
index 56526109d3..6a6ede7a4c 100644
--- a/src/gen/lib/Model/GetWebhooksResponse.php
+++ b/src/gen/lib/Model/GetWebhooksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisCompany.php b/src/gen/lib/Model/HrisCompany.php
index c02eab393f..96216c0748 100644
--- a/src/gen/lib/Model/HrisCompany.php
+++ b/src/gen/lib/Model/HrisCompany.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisEventType.php b/src/gen/lib/Model/HrisEventType.php
index 70f699fb6a..cda67d5e5e 100644
--- a/src/gen/lib/Model/HrisEventType.php
+++ b/src/gen/lib/Model/HrisEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJob.php b/src/gen/lib/Model/HrisJob.php
index 4a60b4b8ce..d3dd99c7ac 100644
--- a/src/gen/lib/Model/HrisJob.php
+++ b/src/gen/lib/Model/HrisJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobLocation.php b/src/gen/lib/Model/HrisJobLocation.php
index 68f9e2ca32..a01349ceeb 100644
--- a/src/gen/lib/Model/HrisJobLocation.php
+++ b/src/gen/lib/Model/HrisJobLocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobs.php b/src/gen/lib/Model/HrisJobs.php
index 4136bbe190..f557cab07a 100644
--- a/src/gen/lib/Model/HrisJobs.php
+++ b/src/gen/lib/Model/HrisJobs.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IntegrationState.php b/src/gen/lib/Model/IntegrationState.php
index c84ef0facf..824f41e589 100644
--- a/src/gen/lib/Model/IntegrationState.php
+++ b/src/gen/lib/Model/IntegrationState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Invoice.php b/src/gen/lib/Model/Invoice.php
index 7ad023c732..1f951ca315 100644
--- a/src/gen/lib/Model/Invoice.php
+++ b/src/gen/lib/Model/Invoice.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItem.php b/src/gen/lib/Model/InvoiceItem.php
index cc3373dbe7..fc84001ddd 100644
--- a/src/gen/lib/Model/InvoiceItem.php
+++ b/src/gen/lib/Model/InvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemSalesDetails.php b/src/gen/lib/Model/InvoiceItemSalesDetails.php
index 6a9cb555aa..bbf7b9894b 100644
--- a/src/gen/lib/Model/InvoiceItemSalesDetails.php
+++ b/src/gen/lib/Model/InvoiceItemSalesDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemsFilter.php b/src/gen/lib/Model/InvoiceItemsFilter.php
index bbf698caa5..c76d0c0765 100644
--- a/src/gen/lib/Model/InvoiceItemsFilter.php
+++ b/src/gen/lib/Model/InvoiceItemsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceLineItem.php b/src/gen/lib/Model/InvoiceLineItem.php
index 57dea9bcae..084a21d3d9 100644
--- a/src/gen/lib/Model/InvoiceLineItem.php
+++ b/src/gen/lib/Model/InvoiceLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceResponse.php b/src/gen/lib/Model/InvoiceResponse.php
index 78ddc6650b..40d751c4c2 100644
--- a/src/gen/lib/Model/InvoiceResponse.php
+++ b/src/gen/lib/Model/InvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesFilter.php b/src/gen/lib/Model/InvoicesFilter.php
index bd86e16997..571283cefa 100644
--- a/src/gen/lib/Model/InvoicesFilter.php
+++ b/src/gen/lib/Model/InvoicesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesSort.php b/src/gen/lib/Model/InvoicesSort.php
index 2f11ebe314..13583b6a35 100644
--- a/src/gen/lib/Model/InvoicesSort.php
+++ b/src/gen/lib/Model/InvoicesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssueTrackingEventType.php b/src/gen/lib/Model/IssueTrackingEventType.php
index 4c2381954b..b2d0493192 100644
--- a/src/gen/lib/Model/IssueTrackingEventType.php
+++ b/src/gen/lib/Model/IssueTrackingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssuesFilter.php b/src/gen/lib/Model/IssuesFilter.php
index 120d54d138..3dec9037f0 100644
--- a/src/gen/lib/Model/IssuesFilter.php
+++ b/src/gen/lib/Model/IssuesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Item.php b/src/gen/lib/Model/Item.php
index 04a9d50e9a..406169295d 100644
--- a/src/gen/lib/Model/Item.php
+++ b/src/gen/lib/Model/Item.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Job.php b/src/gen/lib/Model/Job.php
index 6f320c0ffd..1302542e1b 100644
--- a/src/gen/lib/Model/Job.php
+++ b/src/gen/lib/Model/Job.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobLinks.php b/src/gen/lib/Model/JobLinks.php
index aca8766bbf..bfaed1825f 100644
--- a/src/gen/lib/Model/JobLinks.php
+++ b/src/gen/lib/Model/JobLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobSalary.php b/src/gen/lib/Model/JobSalary.php
index 6ddfb37361..99c706f828 100644
--- a/src/gen/lib/Model/JobSalary.php
+++ b/src/gen/lib/Model/JobSalary.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobStatus.php b/src/gen/lib/Model/JobStatus.php
index 399b699a95..1d79329d25 100644
--- a/src/gen/lib/Model/JobStatus.php
+++ b/src/gen/lib/Model/JobStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesFilter.php b/src/gen/lib/Model/JournalEntriesFilter.php
index a1b1a41ede..e6214a698a 100644
--- a/src/gen/lib/Model/JournalEntriesFilter.php
+++ b/src/gen/lib/Model/JournalEntriesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesSort.php b/src/gen/lib/Model/JournalEntriesSort.php
index 7279dba0a6..41d2b152cf 100644
--- a/src/gen/lib/Model/JournalEntriesSort.php
+++ b/src/gen/lib/Model/JournalEntriesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntry.php b/src/gen/lib/Model/JournalEntry.php
index a4453c52c5..2c0315c234 100644
--- a/src/gen/lib/Model/JournalEntry.php
+++ b/src/gen/lib/Model/JournalEntry.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntryLineItem.php b/src/gen/lib/Model/JournalEntryLineItem.php
index 2d2a197b91..bd113c84ac 100644
--- a/src/gen/lib/Model/JournalEntryLineItem.php
+++ b/src/gen/lib/Model/JournalEntryLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Lead.php b/src/gen/lib/Model/Lead.php
index da75553b5c..13773d69ac 100644
--- a/src/gen/lib/Model/Lead.php
+++ b/src/gen/lib/Model/Lead.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadEventType.php b/src/gen/lib/Model/LeadEventType.php
index a7c590ba53..b32380bea7 100644
--- a/src/gen/lib/Model/LeadEventType.php
+++ b/src/gen/lib/Model/LeadEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsFilter.php b/src/gen/lib/Model/LeadsFilter.php
index 7cf046e1ef..e2d17f19d0 100644
--- a/src/gen/lib/Model/LeadsFilter.php
+++ b/src/gen/lib/Model/LeadsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsSort.php b/src/gen/lib/Model/LeadsSort.php
index fd6d6a0acd..4e85e34d30 100644
--- a/src/gen/lib/Model/LeadsSort.php
+++ b/src/gen/lib/Model/LeadsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccount.php b/src/gen/lib/Model/LedgerAccount.php
index a597dcde67..c50b30f622 100644
--- a/src/gen/lib/Model/LedgerAccount.php
+++ b/src/gen/lib/Model/LedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountCategories.php b/src/gen/lib/Model/LedgerAccountCategories.php
index 208776cd83..9b75885b37 100644
--- a/src/gen/lib/Model/LedgerAccountCategories.php
+++ b/src/gen/lib/Model/LedgerAccountCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountParentAccount.php b/src/gen/lib/Model/LedgerAccountParentAccount.php
index eb6134e59c..0860f4db4e 100644
--- a/src/gen/lib/Model/LedgerAccountParentAccount.php
+++ b/src/gen/lib/Model/LedgerAccountParentAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsFilter.php b/src/gen/lib/Model/LedgerAccountsFilter.php
index d7e69ddfea..cdfcdcc1e4 100644
--- a/src/gen/lib/Model/LedgerAccountsFilter.php
+++ b/src/gen/lib/Model/LedgerAccountsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsSort.php b/src/gen/lib/Model/LedgerAccountsSort.php
index b619b30640..2135af0105 100644
--- a/src/gen/lib/Model/LedgerAccountsSort.php
+++ b/src/gen/lib/Model/LedgerAccountsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedConnectorResource.php b/src/gen/lib/Model/LinkedConnectorResource.php
index 5aae96d24a..d20514d8b8 100644
--- a/src/gen/lib/Model/LinkedConnectorResource.php
+++ b/src/gen/lib/Model/LinkedConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedCustomer.php b/src/gen/lib/Model/LinkedCustomer.php
index 6b192bf29c..43905e1ecd 100644
--- a/src/gen/lib/Model/LinkedCustomer.php
+++ b/src/gen/lib/Model/LinkedCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceCustomer.php b/src/gen/lib/Model/LinkedEcommerceCustomer.php
index e8aa0a9fdc..4ee35d92e1 100644
--- a/src/gen/lib/Model/LinkedEcommerceCustomer.php
+++ b/src/gen/lib/Model/LinkedEcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceOrder.php b/src/gen/lib/Model/LinkedEcommerceOrder.php
index fb940b5a70..97b62ba6d1 100644
--- a/src/gen/lib/Model/LinkedEcommerceOrder.php
+++ b/src/gen/lib/Model/LinkedEcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedFolder.php b/src/gen/lib/Model/LinkedFolder.php
index 0c5bbf505c..6893a149ef 100644
--- a/src/gen/lib/Model/LinkedFolder.php
+++ b/src/gen/lib/Model/LinkedFolder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedInvoiceItem.php b/src/gen/lib/Model/LinkedInvoiceItem.php
index 30e296c4db..53f957e9bd 100644
--- a/src/gen/lib/Model/LinkedInvoiceItem.php
+++ b/src/gen/lib/Model/LinkedInvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedLedgerAccount.php b/src/gen/lib/Model/LinkedLedgerAccount.php
index c55a1d3a43..e781530a96 100644
--- a/src/gen/lib/Model/LinkedLedgerAccount.php
+++ b/src/gen/lib/Model/LinkedLedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedParentCustomer.php b/src/gen/lib/Model/LinkedParentCustomer.php
index 29909c47ef..6286e23a47 100644
--- a/src/gen/lib/Model/LinkedParentCustomer.php
+++ b/src/gen/lib/Model/LinkedParentCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedSupplier.php b/src/gen/lib/Model/LinkedSupplier.php
index ab61264487..2f7aea53dc 100644
--- a/src/gen/lib/Model/LinkedSupplier.php
+++ b/src/gen/lib/Model/LinkedSupplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTaxRate.php b/src/gen/lib/Model/LinkedTaxRate.php
index 10c63c98d4..f12d0810e6 100644
--- a/src/gen/lib/Model/LinkedTaxRate.php
+++ b/src/gen/lib/Model/LinkedTaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTrackingCategory.php b/src/gen/lib/Model/LinkedTrackingCategory.php
index 35823f6340..09d8b693c5 100644
--- a/src/gen/lib/Model/LinkedTrackingCategory.php
+++ b/src/gen/lib/Model/LinkedTrackingCategory.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Links.php b/src/gen/lib/Model/Links.php
index a89b5d9139..dd1db6b1fa 100644
--- a/src/gen/lib/Model/Links.php
+++ b/src/gen/lib/Model/Links.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Location.php b/src/gen/lib/Model/Location.php
index 852c71a069..4a5938ea14 100644
--- a/src/gen/lib/Model/Location.php
+++ b/src/gen/lib/Model/Location.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Log.php b/src/gen/lib/Model/Log.php
index c5a5a3d5b8..5c5ad7214a 100644
--- a/src/gen/lib/Model/Log.php
+++ b/src/gen/lib/Model/Log.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogOperation.php b/src/gen/lib/Model/LogOperation.php
index 110baab340..cf67a69ecf 100644
--- a/src/gen/lib/Model/LogOperation.php
+++ b/src/gen/lib/Model/LogOperation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogService.php b/src/gen/lib/Model/LogService.php
index 17ba3bf1b1..b6e66c53dc 100644
--- a/src/gen/lib/Model/LogService.php
+++ b/src/gen/lib/Model/LogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogsFilter.php b/src/gen/lib/Model/LogsFilter.php
index 71eb582a11..fd66b8459a 100644
--- a/src/gen/lib/Model/LogsFilter.php
+++ b/src/gen/lib/Model/LogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Merchant.php b/src/gen/lib/Model/Merchant.php
index dd2a5d0e57..e3cf8d6615 100644
--- a/src/gen/lib/Model/Merchant.php
+++ b/src/gen/lib/Model/Merchant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Message.php b/src/gen/lib/Model/Message.php
index 9089697cb9..14b3dea6bf 100644
--- a/src/gen/lib/Model/Message.php
+++ b/src/gen/lib/Model/Message.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Meta.php b/src/gen/lib/Model/Meta.php
index 77056041b2..899ead14a0 100644
--- a/src/gen/lib/Model/Meta.php
+++ b/src/gen/lib/Model/Meta.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/MetaCursors.php b/src/gen/lib/Model/MetaCursors.php
index 522e723556..b52c4a247e 100644
--- a/src/gen/lib/Model/MetaCursors.php
+++ b/src/gen/lib/Model/MetaCursors.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModelInterface.php b/src/gen/lib/Model/ModelInterface.php
index b8ce4cfe95..5a552c4bd1 100644
--- a/src/gen/lib/Model/ModelInterface.php
+++ b/src/gen/lib/Model/ModelInterface.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Modifier.php b/src/gen/lib/Model/Modifier.php
index f65e24f636..fb13004653 100644
--- a/src/gen/lib/Model/Modifier.php
+++ b/src/gen/lib/Model/Modifier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroup.php b/src/gen/lib/Model/ModifierGroup.php
index 052dcb0ea5..08efb12ee4 100644
--- a/src/gen/lib/Model/ModifierGroup.php
+++ b/src/gen/lib/Model/ModifierGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroupFilter.php b/src/gen/lib/Model/ModifierGroupFilter.php
index ab9cb843df..8c53b680ca 100644
--- a/src/gen/lib/Model/ModifierGroupFilter.php
+++ b/src/gen/lib/Model/ModifierGroupFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotFoundResponse.php b/src/gen/lib/Model/NotFoundResponse.php
index 9dc1ae1fc2..350989eb81 100644
--- a/src/gen/lib/Model/NotFoundResponse.php
+++ b/src/gen/lib/Model/NotFoundResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotImplementedResponse.php b/src/gen/lib/Model/NotImplementedResponse.php
index ef52b6d106..c1b770f819 100644
--- a/src/gen/lib/Model/NotImplementedResponse.php
+++ b/src/gen/lib/Model/NotImplementedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Note.php b/src/gen/lib/Model/Note.php
index cf461d64b5..02b1569b74 100644
--- a/src/gen/lib/Model/Note.php
+++ b/src/gen/lib/Model/Note.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OAuthGrantType.php b/src/gen/lib/Model/OAuthGrantType.php
index 2e9ba48add..d16ab28567 100644
--- a/src/gen/lib/Model/OAuthGrantType.php
+++ b/src/gen/lib/Model/OAuthGrantType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Offer.php b/src/gen/lib/Model/Offer.php
index ce2ad1cfcb..60b049f71e 100644
--- a/src/gen/lib/Model/Offer.php
+++ b/src/gen/lib/Model/Offer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesFilter.php b/src/gen/lib/Model/OpportunitiesFilter.php
index afb958b8b0..684f1c686e 100644
--- a/src/gen/lib/Model/OpportunitiesFilter.php
+++ b/src/gen/lib/Model/OpportunitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesSort.php b/src/gen/lib/Model/OpportunitiesSort.php
index 774cf0459f..34abaa0f6c 100644
--- a/src/gen/lib/Model/OpportunitiesSort.php
+++ b/src/gen/lib/Model/OpportunitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Opportunity.php b/src/gen/lib/Model/Opportunity.php
index 9a6b8f2f11..f64369b13b 100644
--- a/src/gen/lib/Model/Opportunity.php
+++ b/src/gen/lib/Model/Opportunity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Order.php b/src/gen/lib/Model/Order.php
index 9bb14c29b4..a7fec5da80 100644
--- a/src/gen/lib/Model/Order.php
+++ b/src/gen/lib/Model/Order.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderCustomers.php b/src/gen/lib/Model/OrderCustomers.php
index 25d3b15795..e9d3e6de45 100644
--- a/src/gen/lib/Model/OrderCustomers.php
+++ b/src/gen/lib/Model/OrderCustomers.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderDiscounts.php b/src/gen/lib/Model/OrderDiscounts.php
index 83a248fc6d..af1a98540e 100644
--- a/src/gen/lib/Model/OrderDiscounts.php
+++ b/src/gen/lib/Model/OrderDiscounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderFulfillments.php b/src/gen/lib/Model/OrderFulfillments.php
index fbf884251f..5e27c5ac6f 100644
--- a/src/gen/lib/Model/OrderFulfillments.php
+++ b/src/gen/lib/Model/OrderFulfillments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderLineItems.php b/src/gen/lib/Model/OrderLineItems.php
index c2958d660d..344b120034 100644
--- a/src/gen/lib/Model/OrderLineItems.php
+++ b/src/gen/lib/Model/OrderLineItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPayments.php b/src/gen/lib/Model/OrderPayments.php
index 1bd7c36194..acdc99aa7a 100644
--- a/src/gen/lib/Model/OrderPayments.php
+++ b/src/gen/lib/Model/OrderPayments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetails.php b/src/gen/lib/Model/OrderPickupDetails.php
index a969bea1a0..9de4b0a2e7 100644
--- a/src/gen/lib/Model/OrderPickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
index 4e50f25321..7ffc4a4527 100644
--- a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsRecipient.php b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
index b6a5735386..9956503128 100644
--- a/src/gen/lib/Model/OrderPickupDetailsRecipient.php
+++ b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderRefunds.php b/src/gen/lib/Model/OrderRefunds.php
index 5fcda3a50d..3efa39bdaf 100644
--- a/src/gen/lib/Model/OrderRefunds.php
+++ b/src/gen/lib/Model/OrderRefunds.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderTenders.php b/src/gen/lib/Model/OrderTenders.php
index b9a6144d4e..d66ebee18e 100644
--- a/src/gen/lib/Model/OrderTenders.php
+++ b/src/gen/lib/Model/OrderTenders.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderType.php b/src/gen/lib/Model/OrderType.php
index 32ab911271..77f35a1bc5 100644
--- a/src/gen/lib/Model/OrderType.php
+++ b/src/gen/lib/Model/OrderType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Owner.php b/src/gen/lib/Model/Owner.php
index cf6f8fa34e..2dc322b8ef 100644
--- a/src/gen/lib/Model/Owner.php
+++ b/src/gen/lib/Model/Owner.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaginationCoverage.php b/src/gen/lib/Model/PaginationCoverage.php
index bcc600522b..dd27db4935 100644
--- a/src/gen/lib/Model/PaginationCoverage.php
+++ b/src/gen/lib/Model/PaginationCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PassThroughQuery.php b/src/gen/lib/Model/PassThroughQuery.php
index 8e9afbfea6..f4db52dff8 100644
--- a/src/gen/lib/Model/PassThroughQuery.php
+++ b/src/gen/lib/Model/PassThroughQuery.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payment.php b/src/gen/lib/Model/Payment.php
index 36fef2cb1b..cfe388b426 100644
--- a/src/gen/lib/Model/Payment.php
+++ b/src/gen/lib/Model/Payment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentAllocations.php b/src/gen/lib/Model/PaymentAllocations.php
index 38d1bf4f2e..8ec3bc6576 100644
--- a/src/gen/lib/Model/PaymentAllocations.php
+++ b/src/gen/lib/Model/PaymentAllocations.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentCard.php b/src/gen/lib/Model/PaymentCard.php
index cd7cb4c1bc..b2fd3e9a9a 100644
--- a/src/gen/lib/Model/PaymentCard.php
+++ b/src/gen/lib/Model/PaymentCard.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentFrequency.php b/src/gen/lib/Model/PaymentFrequency.php
index 91563aa567..501991ce66 100644
--- a/src/gen/lib/Model/PaymentFrequency.php
+++ b/src/gen/lib/Model/PaymentFrequency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentRequiredResponse.php b/src/gen/lib/Model/PaymentRequiredResponse.php
index ec2d76059c..13ab7e178e 100644
--- a/src/gen/lib/Model/PaymentRequiredResponse.php
+++ b/src/gen/lib/Model/PaymentRequiredResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentUnit.php b/src/gen/lib/Model/PaymentUnit.php
index e5c3664e57..0894257d01 100644
--- a/src/gen/lib/Model/PaymentUnit.php
+++ b/src/gen/lib/Model/PaymentUnit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsFilter.php b/src/gen/lib/Model/PaymentsFilter.php
index 0a673fffe5..18993fe2aa 100644
--- a/src/gen/lib/Model/PaymentsFilter.php
+++ b/src/gen/lib/Model/PaymentsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsSort.php b/src/gen/lib/Model/PaymentsSort.php
index 6a1112918d..1a8b7a9d99 100644
--- a/src/gen/lib/Model/PaymentsSort.php
+++ b/src/gen/lib/Model/PaymentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payroll.php b/src/gen/lib/Model/Payroll.php
index be9b6beb8d..9bb8a37dfc 100644
--- a/src/gen/lib/Model/Payroll.php
+++ b/src/gen/lib/Model/Payroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollTotals.php b/src/gen/lib/Model/PayrollTotals.php
index c83776ff49..fc3341db24 100644
--- a/src/gen/lib/Model/PayrollTotals.php
+++ b/src/gen/lib/Model/PayrollTotals.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollsFilter.php b/src/gen/lib/Model/PayrollsFilter.php
index 18405afe3a..6b64b3bdab 100644
--- a/src/gen/lib/Model/PayrollsFilter.php
+++ b/src/gen/lib/Model/PayrollsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Person.php b/src/gen/lib/Model/Person.php
index fc34555a69..d2e1e87535 100644
--- a/src/gen/lib/Model/Person.php
+++ b/src/gen/lib/Model/Person.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PhoneNumber.php b/src/gen/lib/Model/PhoneNumber.php
index 53240c3340..96e3d6eaab 100644
--- a/src/gen/lib/Model/PhoneNumber.php
+++ b/src/gen/lib/Model/PhoneNumber.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Pipeline.php b/src/gen/lib/Model/Pipeline.php
index d719271811..993c394c71 100644
--- a/src/gen/lib/Model/Pipeline.php
+++ b/src/gen/lib/Model/Pipeline.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PipelineStages.php b/src/gen/lib/Model/PipelineStages.php
index 5d9eacda49..3adfa0a2ae 100644
--- a/src/gen/lib/Model/PipelineStages.php
+++ b/src/gen/lib/Model/PipelineStages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccount.php b/src/gen/lib/Model/PosBankAccount.php
index c683bc11a4..15bccfb98d 100644
--- a/src/gen/lib/Model/PosBankAccount.php
+++ b/src/gen/lib/Model/PosBankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccountAchDetails.php b/src/gen/lib/Model/PosBankAccountAchDetails.php
index 6cca3f9905..9a3b913003 100644
--- a/src/gen/lib/Model/PosBankAccountAchDetails.php
+++ b/src/gen/lib/Model/PosBankAccountAchDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPayment.php b/src/gen/lib/Model/PosPayment.php
index 0da8b06416..2e24c86726 100644
--- a/src/gen/lib/Model/PosPayment.php
+++ b/src/gen/lib/Model/PosPayment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentCardDetails.php b/src/gen/lib/Model/PosPaymentCardDetails.php
index 90cb81cff8..06a5fc1599 100644
--- a/src/gen/lib/Model/PosPaymentCardDetails.php
+++ b/src/gen/lib/Model/PosPaymentCardDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentExternalDetails.php b/src/gen/lib/Model/PosPaymentExternalDetails.php
index daad08d3e6..dcf35cdc63 100644
--- a/src/gen/lib/Model/PosPaymentExternalDetails.php
+++ b/src/gen/lib/Model/PosPaymentExternalDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Price.php b/src/gen/lib/Model/Price.php
index 0693b185db..8d8163b5ed 100644
--- a/src/gen/lib/Model/Price.php
+++ b/src/gen/lib/Model/Price.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProbationPeriod.php b/src/gen/lib/Model/ProbationPeriod.php
index bbdc1b2a0d..7470785cfe 100644
--- a/src/gen/lib/Model/ProbationPeriod.php
+++ b/src/gen/lib/Model/ProbationPeriod.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLoss.php b/src/gen/lib/Model/ProfitAndLoss.php
index 617a990838..b498eccb59 100644
--- a/src/gen/lib/Model/ProfitAndLoss.php
+++ b/src/gen/lib/Model/ProfitAndLoss.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossExpenses.php b/src/gen/lib/Model/ProfitAndLossExpenses.php
index 2e758f52f2..a63a9111a4 100644
--- a/src/gen/lib/Model/ProfitAndLossExpenses.php
+++ b/src/gen/lib/Model/ProfitAndLossExpenses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossFilter.php b/src/gen/lib/Model/ProfitAndLossFilter.php
index c5d1a80118..13dea1fe80 100644
--- a/src/gen/lib/Model/ProfitAndLossFilter.php
+++ b/src/gen/lib/Model/ProfitAndLossFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossGrossProfit.php b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
index 6f8a7ca342..f9afc3538b 100644
--- a/src/gen/lib/Model/ProfitAndLossGrossProfit.php
+++ b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossIncome.php b/src/gen/lib/Model/ProfitAndLossIncome.php
index cd4900b097..be7bcbff99 100644
--- a/src/gen/lib/Model/ProfitAndLossIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetIncome.php b/src/gen/lib/Model/ProfitAndLossNetIncome.php
index aa6f315d1f..df2958a181 100644
--- a/src/gen/lib/Model/ProfitAndLossNetIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
index ff66a57ee4..07a4484db8 100644
--- a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossRecord.php b/src/gen/lib/Model/ProfitAndLossRecord.php
index b972c34483..f6d717953f 100644
--- a/src/gen/lib/Model/ProfitAndLossRecord.php
+++ b/src/gen/lib/Model/ProfitAndLossRecord.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossSection.php b/src/gen/lib/Model/ProfitAndLossSection.php
index 49e9a06df5..319105826e 100644
--- a/src/gen/lib/Model/ProfitAndLossSection.php
+++ b/src/gen/lib/Model/ProfitAndLossSection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrder.php b/src/gen/lib/Model/PurchaseOrder.php
index 6909784e6c..3f6c704ecf 100644
--- a/src/gen/lib/Model/PurchaseOrder.php
+++ b/src/gen/lib/Model/PurchaseOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersFilter.php b/src/gen/lib/Model/PurchaseOrdersFilter.php
index 454d5f98c0..f5b782a617 100644
--- a/src/gen/lib/Model/PurchaseOrdersFilter.php
+++ b/src/gen/lib/Model/PurchaseOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersSort.php b/src/gen/lib/Model/PurchaseOrdersSort.php
index 3faea7437f..842eb9c4b4 100644
--- a/src/gen/lib/Model/PurchaseOrdersSort.php
+++ b/src/gen/lib/Model/PurchaseOrdersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestCountAllocation.php b/src/gen/lib/Model/RequestCountAllocation.php
index 3862a650e5..a61018e6da 100644
--- a/src/gen/lib/Model/RequestCountAllocation.php
+++ b/src/gen/lib/Model/RequestCountAllocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestRate.php b/src/gen/lib/Model/RequestRate.php
index 63680573e9..e7f41d7345 100644
--- a/src/gen/lib/Model/RequestRate.php
+++ b/src/gen/lib/Model/RequestRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResolveWebhookResponse.php b/src/gen/lib/Model/ResolveWebhookResponse.php
index 291e3bc5de..7845974d15 100644
--- a/src/gen/lib/Model/ResolveWebhookResponse.php
+++ b/src/gen/lib/Model/ResolveWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceExample.php b/src/gen/lib/Model/ResourceExample.php
index 1d65f28a8b..5581d1dff1 100644
--- a/src/gen/lib/Model/ResourceExample.php
+++ b/src/gen/lib/Model/ResourceExample.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceStatus.php b/src/gen/lib/Model/ResourceStatus.php
index ecd7860c97..8c7e1a8098 100644
--- a/src/gen/lib/Model/ResourceStatus.php
+++ b/src/gen/lib/Model/ResourceStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Schedule.php b/src/gen/lib/Model/Schedule.php
index 70e03db987..68b607b6f6 100644
--- a/src/gen/lib/Model/Schedule.php
+++ b/src/gen/lib/Model/Schedule.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPattern.php b/src/gen/lib/Model/ScheduleWorkPattern.php
index 2b493d968e..d4db235867 100644
--- a/src/gen/lib/Model/ScheduleWorkPattern.php
+++ b/src/gen/lib/Model/ScheduleWorkPattern.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
index dbcc150f7b..ce8e2e1189 100644
--- a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
+++ b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SchemaSupport.php b/src/gen/lib/Model/SchemaSupport.php
index 9a576d340e..145bd40fa6 100644
--- a/src/gen/lib/Model/SchemaSupport.php
+++ b/src/gen/lib/Model/SchemaSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ServiceCharge.php b/src/gen/lib/Model/ServiceCharge.php
index edcbc61b71..023452e25d 100644
--- a/src/gen/lib/Model/ServiceCharge.php
+++ b/src/gen/lib/Model/ServiceCharge.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Session.php b/src/gen/lib/Model/Session.php
index 4a52c4dfc5..7cde34bede 100644
--- a/src/gen/lib/Model/Session.php
+++ b/src/gen/lib/Model/Session.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionSettings.php b/src/gen/lib/Model/SessionSettings.php
index 5d4da2899b..f2d410889c 100644
--- a/src/gen/lib/Model/SessionSettings.php
+++ b/src/gen/lib/Model/SessionSettings.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionTheme.php b/src/gen/lib/Model/SessionTheme.php
index 7662936255..c1f47610b0 100644
--- a/src/gen/lib/Model/SessionTheme.php
+++ b/src/gen/lib/Model/SessionTheme.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLink.php b/src/gen/lib/Model/SharedLink.php
index 29ceaf4ce7..c150924ad4 100644
--- a/src/gen/lib/Model/SharedLink.php
+++ b/src/gen/lib/Model/SharedLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLinkTarget.php b/src/gen/lib/Model/SharedLinkTarget.php
index 4de878c883..07e23d543f 100644
--- a/src/gen/lib/Model/SharedLinkTarget.php
+++ b/src/gen/lib/Model/SharedLinkTarget.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SimpleFormFieldOption.php b/src/gen/lib/Model/SimpleFormFieldOption.php
index b845cce8ee..f889d65820 100644
--- a/src/gen/lib/Model/SimpleFormFieldOption.php
+++ b/src/gen/lib/Model/SimpleFormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SocialLink.php b/src/gen/lib/Model/SocialLink.php
index d0b636797a..8084a4f8b6 100644
--- a/src/gen/lib/Model/SocialLink.php
+++ b/src/gen/lib/Model/SocialLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SortDirection.php b/src/gen/lib/Model/SortDirection.php
index 844e8c2c2e..3bd54826f6 100644
--- a/src/gen/lib/Model/SortDirection.php
+++ b/src/gen/lib/Model/SortDirection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Status.php b/src/gen/lib/Model/Status.php
index 5faefdad28..c670eba566 100644
--- a/src/gen/lib/Model/Status.php
+++ b/src/gen/lib/Model/Status.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Subsidiary.php b/src/gen/lib/Model/Subsidiary.php
new file mode 100644
index 0000000000..3bcaa72acc
--- /dev/null
+++ b/src/gen/lib/Model/Subsidiary.php
@@ -0,0 +1,624 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class Subsidiary implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'Subsidiary';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'id' => 'string',
+ 'parent_id' => 'string',
+ 'name' => 'string',
+ 'status' => 'string',
+ 'custom_mappings' => 'object',
+ 'row_version' => 'string',
+ 'updated_by' => 'string',
+ 'created_by' => 'string',
+ 'updated_at' => '\DateTime',
+ 'created_at' => '\DateTime'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'id' => null,
+ 'parent_id' => null,
+ 'name' => null,
+ 'status' => null,
+ 'custom_mappings' => null,
+ 'row_version' => null,
+ 'updated_by' => null,
+ 'created_by' => null,
+ 'updated_at' => 'date-time',
+ 'created_at' => 'date-time'
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'id' => 'id',
+ 'parent_id' => 'parent_id',
+ 'name' => 'name',
+ 'status' => 'status',
+ 'custom_mappings' => 'custom_mappings',
+ 'row_version' => 'row_version',
+ 'updated_by' => 'updated_by',
+ 'created_by' => 'created_by',
+ 'updated_at' => 'updated_at',
+ 'created_at' => 'created_at'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'id' => 'setId',
+ 'parent_id' => 'setParentId',
+ 'name' => 'setName',
+ 'status' => 'setStatus',
+ 'custom_mappings' => 'setCustomMappings',
+ 'row_version' => 'setRowVersion',
+ 'updated_by' => 'setUpdatedBy',
+ 'created_by' => 'setCreatedBy',
+ 'updated_at' => 'setUpdatedAt',
+ 'created_at' => 'setCreatedAt'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'id' => 'getId',
+ 'parent_id' => 'getParentId',
+ 'name' => 'getName',
+ 'status' => 'getStatus',
+ 'custom_mappings' => 'getCustomMappings',
+ 'row_version' => 'getRowVersion',
+ 'updated_by' => 'getUpdatedBy',
+ 'created_by' => 'getCreatedBy',
+ 'updated_at' => 'getUpdatedAt',
+ 'created_at' => 'getCreatedAt'
+ ];
+
+ /**
+ * 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;
+ }
+
+ const STATUS_ACTIVE = 'active';
+ const STATUS_INACTIVE = 'inactive';
+
+ /**
+ * Gets allowable values of the enum
+ *
+ * @return string[]
+ */
+ public function getStatusAllowableValues()
+ {
+ return [
+ self::STATUS_ACTIVE,
+ self::STATUS_INACTIVE,
+ ];
+ }
+
+ /**
+ * Associative array for storing property values
+ *
+ * @var mixed[]
+ */
+ protected $container = [];
+
+ /**
+ * Constructor
+ *
+ * @param mixed[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['id'] = $data['id'] ?? null;
+ $this->container['parent_id'] = $data['parent_id'] ?? null;
+ $this->container['name'] = $data['name'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['custom_mappings'] = $data['custom_mappings'] ?? null;
+ $this->container['row_version'] = $data['row_version'] ?? null;
+ $this->container['updated_by'] = $data['updated_by'] ?? null;
+ $this->container['created_by'] = $data['created_by'] ?? null;
+ $this->container['updated_at'] = $data['updated_at'] ?? null;
+ $this->container['created_at'] = $data['created_at'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ $allowedValues = $this->getStatusAllowableValues();
+ if (!is_null($this->container['status']) && !in_array($this->container['status'], $allowedValues, true)) {
+ $invalidProperties[] = sprintf(
+ "invalid value '%s' for 'status', must be one of '%s'",
+ $this->container['status'],
+ implode("', '", $allowedValues)
+ );
+ }
+
+ 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 id
+ *
+ * @return string|null
+ */
+ public function getId()
+ {
+ return $this->container['id'];
+ }
+
+ /**
+ * Sets id
+ *
+ * @param string|null $id A unique identifier for an object.
+ *
+ * @return self
+ */
+ public function setId($id)
+ {
+ $this->container['id'] = $id;
+
+ return $this;
+ }
+
+ /**
+ * Gets parent_id
+ *
+ * @return string|null
+ */
+ public function getParentId()
+ {
+ return $this->container['parent_id'];
+ }
+
+ /**
+ * Sets parent_id
+ *
+ * @param string|null $parent_id A unique identifier for an object.
+ *
+ * @return self
+ */
+ public function setParentId($parent_id)
+ {
+ $this->container['parent_id'] = $parent_id;
+
+ return $this;
+ }
+
+ /**
+ * Gets name
+ *
+ * @return string|null
+ */
+ public function getName()
+ {
+ return $this->container['name'];
+ }
+
+ /**
+ * Sets name
+ *
+ * @param string|null $name The name of the company.
+ *
+ * @return self
+ */
+ public function setName($name)
+ {
+ $this->container['name'] = $name;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string|null
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string|null $status Based on the status some functionality is enabled or disabled.
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $allowedValues = $this->getStatusAllowableValues();
+ if (!is_null($status) && !in_array($status, $allowedValues, true)) {
+ throw new \InvalidArgumentException(
+ sprintf(
+ "Invalid value '%s' for 'status', must be one of '%s'",
+ $status,
+ implode("', '", $allowedValues)
+ )
+ );
+ }
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets custom_mappings
+ *
+ * @return object|null
+ */
+ public function getCustomMappings()
+ {
+ return $this->container['custom_mappings'];
+ }
+
+ /**
+ * Sets custom_mappings
+ *
+ * @param object|null $custom_mappings When custom mappings are configured on the resource, the result is included here.
+ *
+ * @return self
+ */
+ public function setCustomMappings($custom_mappings)
+ {
+ $this->container['custom_mappings'] = $custom_mappings;
+
+ return $this;
+ }
+
+ /**
+ * Gets row_version
+ *
+ * @return string|null
+ */
+ public function getRowVersion()
+ {
+ return $this->container['row_version'];
+ }
+
+ /**
+ * Sets row_version
+ *
+ * @param string|null $row_version A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.
+ *
+ * @return self
+ */
+ public function setRowVersion($row_version)
+ {
+ $this->container['row_version'] = $row_version;
+
+ return $this;
+ }
+
+ /**
+ * Gets updated_by
+ *
+ * @return string|null
+ */
+ public function getUpdatedBy()
+ {
+ return $this->container['updated_by'];
+ }
+
+ /**
+ * Sets updated_by
+ *
+ * @param string|null $updated_by The user who last updated the object.
+ *
+ * @return self
+ */
+ public function setUpdatedBy($updated_by)
+ {
+ $this->container['updated_by'] = $updated_by;
+
+ return $this;
+ }
+
+ /**
+ * Gets created_by
+ *
+ * @return string|null
+ */
+ public function getCreatedBy()
+ {
+ return $this->container['created_by'];
+ }
+
+ /**
+ * Sets created_by
+ *
+ * @param string|null $created_by The user who created the object.
+ *
+ * @return self
+ */
+ public function setCreatedBy($created_by)
+ {
+ $this->container['created_by'] = $created_by;
+
+ return $this;
+ }
+
+ /**
+ * Gets updated_at
+ *
+ * @return \DateTime|null
+ */
+ public function getUpdatedAt()
+ {
+ return $this->container['updated_at'];
+ }
+
+ /**
+ * Sets updated_at
+ *
+ * @param \DateTime|null $updated_at The date and time when the object was last updated.
+ *
+ * @return self
+ */
+ public function setUpdatedAt($updated_at)
+ {
+ $this->container['updated_at'] = $updated_at;
+
+ return $this;
+ }
+
+ /**
+ * Gets created_at
+ *
+ * @return \DateTime|null
+ */
+ public function getCreatedAt()
+ {
+ return $this->container['created_at'];
+ }
+
+ /**
+ * Sets created_at
+ *
+ * @param \DateTime|null $created_at The date and time when the object was created.
+ *
+ * @return self
+ */
+ public function setCreatedAt($created_at)
+ {
+ $this->container['created_at'] = $created_at;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/Supplier.php b/src/gen/lib/Model/Supplier.php
index 2e9cdf6db2..46a80f28e5 100644
--- a/src/gen/lib/Model/Supplier.php
+++ b/src/gen/lib/Model/Supplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersFilter.php b/src/gen/lib/Model/SuppliersFilter.php
index 8c0fcaaadc..7005333666 100644
--- a/src/gen/lib/Model/SuppliersFilter.php
+++ b/src/gen/lib/Model/SuppliersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersSort.php b/src/gen/lib/Model/SuppliersSort.php
index e0f983969c..bb2e17fd71 100644
--- a/src/gen/lib/Model/SuppliersSort.php
+++ b/src/gen/lib/Model/SuppliersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SupportedProperty.php b/src/gen/lib/Model/SupportedProperty.php
index ff632ca6b1..545d901714 100644
--- a/src/gen/lib/Model/SupportedProperty.php
+++ b/src/gen/lib/Model/SupportedProperty.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tax.php b/src/gen/lib/Model/Tax.php
index f2a29ceaf0..b104e756ba 100644
--- a/src/gen/lib/Model/Tax.php
+++ b/src/gen/lib/Model/Tax.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRate.php b/src/gen/lib/Model/TaxRate.php
index 218da666ed..298b6414dd 100644
--- a/src/gen/lib/Model/TaxRate.php
+++ b/src/gen/lib/Model/TaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRatesFilter.php b/src/gen/lib/Model/TaxRatesFilter.php
index 162d1b43b3..0e638951a1 100644
--- a/src/gen/lib/Model/TaxRatesFilter.php
+++ b/src/gen/lib/Model/TaxRatesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Team.php b/src/gen/lib/Model/Team.php
index 6ba46ab822..610791c845 100644
--- a/src/gen/lib/Model/Team.php
+++ b/src/gen/lib/Model/Team.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tender.php b/src/gen/lib/Model/Tender.php
index 022c93d37b..3081f84887 100644
--- a/src/gen/lib/Model/Tender.php
+++ b/src/gen/lib/Model/Tender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Ticket.php b/src/gen/lib/Model/Ticket.php
index f548df7122..7812234f54 100644
--- a/src/gen/lib/Model/Ticket.php
+++ b/src/gen/lib/Model/Ticket.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TicketsSort.php b/src/gen/lib/Model/TicketsSort.php
index 76ecffde8a..90b13f56fb 100644
--- a/src/gen/lib/Model/TicketsSort.php
+++ b/src/gen/lib/Model/TicketsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequest.php b/src/gen/lib/Model/TimeOffRequest.php
index 39aac3c7c2..b726dd3e8d 100644
--- a/src/gen/lib/Model/TimeOffRequest.php
+++ b/src/gen/lib/Model/TimeOffRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestNotes.php b/src/gen/lib/Model/TimeOffRequestNotes.php
index c71b7336eb..f484f3d277 100644
--- a/src/gen/lib/Model/TimeOffRequestNotes.php
+++ b/src/gen/lib/Model/TimeOffRequestNotes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestsFilter.php b/src/gen/lib/Model/TimeOffRequestsFilter.php
index 584a4e7e72..5418c0f421 100644
--- a/src/gen/lib/Model/TimeOffRequestsFilter.php
+++ b/src/gen/lib/Model/TimeOffRequestsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponse.php b/src/gen/lib/Model/TooManyRequestsResponse.php
index 698438dee5..f8ea15c27e 100644
--- a/src/gen/lib/Model/TooManyRequestsResponse.php
+++ b/src/gen/lib/Model/TooManyRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponseDetail.php b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
index 5e786933c2..137367c92c 100644
--- a/src/gen/lib/Model/TooManyRequestsResponseDetail.php
+++ b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TrackingItem.php b/src/gen/lib/Model/TrackingItem.php
index c4cc03323d..081534d28f 100644
--- a/src/gen/lib/Model/TrackingItem.php
+++ b/src/gen/lib/Model/TrackingItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnauthorizedResponse.php b/src/gen/lib/Model/UnauthorizedResponse.php
index d08d2cb51f..73c068398c 100644
--- a/src/gen/lib/Model/UnauthorizedResponse.php
+++ b/src/gen/lib/Model/UnauthorizedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnexpectedErrorResponse.php b/src/gen/lib/Model/UnexpectedErrorResponse.php
index 83786f7c2b..421b110c55 100644
--- a/src/gen/lib/Model/UnexpectedErrorResponse.php
+++ b/src/gen/lib/Model/UnexpectedErrorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedApiId.php b/src/gen/lib/Model/UnifiedApiId.php
index b9ac708a83..07911af220 100644
--- a/src/gen/lib/Model/UnifiedApiId.php
+++ b/src/gen/lib/Model/UnifiedApiId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFile.php b/src/gen/lib/Model/UnifiedFile.php
index 66e6aeddd4..94f1758135 100644
--- a/src/gen/lib/Model/UnifiedFile.php
+++ b/src/gen/lib/Model/UnifiedFile.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFilePermissions.php b/src/gen/lib/Model/UnifiedFilePermissions.php
index eb5332d1d0..dde48054bb 100644
--- a/src/gen/lib/Model/UnifiedFilePermissions.php
+++ b/src/gen/lib/Model/UnifiedFilePermissions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedId.php b/src/gen/lib/Model/UnifiedId.php
index a070721e6f..552c1412d6 100644
--- a/src/gen/lib/Model/UnifiedId.php
+++ b/src/gen/lib/Model/UnifiedId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnprocessableResponse.php b/src/gen/lib/Model/UnprocessableResponse.php
index 3fc40f75cf..e1b0523efb 100644
--- a/src/gen/lib/Model/UnprocessableResponse.php
+++ b/src/gen/lib/Model/UnprocessableResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateActivityResponse.php b/src/gen/lib/Model/UpdateActivityResponse.php
index 89146ddb27..2e23c24943 100644
--- a/src/gen/lib/Model/UpdateActivityResponse.php
+++ b/src/gen/lib/Model/UpdateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicantResponse.php b/src/gen/lib/Model/UpdateApplicantResponse.php
index 80dda46737..5e1ca9bd2a 100644
--- a/src/gen/lib/Model/UpdateApplicantResponse.php
+++ b/src/gen/lib/Model/UpdateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicationResponse.php b/src/gen/lib/Model/UpdateApplicationResponse.php
index 1647ba9f9a..5c7aee0b82 100644
--- a/src/gen/lib/Model/UpdateApplicationResponse.php
+++ b/src/gen/lib/Model/UpdateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateBillResponse.php b/src/gen/lib/Model/UpdateBillResponse.php
index eefbce7d40..e3ced6586c 100644
--- a/src/gen/lib/Model/UpdateBillResponse.php
+++ b/src/gen/lib/Model/UpdateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCommentResponse.php b/src/gen/lib/Model/UpdateCommentResponse.php
index 45446acce0..d4df1fb307 100644
--- a/src/gen/lib/Model/UpdateCommentResponse.php
+++ b/src/gen/lib/Model/UpdateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCompanyResponse.php b/src/gen/lib/Model/UpdateCompanyResponse.php
index f555ab8dce..4184e4c0fb 100644
--- a/src/gen/lib/Model/UpdateCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConnectionResponse.php b/src/gen/lib/Model/UpdateConnectionResponse.php
index 3ceec26a1f..9060eaf6ae 100644
--- a/src/gen/lib/Model/UpdateConnectionResponse.php
+++ b/src/gen/lib/Model/UpdateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerRequest.php b/src/gen/lib/Model/UpdateConsumerRequest.php
index 5acd8438d6..ceb0175cfd 100644
--- a/src/gen/lib/Model/UpdateConsumerRequest.php
+++ b/src/gen/lib/Model/UpdateConsumerRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerResponse.php b/src/gen/lib/Model/UpdateConsumerResponse.php
index 1d91a314e7..ac7d52dd68 100644
--- a/src/gen/lib/Model/UpdateConsumerResponse.php
+++ b/src/gen/lib/Model/UpdateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateContactResponse.php b/src/gen/lib/Model/UpdateContactResponse.php
index 82432eabb8..cf7581b7e4 100644
--- a/src/gen/lib/Model/UpdateContactResponse.php
+++ b/src/gen/lib/Model/UpdateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCreditNoteResponse.php b/src/gen/lib/Model/UpdateCreditNoteResponse.php
index 551f058922..0966a3ffcd 100644
--- a/src/gen/lib/Model/UpdateCreditNoteResponse.php
+++ b/src/gen/lib/Model/UpdateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingRequest.php b/src/gen/lib/Model/UpdateCustomMappingRequest.php
index 6e049821aa..b9c4cb0320 100644
--- a/src/gen/lib/Model/UpdateCustomMappingRequest.php
+++ b/src/gen/lib/Model/UpdateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingResponse.php b/src/gen/lib/Model/UpdateCustomMappingResponse.php
index 02724f0623..9f6e8ce149 100644
--- a/src/gen/lib/Model/UpdateCustomMappingResponse.php
+++ b/src/gen/lib/Model/UpdateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomerResponse.php b/src/gen/lib/Model/UpdateCustomerResponse.php
index 5f226de518..e8520221cd 100644
--- a/src/gen/lib/Model/UpdateCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDepartmentResponse.php b/src/gen/lib/Model/UpdateDepartmentResponse.php
index 9a68f7856c..087b56d28a 100644
--- a/src/gen/lib/Model/UpdateDepartmentResponse.php
+++ b/src/gen/lib/Model/UpdateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveGroupResponse.php b/src/gen/lib/Model/UpdateDriveGroupResponse.php
index f52ca1d9dd..1034af58b6 100644
--- a/src/gen/lib/Model/UpdateDriveGroupResponse.php
+++ b/src/gen/lib/Model/UpdateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveResponse.php b/src/gen/lib/Model/UpdateDriveResponse.php
index d098a92b87..d7bbf9cc13 100644
--- a/src/gen/lib/Model/UpdateDriveResponse.php
+++ b/src/gen/lib/Model/UpdateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
index 2f98cd4c3f..022f4dd771 100644
--- a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
index cc6de93d79..d433c757c8 100644
--- a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEmployeeResponse.php b/src/gen/lib/Model/UpdateEmployeeResponse.php
index 7d86ea9dd4..bc110d7679 100644
--- a/src/gen/lib/Model/UpdateEmployeeResponse.php
+++ b/src/gen/lib/Model/UpdateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileRequest.php b/src/gen/lib/Model/UpdateFileRequest.php
index f822cbda8c..e4e4db24ab 100644
--- a/src/gen/lib/Model/UpdateFileRequest.php
+++ b/src/gen/lib/Model/UpdateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileResponse.php b/src/gen/lib/Model/UpdateFileResponse.php
index 56994ccf35..d8c7fb35b3 100644
--- a/src/gen/lib/Model/UpdateFileResponse.php
+++ b/src/gen/lib/Model/UpdateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderRequest.php b/src/gen/lib/Model/UpdateFolderRequest.php
index c815109176..93f9bf6e79 100644
--- a/src/gen/lib/Model/UpdateFolderRequest.php
+++ b/src/gen/lib/Model/UpdateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderResponse.php b/src/gen/lib/Model/UpdateFolderResponse.php
index 8c197a90af..c96417cd98 100644
--- a/src/gen/lib/Model/UpdateFolderResponse.php
+++ b/src/gen/lib/Model/UpdateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateHrisCompanyResponse.php b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
index 50b9ebcf36..df4a0dc31d 100644
--- a/src/gen/lib/Model/UpdateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
index a5067e202c..7f88aa2e1c 100644
--- a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceResponse.php b/src/gen/lib/Model/UpdateInvoiceResponse.php
index 2e69640348..82b7e1e738 100644
--- a/src/gen/lib/Model/UpdateInvoiceResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateItemResponse.php b/src/gen/lib/Model/UpdateItemResponse.php
index bde25c7a5a..fd3e1e66d5 100644
--- a/src/gen/lib/Model/UpdateItemResponse.php
+++ b/src/gen/lib/Model/UpdateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJobResponse.php b/src/gen/lib/Model/UpdateJobResponse.php
index ab6f0521bf..17c63eefbd 100644
--- a/src/gen/lib/Model/UpdateJobResponse.php
+++ b/src/gen/lib/Model/UpdateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJournalEntryResponse.php b/src/gen/lib/Model/UpdateJournalEntryResponse.php
index e939d4181e..23afc75195 100644
--- a/src/gen/lib/Model/UpdateJournalEntryResponse.php
+++ b/src/gen/lib/Model/UpdateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLeadResponse.php b/src/gen/lib/Model/UpdateLeadResponse.php
index 96993632ba..def94669a0 100644
--- a/src/gen/lib/Model/UpdateLeadResponse.php
+++ b/src/gen/lib/Model/UpdateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLedgerAccountResponse.php b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
index f04bdf3a61..02d0045083 100644
--- a/src/gen/lib/Model/UpdateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLocationResponse.php b/src/gen/lib/Model/UpdateLocationResponse.php
index cce506cf6b..1871d9dac5 100644
--- a/src/gen/lib/Model/UpdateLocationResponse.php
+++ b/src/gen/lib/Model/UpdateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMerchantResponse.php b/src/gen/lib/Model/UpdateMerchantResponse.php
index 33df0ec26a..bd71fb28e3 100644
--- a/src/gen/lib/Model/UpdateMerchantResponse.php
+++ b/src/gen/lib/Model/UpdateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMessageResponse.php b/src/gen/lib/Model/UpdateMessageResponse.php
index b89afb60ae..17f51f8672 100644
--- a/src/gen/lib/Model/UpdateMessageResponse.php
+++ b/src/gen/lib/Model/UpdateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierGroupResponse.php b/src/gen/lib/Model/UpdateModifierGroupResponse.php
index 94c5142c99..3ba3000ef7 100644
--- a/src/gen/lib/Model/UpdateModifierGroupResponse.php
+++ b/src/gen/lib/Model/UpdateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierResponse.php b/src/gen/lib/Model/UpdateModifierResponse.php
index ea017e6d38..39ca561d36 100644
--- a/src/gen/lib/Model/UpdateModifierResponse.php
+++ b/src/gen/lib/Model/UpdateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateNoteResponse.php b/src/gen/lib/Model/UpdateNoteResponse.php
index a0475e59c3..52959f282b 100644
--- a/src/gen/lib/Model/UpdateNoteResponse.php
+++ b/src/gen/lib/Model/UpdateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOpportunityResponse.php b/src/gen/lib/Model/UpdateOpportunityResponse.php
index d7e5d50457..9c670253b8 100644
--- a/src/gen/lib/Model/UpdateOpportunityResponse.php
+++ b/src/gen/lib/Model/UpdateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderResponse.php b/src/gen/lib/Model/UpdateOrderResponse.php
index 3798c58724..cbc7b99ae8 100644
--- a/src/gen/lib/Model/UpdateOrderResponse.php
+++ b/src/gen/lib/Model/UpdateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderTypeResponse.php b/src/gen/lib/Model/UpdateOrderTypeResponse.php
index e06f24e221..ec65d96186 100644
--- a/src/gen/lib/Model/UpdateOrderTypeResponse.php
+++ b/src/gen/lib/Model/UpdateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePaymentResponse.php b/src/gen/lib/Model/UpdatePaymentResponse.php
index 0eebd63ba1..d05edae012 100644
--- a/src/gen/lib/Model/UpdatePaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePipelineResponse.php b/src/gen/lib/Model/UpdatePipelineResponse.php
index 0b9614b6e4..d57173b406 100644
--- a/src/gen/lib/Model/UpdatePipelineResponse.php
+++ b/src/gen/lib/Model/UpdatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePosPaymentResponse.php b/src/gen/lib/Model/UpdatePosPaymentResponse.php
index 8f47eefa68..290fa3ff5f 100644
--- a/src/gen/lib/Model/UpdatePosPaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateProductResponse.php b/src/gen/lib/Model/UpdateProductResponse.php
index 062ea015d9..f1c870e420 100644
--- a/src/gen/lib/Model/UpdateProductResponse.php
+++ b/src/gen/lib/Model/UpdateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
index e19adcc26e..cf761c0fbb 100644
--- a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSharedLinkResponse.php b/src/gen/lib/Model/UpdateSharedLinkResponse.php
index 1dc6b58bf5..48b125e586 100644
--- a/src/gen/lib/Model/UpdateSharedLinkResponse.php
+++ b/src/gen/lib/Model/UpdateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSupplierResponse.php b/src/gen/lib/Model/UpdateSupplierResponse.php
index 14cf86c399..81a5519a54 100644
--- a/src/gen/lib/Model/UpdateSupplierResponse.php
+++ b/src/gen/lib/Model/UpdateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTaxRateResponse.php b/src/gen/lib/Model/UpdateTaxRateResponse.php
index 3c8ea8a858..e5c41b4322 100644
--- a/src/gen/lib/Model/UpdateTaxRateResponse.php
+++ b/src/gen/lib/Model/UpdateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTenderResponse.php b/src/gen/lib/Model/UpdateTenderResponse.php
index 7aa840b010..15aa64d386 100644
--- a/src/gen/lib/Model/UpdateTenderResponse.php
+++ b/src/gen/lib/Model/UpdateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTicketResponse.php b/src/gen/lib/Model/UpdateTicketResponse.php
index ebebf43d72..00708f5eda 100644
--- a/src/gen/lib/Model/UpdateTicketResponse.php
+++ b/src/gen/lib/Model/UpdateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
index 860ca928ce..a1005d758e 100644
--- a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUploadSessionResponse.php b/src/gen/lib/Model/UpdateUploadSessionResponse.php
index 2b07ada4f8..113d099a3c 100644
--- a/src/gen/lib/Model/UpdateUploadSessionResponse.php
+++ b/src/gen/lib/Model/UpdateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUserResponse.php b/src/gen/lib/Model/UpdateUserResponse.php
index f40f3949f4..cad146df43 100644
--- a/src/gen/lib/Model/UpdateUserResponse.php
+++ b/src/gen/lib/Model/UpdateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookRequest.php b/src/gen/lib/Model/UpdateWebhookRequest.php
index 31cba57c1e..b3b9247082 100644
--- a/src/gen/lib/Model/UpdateWebhookRequest.php
+++ b/src/gen/lib/Model/UpdateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookResponse.php b/src/gen/lib/Model/UpdateWebhookResponse.php
index 11a05ba83b..a37641a987 100644
--- a/src/gen/lib/Model/UpdateWebhookResponse.php
+++ b/src/gen/lib/Model/UpdateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UploadSession.php b/src/gen/lib/Model/UploadSession.php
index 1f38a55f08..3eb3f3f75c 100644
--- a/src/gen/lib/Model/UploadSession.php
+++ b/src/gen/lib/Model/UploadSession.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/User.php b/src/gen/lib/Model/User.php
index 6966d0da62..2e927178f7 100644
--- a/src/gen/lib/Model/User.php
+++ b/src/gen/lib/Model/User.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VaultEventType.php b/src/gen/lib/Model/VaultEventType.php
index 00cb0bf45e..4bc93e4d31 100644
--- a/src/gen/lib/Model/VaultEventType.php
+++ b/src/gen/lib/Model/VaultEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VirtualWebhooks.php b/src/gen/lib/Model/VirtualWebhooks.php
index 3f231d5a3e..a3b139ba6b 100644
--- a/src/gen/lib/Model/VirtualWebhooks.php
+++ b/src/gen/lib/Model/VirtualWebhooks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WalletDetails.php b/src/gen/lib/Model/WalletDetails.php
index f46578758a..b6e6982352 100644
--- a/src/gen/lib/Model/WalletDetails.php
+++ b/src/gen/lib/Model/WalletDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Webhook.php b/src/gen/lib/Model/Webhook.php
index e39569aee5..3225cacfec 100644
--- a/src/gen/lib/Model/Webhook.php
+++ b/src/gen/lib/Model/Webhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEvent.php b/src/gen/lib/Model/WebhookEvent.php
index 399b0a63a9..8d59528d4e 100644
--- a/src/gen/lib/Model/WebhookEvent.php
+++ b/src/gen/lib/Model/WebhookEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLog.php b/src/gen/lib/Model/WebhookEventLog.php
index 7d8108da90..201874a77a 100644
--- a/src/gen/lib/Model/WebhookEventLog.php
+++ b/src/gen/lib/Model/WebhookEventLog.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogAttempts.php b/src/gen/lib/Model/WebhookEventLogAttempts.php
index ec99a787a0..69e25ddf30 100644
--- a/src/gen/lib/Model/WebhookEventLogAttempts.php
+++ b/src/gen/lib/Model/WebhookEventLogAttempts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogService.php b/src/gen/lib/Model/WebhookEventLogService.php
index 34d175dfb3..c2ea2997b3 100644
--- a/src/gen/lib/Model/WebhookEventLogService.php
+++ b/src/gen/lib/Model/WebhookEventLogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilter.php b/src/gen/lib/Model/WebhookEventLogsFilter.php
index c5493ef635..8b018bd141 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilter.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilterService.php b/src/gen/lib/Model/WebhookEventLogsFilterService.php
index 9df2beda2d..17a79c4a45 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilterService.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilterService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventType.php b/src/gen/lib/Model/WebhookEventType.php
index 82f06b234f..7a80b2fd19 100644
--- a/src/gen/lib/Model/WebhookEventType.php
+++ b/src/gen/lib/Model/WebhookEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSubscription.php b/src/gen/lib/Model/WebhookSubscription.php
index 1437f141e5..b1ad703863 100644
--- a/src/gen/lib/Model/WebhookSubscription.php
+++ b/src/gen/lib/Model/WebhookSubscription.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSupport.php b/src/gen/lib/Model/WebhookSupport.php
index 8d16dda102..a40e24231e 100644
--- a/src/gen/lib/Model/WebhookSupport.php
+++ b/src/gen/lib/Model/WebhookSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Website.php b/src/gen/lib/Model/Website.php
index 5e2699eca2..1f622e3d7f 100644
--- a/src/gen/lib/Model/Website.php
+++ b/src/gen/lib/Model/Website.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ObjectSerializer.php b/src/gen/lib/ObjectSerializer.php
index fc4877b5fa..6240a66e13 100644
--- a/src/gen/lib/ObjectSerializer.php
+++ b/src/gen/lib/ObjectSerializer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/AccountingApiTest.php b/src/gen/test/Api/AccountingApiTest.php
index 07ba567d81..6987304347 100644
--- a/src/gen/test/Api/AccountingApiTest.php
+++ b/src/gen/test/Api/AccountingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -647,6 +647,30 @@ public function testPurchaseOrdersUpdate()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test case for subsidiariesAll
+ *
+ * List Subsidiaries.
+ *
+ */
+ public function testSubsidiariesAll()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test case for subsidiariesOne
+ *
+ * Get Subsidiary.
+ *
+ */
+ public function testSubsidiariesOne()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test case for suppliersAdd
*
diff --git a/src/gen/test/Api/AtsApiTest.php b/src/gen/test/Api/AtsApiTest.php
index b957743b63..e727e88f32 100644
--- a/src/gen/test/Api/AtsApiTest.php
+++ b/src/gen/test/Api/AtsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/ConnectorApiTest.php b/src/gen/test/Api/ConnectorApiTest.php
index dc154bbc79..d9808589ec 100644
--- a/src/gen/test/Api/ConnectorApiTest.php
+++ b/src/gen/test/Api/ConnectorApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/CrmApiTest.php b/src/gen/test/Api/CrmApiTest.php
index f4eb9e5776..358fcbf2e7 100644
--- a/src/gen/test/Api/CrmApiTest.php
+++ b/src/gen/test/Api/CrmApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/EcommerceApiTest.php b/src/gen/test/Api/EcommerceApiTest.php
index 1eb7a8fabb..31d9da7044 100644
--- a/src/gen/test/Api/EcommerceApiTest.php
+++ b/src/gen/test/Api/EcommerceApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/FileStorageApiTest.php b/src/gen/test/Api/FileStorageApiTest.php
index c96d8082cf..dc120301a3 100644
--- a/src/gen/test/Api/FileStorageApiTest.php
+++ b/src/gen/test/Api/FileStorageApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/HrisApiTest.php b/src/gen/test/Api/HrisApiTest.php
index efb37eb869..8dd4f1404c 100644
--- a/src/gen/test/Api/HrisApiTest.php
+++ b/src/gen/test/Api/HrisApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/IssueTrackingApiTest.php b/src/gen/test/Api/IssueTrackingApiTest.php
index 7a441b4c40..b4ddb82f44 100644
--- a/src/gen/test/Api/IssueTrackingApiTest.php
+++ b/src/gen/test/Api/IssueTrackingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/LeadApiTest.php b/src/gen/test/Api/LeadApiTest.php
index ce9b11bd2f..63b367b086 100644
--- a/src/gen/test/Api/LeadApiTest.php
+++ b/src/gen/test/Api/LeadApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/PosApiTest.php b/src/gen/test/Api/PosApiTest.php
index eee4492bef..a9cf3030ab 100644
--- a/src/gen/test/Api/PosApiTest.php
+++ b/src/gen/test/Api/PosApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/SmsApiTest.php b/src/gen/test/Api/SmsApiTest.php
index 13150b91d1..10432ccacd 100644
--- a/src/gen/test/Api/SmsApiTest.php
+++ b/src/gen/test/Api/SmsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/VaultApiTest.php b/src/gen/test/Api/VaultApiTest.php
index c61a0a8558..09e74472e5 100644
--- a/src/gen/test/Api/VaultApiTest.php
+++ b/src/gen/test/Api/VaultApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/WebhookApiTest.php b/src/gen/test/Api/WebhookApiTest.php
index 20bbbe136e..d1057f3c05 100644
--- a/src/gen/test/Api/WebhookApiTest.php
+++ b/src/gen/test/Api/WebhookApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingEventTypeTest.php b/src/gen/test/Model/AccountingEventTypeTest.php
index 935a3e014a..b7a959c913 100644
--- a/src/gen/test/Model/AccountingEventTypeTest.php
+++ b/src/gen/test/Model/AccountingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivitiesFilterTest.php b/src/gen/test/Model/ActivitiesFilterTest.php
index fcb63504dc..7debb2d29a 100644
--- a/src/gen/test/Model/ActivitiesFilterTest.php
+++ b/src/gen/test/Model/ActivitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivitiesSortTest.php b/src/gen/test/Model/ActivitiesSortTest.php
index 305512e239..edd8ca4d10 100644
--- a/src/gen/test/Model/ActivitiesSortTest.php
+++ b/src/gen/test/Model/ActivitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityAttendeeTest.php b/src/gen/test/Model/ActivityAttendeeTest.php
index 8d4e6fbaed..2a0a7f651d 100644
--- a/src/gen/test/Model/ActivityAttendeeTest.php
+++ b/src/gen/test/Model/ActivityAttendeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityTest.php b/src/gen/test/Model/ActivityTest.php
index 564b19d58a..c06da51334 100644
--- a/src/gen/test/Model/ActivityTest.php
+++ b/src/gen/test/Model/ActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AddressTest.php b/src/gen/test/Model/AddressTest.php
index 96725426a4..3dc474010d 100644
--- a/src/gen/test/Model/AddressTest.php
+++ b/src/gen/test/Model/AddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
index 8123446470..ea265e0d03 100644
--- a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageTest.php
index ca41d60ce9..60d03e12bc 100644
--- a/src/gen/test/Model/ApiResourceCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
index 648af49a84..c3674c2d45 100644
--- a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
+++ b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceTest.php b/src/gen/test/Model/ApiResourceTest.php
index 5933d06c6a..73861d2066 100644
--- a/src/gen/test/Model/ApiResourceTest.php
+++ b/src/gen/test/Model/ApiResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourcesTest.php b/src/gen/test/Model/ApiResourcesTest.php
index 513a6c6dc5..237795ad82 100644
--- a/src/gen/test/Model/ApiResourcesTest.php
+++ b/src/gen/test/Model/ApiResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiStatusTest.php b/src/gen/test/Model/ApiStatusTest.php
index 95eba4bb00..4ebddb37bb 100644
--- a/src/gen/test/Model/ApiStatusTest.php
+++ b/src/gen/test/Model/ApiStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiTest.php b/src/gen/test/Model/ApiTest.php
index ca6f3db89d..791b76a1e5 100644
--- a/src/gen/test/Model/ApiTest.php
+++ b/src/gen/test/Model/ApiTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApisFilterTest.php b/src/gen/test/Model/ApisFilterTest.php
index 5e27b95a20..125503de6f 100644
--- a/src/gen/test/Model/ApisFilterTest.php
+++ b/src/gen/test/Model/ApisFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantSocialLinksTest.php b/src/gen/test/Model/ApplicantSocialLinksTest.php
index 28ca3e979d..92747dbc37 100644
--- a/src/gen/test/Model/ApplicantSocialLinksTest.php
+++ b/src/gen/test/Model/ApplicantSocialLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantTest.php b/src/gen/test/Model/ApplicantTest.php
index f0a348dd2b..b771f33f16 100644
--- a/src/gen/test/Model/ApplicantTest.php
+++ b/src/gen/test/Model/ApplicantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantWebsitesTest.php b/src/gen/test/Model/ApplicantWebsitesTest.php
index bdf6e225e4..0130ee3a32 100644
--- a/src/gen/test/Model/ApplicantWebsitesTest.php
+++ b/src/gen/test/Model/ApplicantWebsitesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantsFilterTest.php b/src/gen/test/Model/ApplicantsFilterTest.php
index 357e8d8a38..133d0df22f 100644
--- a/src/gen/test/Model/ApplicantsFilterTest.php
+++ b/src/gen/test/Model/ApplicantsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationStageTest.php b/src/gen/test/Model/ApplicationStageTest.php
index ad0dc7331b..bf31fb6ebb 100644
--- a/src/gen/test/Model/ApplicationStageTest.php
+++ b/src/gen/test/Model/ApplicationStageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationTest.php b/src/gen/test/Model/ApplicationTest.php
index ae54f754b0..c92bf327f0 100644
--- a/src/gen/test/Model/ApplicationTest.php
+++ b/src/gen/test/Model/ApplicationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AssigneeTest.php b/src/gen/test/Model/AssigneeTest.php
index d999db72c0..a7b0cb2853 100644
--- a/src/gen/test/Model/AssigneeTest.php
+++ b/src/gen/test/Model/AssigneeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsActivityTest.php b/src/gen/test/Model/AtsActivityTest.php
index 94f04b0688..be5ec42ca5 100644
--- a/src/gen/test/Model/AtsActivityTest.php
+++ b/src/gen/test/Model/AtsActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsEventTypeTest.php b/src/gen/test/Model/AtsEventTypeTest.php
index 2b06de9467..372882d99a 100644
--- a/src/gen/test/Model/AtsEventTypeTest.php
+++ b/src/gen/test/Model/AtsEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AuthTypeTest.php b/src/gen/test/Model/AuthTypeTest.php
index b63f114d4b..fae5516a91 100644
--- a/src/gen/test/Model/AuthTypeTest.php
+++ b/src/gen/test/Model/AuthTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BadRequestResponseTest.php b/src/gen/test/Model/BadRequestResponseTest.php
index e973c0513a..453e1101bc 100644
--- a/src/gen/test/Model/BadRequestResponseTest.php
+++ b/src/gen/test/Model/BadRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
index 675ff20a0c..523a83427f 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
index 46337696c5..b95a3f884a 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
index d5e21152ca..e3053b2d81 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
index 040a7b62d3..b37b9c5c15 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsTest.php
index 549f5a25a5..b8ca3ea014 100644
--- a/src/gen/test/Model/BalanceSheetAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityItemsTest.php b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
index e3b6a3cdf5..9fee0ca311 100644
--- a/src/gen/test/Model/BalanceSheetEquityItemsTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityTest.php b/src/gen/test/Model/BalanceSheetEquityTest.php
index ac6f24d9e8..1033803a45 100644
--- a/src/gen/test/Model/BalanceSheetEquityTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetFilterTest.php b/src/gen/test/Model/BalanceSheetFilterTest.php
index 636aa5fbaf..98782e28e8 100644
--- a/src/gen/test/Model/BalanceSheetFilterTest.php
+++ b/src/gen/test/Model/BalanceSheetFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
index c41f5c073c..2341c8b116 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
index 1a3154e2a9..18435b6586 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetTest.php b/src/gen/test/Model/BalanceSheetTest.php
index 60e09721da..be43275755 100644
--- a/src/gen/test/Model/BalanceSheetTest.php
+++ b/src/gen/test/Model/BalanceSheetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BankAccountTest.php b/src/gen/test/Model/BankAccountTest.php
index 7bd07274dd..1829879387 100644
--- a/src/gen/test/Model/BankAccountTest.php
+++ b/src/gen/test/Model/BankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BenefitTest.php b/src/gen/test/Model/BenefitTest.php
index aabb55c534..4ea0b47efc 100644
--- a/src/gen/test/Model/BenefitTest.php
+++ b/src/gen/test/Model/BenefitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillLineItemTest.php b/src/gen/test/Model/BillLineItemTest.php
index 494e985e8f..3c14fdff8d 100644
--- a/src/gen/test/Model/BillLineItemTest.php
+++ b/src/gen/test/Model/BillLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillTest.php b/src/gen/test/Model/BillTest.php
index 290a86f6f6..73bb0b9c1b 100644
--- a/src/gen/test/Model/BillTest.php
+++ b/src/gen/test/Model/BillTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsFilterTest.php b/src/gen/test/Model/BillsFilterTest.php
index ab62c2ca3d..afa67a3a15 100644
--- a/src/gen/test/Model/BillsFilterTest.php
+++ b/src/gen/test/Model/BillsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsSortTest.php b/src/gen/test/Model/BillsSortTest.php
index 01ee407485..47eba7231d 100644
--- a/src/gen/test/Model/BillsSortTest.php
+++ b/src/gen/test/Model/BillsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BranchTest.php b/src/gen/test/Model/BranchTest.php
index b420ae7f83..1760470f2a 100644
--- a/src/gen/test/Model/BranchTest.php
+++ b/src/gen/test/Model/BranchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CashDetailsTest.php b/src/gen/test/Model/CashDetailsTest.php
index 936510166c..8fb9142d5d 100644
--- a/src/gen/test/Model/CashDetailsTest.php
+++ b/src/gen/test/Model/CashDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTagTest.php b/src/gen/test/Model/CollectionTagTest.php
index b26fc64822..5883ffa384 100644
--- a/src/gen/test/Model/CollectionTagTest.php
+++ b/src/gen/test/Model/CollectionTagTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTest.php b/src/gen/test/Model/CollectionTest.php
index 8b84b85dc2..36c38e89e0 100644
--- a/src/gen/test/Model/CollectionTest.php
+++ b/src/gen/test/Model/CollectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTicketCommentTest.php b/src/gen/test/Model/CollectionTicketCommentTest.php
index 549ec2c121..df20df8ce9 100644
--- a/src/gen/test/Model/CollectionTicketCommentTest.php
+++ b/src/gen/test/Model/CollectionTicketCommentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionUserTest.php b/src/gen/test/Model/CollectionUserTest.php
index 6c2e9766a5..b327f1d07e 100644
--- a/src/gen/test/Model/CollectionUserTest.php
+++ b/src/gen/test/Model/CollectionUserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionsSortTest.php b/src/gen/test/Model/CollectionsSortTest.php
index a952ad2b1f..dda8fbf122 100644
--- a/src/gen/test/Model/CollectionsSortTest.php
+++ b/src/gen/test/Model/CollectionsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CommentsSortTest.php b/src/gen/test/Model/CommentsSortTest.php
index a2007d654b..67b39b5792 100644
--- a/src/gen/test/Model/CommentsSortTest.php
+++ b/src/gen/test/Model/CommentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesFilterTest.php b/src/gen/test/Model/CompaniesFilterTest.php
index 35bfb77df1..6deb2b3bad 100644
--- a/src/gen/test/Model/CompaniesFilterTest.php
+++ b/src/gen/test/Model/CompaniesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesSortTest.php b/src/gen/test/Model/CompaniesSortTest.php
index cf58c5ef6f..e9ba6d39e0 100644
--- a/src/gen/test/Model/CompaniesSortTest.php
+++ b/src/gen/test/Model/CompaniesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyInfoTest.php b/src/gen/test/Model/CompanyInfoTest.php
index befb8ec443..16d04ec352 100644
--- a/src/gen/test/Model/CompanyInfoTest.php
+++ b/src/gen/test/Model/CompanyInfoTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyRowTypeTest.php b/src/gen/test/Model/CompanyRowTypeTest.php
index f56dd62f8f..3bec848e7c 100644
--- a/src/gen/test/Model/CompanyRowTypeTest.php
+++ b/src/gen/test/Model/CompanyRowTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyTest.php b/src/gen/test/Model/CompanyTest.php
index 7ad7befb70..678a9e609f 100644
--- a/src/gen/test/Model/CompanyTest.php
+++ b/src/gen/test/Model/CompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompensationTest.php b/src/gen/test/Model/CompensationTest.php
index 6cad4355ac..6ee5358481 100644
--- a/src/gen/test/Model/CompensationTest.php
+++ b/src/gen/test/Model/CompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionConfigurationTest.php b/src/gen/test/Model/ConnectionConfigurationTest.php
index 915c56a4e2..129bdc1981 100644
--- a/src/gen/test/Model/ConnectionConfigurationTest.php
+++ b/src/gen/test/Model/ConnectionConfigurationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionDefaultsTest.php b/src/gen/test/Model/ConnectionDefaultsTest.php
index 2a81be0167..a68bbb53e9 100644
--- a/src/gen/test/Model/ConnectionDefaultsTest.php
+++ b/src/gen/test/Model/ConnectionDefaultsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
index ded42d5c6b..dd52ee9c40 100644
--- a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
+++ b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataTest.php b/src/gen/test/Model/ConnectionImportDataTest.php
index a8b08aace0..a22ebf24c8 100644
--- a/src/gen/test/Model/ConnectionImportDataTest.php
+++ b/src/gen/test/Model/ConnectionImportDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionMetadataTest.php b/src/gen/test/Model/ConnectionMetadataTest.php
index 3bd4bf727a..dd28662a7d 100644
--- a/src/gen/test/Model/ConnectionMetadataTest.php
+++ b/src/gen/test/Model/ConnectionMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionStateTest.php b/src/gen/test/Model/ConnectionStateTest.php
index 49811ca879..959bc1f275 100644
--- a/src/gen/test/Model/ConnectionStateTest.php
+++ b/src/gen/test/Model/ConnectionStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionTest.php b/src/gen/test/Model/ConnectionTest.php
index 7f0f6d07e5..9a2ce3006b 100644
--- a/src/gen/test/Model/ConnectionTest.php
+++ b/src/gen/test/Model/ConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionWebhookTest.php b/src/gen/test/Model/ConnectionWebhookTest.php
index f2ddd420d0..ccd5d6c1cf 100644
--- a/src/gen/test/Model/ConnectionWebhookTest.php
+++ b/src/gen/test/Model/ConnectionWebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorDocTest.php b/src/gen/test/Model/ConnectorDocTest.php
index b0e63eb4b1..826d36c5dc 100644
--- a/src/gen/test/Model/ConnectorDocTest.php
+++ b/src/gen/test/Model/ConnectorDocTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorEventTest.php b/src/gen/test/Model/ConnectorEventTest.php
index 927ba3da1f..0b3df07275 100644
--- a/src/gen/test/Model/ConnectorEventTest.php
+++ b/src/gen/test/Model/ConnectorEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopes1Test.php b/src/gen/test/Model/ConnectorOauthScopes1Test.php
index d2737e9af9..769521492d 100644
--- a/src/gen/test/Model/ConnectorOauthScopes1Test.php
+++ b/src/gen/test/Model/ConnectorOauthScopes1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopesTest.php b/src/gen/test/Model/ConnectorOauthScopesTest.php
index b6e6b3f544..290bfb1a03 100644
--- a/src/gen/test/Model/ConnectorOauthScopesTest.php
+++ b/src/gen/test/Model/ConnectorOauthScopesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorResourceTest.php b/src/gen/test/Model/ConnectorResourceTest.php
index d58749d3fa..80b4260640 100644
--- a/src/gen/test/Model/ConnectorResourceTest.php
+++ b/src/gen/test/Model/ConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorSettingTest.php b/src/gen/test/Model/ConnectorSettingTest.php
index 335323a7c8..42d03f91ca 100644
--- a/src/gen/test/Model/ConnectorSettingTest.php
+++ b/src/gen/test/Model/ConnectorSettingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorStatusTest.php b/src/gen/test/Model/ConnectorStatusTest.php
index 05fb9a81ca..051528fac9 100644
--- a/src/gen/test/Model/ConnectorStatusTest.php
+++ b/src/gen/test/Model/ConnectorStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTest.php b/src/gen/test/Model/ConnectorTest.php
index b0f5086207..e9cebcfa1e 100644
--- a/src/gen/test/Model/ConnectorTest.php
+++ b/src/gen/test/Model/ConnectorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTlsSupportTest.php b/src/gen/test/Model/ConnectorTlsSupportTest.php
index 2b196ec291..7f04df614b 100644
--- a/src/gen/test/Model/ConnectorTlsSupportTest.php
+++ b/src/gen/test/Model/ConnectorTlsSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorUnifiedApisTest.php b/src/gen/test/Model/ConnectorUnifiedApisTest.php
index a676738fa2..9d2e3f82ef 100644
--- a/src/gen/test/Model/ConnectorUnifiedApisTest.php
+++ b/src/gen/test/Model/ConnectorUnifiedApisTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorsFilterTest.php b/src/gen/test/Model/ConnectorsFilterTest.php
index d21626e941..0e65b04b1e 100644
--- a/src/gen/test/Model/ConnectorsFilterTest.php
+++ b/src/gen/test/Model/ConnectorsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerConnectionTest.php b/src/gen/test/Model/ConsumerConnectionTest.php
index 2b336c4a7e..de513aef37 100644
--- a/src/gen/test/Model/ConsumerConnectionTest.php
+++ b/src/gen/test/Model/ConsumerConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerMetadataTest.php b/src/gen/test/Model/ConsumerMetadataTest.php
index 45a6e39a0d..7e3b65510f 100644
--- a/src/gen/test/Model/ConsumerMetadataTest.php
+++ b/src/gen/test/Model/ConsumerMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
index d289153713..d218917339 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
index 0ee3c4ff53..01e590ca18 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerTest.php b/src/gen/test/Model/ConsumerTest.php
index 9b523e57a2..f43c38ca88 100644
--- a/src/gen/test/Model/ConsumerTest.php
+++ b/src/gen/test/Model/ConsumerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactTest.php b/src/gen/test/Model/ContactTest.php
index b866e01ec0..f3ce2f510a 100644
--- a/src/gen/test/Model/ContactTest.php
+++ b/src/gen/test/Model/ContactTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsFilterTest.php b/src/gen/test/Model/ContactsFilterTest.php
index a051b2bbdd..e124865640 100644
--- a/src/gen/test/Model/ContactsFilterTest.php
+++ b/src/gen/test/Model/ContactsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsSortTest.php b/src/gen/test/Model/ContactsSortTest.php
index 5425c63393..d4fbb4eebc 100644
--- a/src/gen/test/Model/ContactsSortTest.php
+++ b/src/gen/test/Model/ContactsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CopyFolderRequestTest.php b/src/gen/test/Model/CopyFolderRequestTest.php
index 17f525b940..51ae479a7a 100644
--- a/src/gen/test/Model/CopyFolderRequestTest.php
+++ b/src/gen/test/Model/CopyFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateActivityResponseTest.php b/src/gen/test/Model/CreateActivityResponseTest.php
index 93fb5a3c6b..abd36bfd7d 100644
--- a/src/gen/test/Model/CreateActivityResponseTest.php
+++ b/src/gen/test/Model/CreateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicantResponseTest.php b/src/gen/test/Model/CreateApplicantResponseTest.php
index d2b8526edb..e0b2bb1332 100644
--- a/src/gen/test/Model/CreateApplicantResponseTest.php
+++ b/src/gen/test/Model/CreateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicationResponseTest.php b/src/gen/test/Model/CreateApplicationResponseTest.php
index d58f944547..ee0f470885 100644
--- a/src/gen/test/Model/CreateApplicationResponseTest.php
+++ b/src/gen/test/Model/CreateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateBillResponseTest.php b/src/gen/test/Model/CreateBillResponseTest.php
index 236d61545e..945b0716c4 100644
--- a/src/gen/test/Model/CreateBillResponseTest.php
+++ b/src/gen/test/Model/CreateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCommentResponseTest.php b/src/gen/test/Model/CreateCommentResponseTest.php
index 887bf085cf..40f4e84c6c 100644
--- a/src/gen/test/Model/CreateCommentResponseTest.php
+++ b/src/gen/test/Model/CreateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCompanyResponseTest.php b/src/gen/test/Model/CreateCompanyResponseTest.php
index 43179b61ee..c02390e13a 100644
--- a/src/gen/test/Model/CreateCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConnectionResponseTest.php b/src/gen/test/Model/CreateConnectionResponseTest.php
index dd434f3014..a160dae391 100644
--- a/src/gen/test/Model/CreateConnectionResponseTest.php
+++ b/src/gen/test/Model/CreateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConsumerResponseTest.php b/src/gen/test/Model/CreateConsumerResponseTest.php
index 7ec918936b..5765215ba4 100644
--- a/src/gen/test/Model/CreateConsumerResponseTest.php
+++ b/src/gen/test/Model/CreateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateContactResponseTest.php b/src/gen/test/Model/CreateContactResponseTest.php
index aba065f6cc..8c090e8856 100644
--- a/src/gen/test/Model/CreateContactResponseTest.php
+++ b/src/gen/test/Model/CreateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCreditNoteResponseTest.php b/src/gen/test/Model/CreateCreditNoteResponseTest.php
index 3ad2415c72..8d9a6bd96c 100644
--- a/src/gen/test/Model/CreateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/CreateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingRequestTest.php b/src/gen/test/Model/CreateCustomMappingRequestTest.php
index 470859eaa7..0f77809e1d 100644
--- a/src/gen/test/Model/CreateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/CreateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingResponseTest.php b/src/gen/test/Model/CreateCustomMappingResponseTest.php
index bde6960181..70cc06a95a 100644
--- a/src/gen/test/Model/CreateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/CreateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomerResponseTest.php b/src/gen/test/Model/CreateCustomerResponseTest.php
index 68c5daff19..ec99feb327 100644
--- a/src/gen/test/Model/CreateCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDepartmentResponseTest.php b/src/gen/test/Model/CreateDepartmentResponseTest.php
index f61f779a80..1ddc8a5ba1 100644
--- a/src/gen/test/Model/CreateDepartmentResponseTest.php
+++ b/src/gen/test/Model/CreateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveGroupResponseTest.php b/src/gen/test/Model/CreateDriveGroupResponseTest.php
index 586a7e8e15..7ed1877be6 100644
--- a/src/gen/test/Model/CreateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/CreateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveResponseTest.php b/src/gen/test/Model/CreateDriveResponseTest.php
index 6fb12a39be..0c42952161 100644
--- a/src/gen/test/Model/CreateDriveResponseTest.php
+++ b/src/gen/test/Model/CreateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
index 1f97e587d9..44f7cf7efa 100644
--- a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
index 87cac64825..2cc289face 100644
--- a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEmployeeResponseTest.php b/src/gen/test/Model/CreateEmployeeResponseTest.php
index 85a6612661..2f7dad00f5 100644
--- a/src/gen/test/Model/CreateEmployeeResponseTest.php
+++ b/src/gen/test/Model/CreateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileRequestTest.php b/src/gen/test/Model/CreateFileRequestTest.php
index 3d82d5732a..2f89a499dc 100644
--- a/src/gen/test/Model/CreateFileRequestTest.php
+++ b/src/gen/test/Model/CreateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileResponseTest.php b/src/gen/test/Model/CreateFileResponseTest.php
index cfa297ddf8..77d2faeec3 100644
--- a/src/gen/test/Model/CreateFileResponseTest.php
+++ b/src/gen/test/Model/CreateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderRequestTest.php b/src/gen/test/Model/CreateFolderRequestTest.php
index 528e6520f3..b33418ad7c 100644
--- a/src/gen/test/Model/CreateFolderRequestTest.php
+++ b/src/gen/test/Model/CreateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderResponseTest.php b/src/gen/test/Model/CreateFolderResponseTest.php
index cc3d06daa8..83d1e24463 100644
--- a/src/gen/test/Model/CreateFolderResponseTest.php
+++ b/src/gen/test/Model/CreateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateHrisCompanyResponseTest.php b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
index cfc82e5457..546ee6edd2 100644
--- a/src/gen/test/Model/CreateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceItemResponseTest.php b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
index ed8dfba17f..f013d9ea31 100644
--- a/src/gen/test/Model/CreateInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceResponseTest.php b/src/gen/test/Model/CreateInvoiceResponseTest.php
index e382a41b3c..73525df9c4 100644
--- a/src/gen/test/Model/CreateInvoiceResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateItemResponseTest.php b/src/gen/test/Model/CreateItemResponseTest.php
index 833edd7b85..eea2246ce8 100644
--- a/src/gen/test/Model/CreateItemResponseTest.php
+++ b/src/gen/test/Model/CreateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJobResponseTest.php b/src/gen/test/Model/CreateJobResponseTest.php
index ce0dcfc2ca..a72ec6e04e 100644
--- a/src/gen/test/Model/CreateJobResponseTest.php
+++ b/src/gen/test/Model/CreateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJournalEntryResponseTest.php b/src/gen/test/Model/CreateJournalEntryResponseTest.php
index 8fef420f8f..1d71f9db1d 100644
--- a/src/gen/test/Model/CreateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/CreateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLeadResponseTest.php b/src/gen/test/Model/CreateLeadResponseTest.php
index 9badad7ec2..8a889135ea 100644
--- a/src/gen/test/Model/CreateLeadResponseTest.php
+++ b/src/gen/test/Model/CreateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLedgerAccountResponseTest.php b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
index b0462c4112..a326b84a72 100644
--- a/src/gen/test/Model/CreateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLocationResponseTest.php b/src/gen/test/Model/CreateLocationResponseTest.php
index cec1c7b9fe..c7bc033bda 100644
--- a/src/gen/test/Model/CreateLocationResponseTest.php
+++ b/src/gen/test/Model/CreateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMerchantResponseTest.php b/src/gen/test/Model/CreateMerchantResponseTest.php
index 09991a065b..f578e07387 100644
--- a/src/gen/test/Model/CreateMerchantResponseTest.php
+++ b/src/gen/test/Model/CreateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMessageResponseTest.php b/src/gen/test/Model/CreateMessageResponseTest.php
index 05754dd888..9b6a381cab 100644
--- a/src/gen/test/Model/CreateMessageResponseTest.php
+++ b/src/gen/test/Model/CreateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierGroupResponseTest.php b/src/gen/test/Model/CreateModifierGroupResponseTest.php
index c07fbb2d42..4c3f48436b 100644
--- a/src/gen/test/Model/CreateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/CreateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierResponseTest.php b/src/gen/test/Model/CreateModifierResponseTest.php
index 0e50877143..04d021a564 100644
--- a/src/gen/test/Model/CreateModifierResponseTest.php
+++ b/src/gen/test/Model/CreateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateNoteResponseTest.php b/src/gen/test/Model/CreateNoteResponseTest.php
index c4e3466435..93a60cf3e9 100644
--- a/src/gen/test/Model/CreateNoteResponseTest.php
+++ b/src/gen/test/Model/CreateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOpportunityResponseTest.php b/src/gen/test/Model/CreateOpportunityResponseTest.php
index f597ff8216..68e45cf3c5 100644
--- a/src/gen/test/Model/CreateOpportunityResponseTest.php
+++ b/src/gen/test/Model/CreateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderResponseTest.php b/src/gen/test/Model/CreateOrderResponseTest.php
index 176c8be66b..8dd32325f1 100644
--- a/src/gen/test/Model/CreateOrderResponseTest.php
+++ b/src/gen/test/Model/CreateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderTypeResponseTest.php b/src/gen/test/Model/CreateOrderTypeResponseTest.php
index f16b1dfa9c..3241ac4e24 100644
--- a/src/gen/test/Model/CreateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/CreateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePaymentResponseTest.php b/src/gen/test/Model/CreatePaymentResponseTest.php
index 48106385a5..aa10614071 100644
--- a/src/gen/test/Model/CreatePaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePipelineResponseTest.php b/src/gen/test/Model/CreatePipelineResponseTest.php
index 5efd24319a..69ff17362c 100644
--- a/src/gen/test/Model/CreatePipelineResponseTest.php
+++ b/src/gen/test/Model/CreatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePosPaymentResponseTest.php b/src/gen/test/Model/CreatePosPaymentResponseTest.php
index d2933027e0..9163da2df6 100644
--- a/src/gen/test/Model/CreatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateProductResponseTest.php b/src/gen/test/Model/CreateProductResponseTest.php
index 5b09159690..012145b7b7 100644
--- a/src/gen/test/Model/CreateProductResponseTest.php
+++ b/src/gen/test/Model/CreateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
index 7352291128..6c859ba77b 100644
--- a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseDataTest.php b/src/gen/test/Model/CreateSessionResponseDataTest.php
index 1794718bed..43f76423a7 100644
--- a/src/gen/test/Model/CreateSessionResponseDataTest.php
+++ b/src/gen/test/Model/CreateSessionResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseTest.php b/src/gen/test/Model/CreateSessionResponseTest.php
index 57ff3948ca..f812489fc5 100644
--- a/src/gen/test/Model/CreateSessionResponseTest.php
+++ b/src/gen/test/Model/CreateSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSharedLinkResponseTest.php b/src/gen/test/Model/CreateSharedLinkResponseTest.php
index 5288936b5c..ca214c5db2 100644
--- a/src/gen/test/Model/CreateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/CreateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSupplierResponseTest.php b/src/gen/test/Model/CreateSupplierResponseTest.php
index 7e26175bbd..beff90ae4e 100644
--- a/src/gen/test/Model/CreateSupplierResponseTest.php
+++ b/src/gen/test/Model/CreateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTaxRateResponseTest.php b/src/gen/test/Model/CreateTaxRateResponseTest.php
index a0b1172d05..069bbebd62 100644
--- a/src/gen/test/Model/CreateTaxRateResponseTest.php
+++ b/src/gen/test/Model/CreateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTenderResponseTest.php b/src/gen/test/Model/CreateTenderResponseTest.php
index c55662d1de..e111483c80 100644
--- a/src/gen/test/Model/CreateTenderResponseTest.php
+++ b/src/gen/test/Model/CreateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTicketResponseTest.php b/src/gen/test/Model/CreateTicketResponseTest.php
index 46ea300ba9..5320ebdecf 100644
--- a/src/gen/test/Model/CreateTicketResponseTest.php
+++ b/src/gen/test/Model/CreateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
index f386daf7d0..bc859bceec 100644
--- a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionRequestTest.php b/src/gen/test/Model/CreateUploadSessionRequestTest.php
index 14be110704..9fa43bdc21 100644
--- a/src/gen/test/Model/CreateUploadSessionRequestTest.php
+++ b/src/gen/test/Model/CreateUploadSessionRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionResponseTest.php b/src/gen/test/Model/CreateUploadSessionResponseTest.php
index 6b5d732a2e..3c89d453aa 100644
--- a/src/gen/test/Model/CreateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/CreateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUserResponseTest.php b/src/gen/test/Model/CreateUserResponseTest.php
index 084b6d72c6..ec3b65c64f 100644
--- a/src/gen/test/Model/CreateUserResponseTest.php
+++ b/src/gen/test/Model/CreateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookRequestTest.php b/src/gen/test/Model/CreateWebhookRequestTest.php
index 2bbda0117a..199eac4cc7 100644
--- a/src/gen/test/Model/CreateWebhookRequestTest.php
+++ b/src/gen/test/Model/CreateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookResponseTest.php b/src/gen/test/Model/CreateWebhookResponseTest.php
index 405d798566..ca805d8264 100644
--- a/src/gen/test/Model/CreateWebhookResponseTest.php
+++ b/src/gen/test/Model/CreateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNoteTest.php b/src/gen/test/Model/CreditNoteTest.php
index a48839d8f7..d988d73201 100644
--- a/src/gen/test/Model/CreditNoteTest.php
+++ b/src/gen/test/Model/CreditNoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesFilterTest.php b/src/gen/test/Model/CreditNotesFilterTest.php
index 9fa1fb9243..f85213d69d 100644
--- a/src/gen/test/Model/CreditNotesFilterTest.php
+++ b/src/gen/test/Model/CreditNotesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesSortTest.php b/src/gen/test/Model/CreditNotesSortTest.php
index d9769004ef..b175039616 100644
--- a/src/gen/test/Model/CreditNotesSortTest.php
+++ b/src/gen/test/Model/CreditNotesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CrmEventTypeTest.php b/src/gen/test/Model/CrmEventTypeTest.php
index 85cbf55ec2..091b481d58 100644
--- a/src/gen/test/Model/CrmEventTypeTest.php
+++ b/src/gen/test/Model/CrmEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CurrencyTest.php b/src/gen/test/Model/CurrencyTest.php
index e95e9dc7b8..519bf70751 100644
--- a/src/gen/test/Model/CurrencyTest.php
+++ b/src/gen/test/Model/CurrencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldFinderTest.php b/src/gen/test/Model/CustomFieldFinderTest.php
index 28e9282d01..284c6cd2df 100644
--- a/src/gen/test/Model/CustomFieldFinderTest.php
+++ b/src/gen/test/Model/CustomFieldFinderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldTest.php b/src/gen/test/Model/CustomFieldTest.php
index 30d4d17141..06e1f205b7 100644
--- a/src/gen/test/Model/CustomFieldTest.php
+++ b/src/gen/test/Model/CustomFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomMappingTest.php b/src/gen/test/Model/CustomMappingTest.php
index 3ca6255f72..f6ed706657 100644
--- a/src/gen/test/Model/CustomMappingTest.php
+++ b/src/gen/test/Model/CustomMappingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomerTest.php b/src/gen/test/Model/CustomerTest.php
index d69c66e378..dbeb2ca536 100644
--- a/src/gen/test/Model/CustomerTest.php
+++ b/src/gen/test/Model/CustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersFilterTest.php b/src/gen/test/Model/CustomersFilterTest.php
index d5e0bd7b58..b2f172c7c0 100644
--- a/src/gen/test/Model/CustomersFilterTest.php
+++ b/src/gen/test/Model/CustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersSortTest.php b/src/gen/test/Model/CustomersSortTest.php
index e4bf41405e..1ff432b1b4 100644
--- a/src/gen/test/Model/CustomersSortTest.php
+++ b/src/gen/test/Model/CustomersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeductionTest.php b/src/gen/test/Model/DeductionTest.php
index d418ccacc9..33a0c313a4 100644
--- a/src/gen/test/Model/DeductionTest.php
+++ b/src/gen/test/Model/DeductionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteActivityResponseTest.php b/src/gen/test/Model/DeleteActivityResponseTest.php
index 036a43cf7f..a28955b3f9 100644
--- a/src/gen/test/Model/DeleteActivityResponseTest.php
+++ b/src/gen/test/Model/DeleteActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicantResponseTest.php b/src/gen/test/Model/DeleteApplicantResponseTest.php
index b647efa54e..12965ba92b 100644
--- a/src/gen/test/Model/DeleteApplicantResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicationResponseTest.php b/src/gen/test/Model/DeleteApplicationResponseTest.php
index 51d570437e..cd69e3a9dc 100644
--- a/src/gen/test/Model/DeleteApplicationResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteBillResponseTest.php b/src/gen/test/Model/DeleteBillResponseTest.php
index 2c9068827e..d41d2a40e7 100644
--- a/src/gen/test/Model/DeleteBillResponseTest.php
+++ b/src/gen/test/Model/DeleteBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCommentResponseTest.php b/src/gen/test/Model/DeleteCommentResponseTest.php
index 3152a0c5b3..c453cea6a8 100644
--- a/src/gen/test/Model/DeleteCommentResponseTest.php
+++ b/src/gen/test/Model/DeleteCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCompanyResponseTest.php b/src/gen/test/Model/DeleteCompanyResponseTest.php
index a86791f565..caa9addde3 100644
--- a/src/gen/test/Model/DeleteCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteConsumerResponseTest.php b/src/gen/test/Model/DeleteConsumerResponseTest.php
index 8ebf59ecb0..b13863e963 100644
--- a/src/gen/test/Model/DeleteConsumerResponseTest.php
+++ b/src/gen/test/Model/DeleteConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteContactResponseTest.php b/src/gen/test/Model/DeleteContactResponseTest.php
index 568604ef7f..dac3837412 100644
--- a/src/gen/test/Model/DeleteContactResponseTest.php
+++ b/src/gen/test/Model/DeleteContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCreditNoteResponseTest.php b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
index 3aecef7c21..791a1c06d5 100644
--- a/src/gen/test/Model/DeleteCreditNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCustomerResponseTest.php b/src/gen/test/Model/DeleteCustomerResponseTest.php
index 296708a0d4..48960786d3 100644
--- a/src/gen/test/Model/DeleteCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDepartmentResponseTest.php b/src/gen/test/Model/DeleteDepartmentResponseTest.php
index e89928407a..05cf536b46 100644
--- a/src/gen/test/Model/DeleteDepartmentResponseTest.php
+++ b/src/gen/test/Model/DeleteDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveGroupResponseTest.php b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
index 6ddc43bbe3..dae4dbfeb7 100644
--- a/src/gen/test/Model/DeleteDriveGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveResponseTest.php b/src/gen/test/Model/DeleteDriveResponseTest.php
index da17d920f1..8a45558809 100644
--- a/src/gen/test/Model/DeleteDriveResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
index 7913c99f84..d123ace647 100644
--- a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
index 3b8de4ea6c..6638774f12 100644
--- a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEmployeeResponseTest.php b/src/gen/test/Model/DeleteEmployeeResponseTest.php
index 34d1238449..333c7936fc 100644
--- a/src/gen/test/Model/DeleteEmployeeResponseTest.php
+++ b/src/gen/test/Model/DeleteEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFileResponseTest.php b/src/gen/test/Model/DeleteFileResponseTest.php
index cbe4229cee..a7208356a0 100644
--- a/src/gen/test/Model/DeleteFileResponseTest.php
+++ b/src/gen/test/Model/DeleteFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFolderResponseTest.php b/src/gen/test/Model/DeleteFolderResponseTest.php
index 823b6bf044..1040436da4 100644
--- a/src/gen/test/Model/DeleteFolderResponseTest.php
+++ b/src/gen/test/Model/DeleteFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
index 8c74dee46a..dd9cb364d1 100644
--- a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteInvoiceResponseTest.php b/src/gen/test/Model/DeleteInvoiceResponseTest.php
index 7df1f661f3..88a8602b1d 100644
--- a/src/gen/test/Model/DeleteInvoiceResponseTest.php
+++ b/src/gen/test/Model/DeleteInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteItemResponseTest.php b/src/gen/test/Model/DeleteItemResponseTest.php
index 64c4e5f75f..08709437a6 100644
--- a/src/gen/test/Model/DeleteItemResponseTest.php
+++ b/src/gen/test/Model/DeleteItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJobResponseTest.php b/src/gen/test/Model/DeleteJobResponseTest.php
index a6b1db18a6..8ab0d8fa7f 100644
--- a/src/gen/test/Model/DeleteJobResponseTest.php
+++ b/src/gen/test/Model/DeleteJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJournalEntryResponseTest.php b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
index e79fc6e07c..c1f9ecee46 100644
--- a/src/gen/test/Model/DeleteJournalEntryResponseTest.php
+++ b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLeadResponseTest.php b/src/gen/test/Model/DeleteLeadResponseTest.php
index c6eb6262da..ccb0b973ce 100644
--- a/src/gen/test/Model/DeleteLeadResponseTest.php
+++ b/src/gen/test/Model/DeleteLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
index bb3da64ea0..4fa60e1ea0 100644
--- a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLocationResponseTest.php b/src/gen/test/Model/DeleteLocationResponseTest.php
index ba38f23e8a..9102a10faf 100644
--- a/src/gen/test/Model/DeleteLocationResponseTest.php
+++ b/src/gen/test/Model/DeleteLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMerchantResponseTest.php b/src/gen/test/Model/DeleteMerchantResponseTest.php
index 5934b7c5f2..a26a60207b 100644
--- a/src/gen/test/Model/DeleteMerchantResponseTest.php
+++ b/src/gen/test/Model/DeleteMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMessageResponseTest.php b/src/gen/test/Model/DeleteMessageResponseTest.php
index fae1e8b95e..75e9d00e62 100644
--- a/src/gen/test/Model/DeleteMessageResponseTest.php
+++ b/src/gen/test/Model/DeleteMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierGroupResponseTest.php b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
index 3a4221d22c..c9acc3beaf 100644
--- a/src/gen/test/Model/DeleteModifierGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierResponseTest.php b/src/gen/test/Model/DeleteModifierResponseTest.php
index 505c627ff2..92bbb3f4f6 100644
--- a/src/gen/test/Model/DeleteModifierResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteNoteResponseTest.php b/src/gen/test/Model/DeleteNoteResponseTest.php
index af4694a0cc..7ff1ce6c3a 100644
--- a/src/gen/test/Model/DeleteNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOpportunityResponseTest.php b/src/gen/test/Model/DeleteOpportunityResponseTest.php
index 76545489d4..64529553de 100644
--- a/src/gen/test/Model/DeleteOpportunityResponseTest.php
+++ b/src/gen/test/Model/DeleteOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderResponseTest.php b/src/gen/test/Model/DeleteOrderResponseTest.php
index d09c068308..4c2ca4a962 100644
--- a/src/gen/test/Model/DeleteOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderTypeResponseTest.php b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
index c62691dbdb..1f3b75f339 100644
--- a/src/gen/test/Model/DeleteOrderTypeResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePaymentResponseTest.php b/src/gen/test/Model/DeletePaymentResponseTest.php
index bb76139cd4..4fb7afcc7a 100644
--- a/src/gen/test/Model/DeletePaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePipelineResponseTest.php b/src/gen/test/Model/DeletePipelineResponseTest.php
index 5a74b751a0..e42034d289 100644
--- a/src/gen/test/Model/DeletePipelineResponseTest.php
+++ b/src/gen/test/Model/DeletePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePosPaymentResponseTest.php b/src/gen/test/Model/DeletePosPaymentResponseTest.php
index f78f4a9979..5ae7bf435c 100644
--- a/src/gen/test/Model/DeletePosPaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteProductResponseTest.php b/src/gen/test/Model/DeleteProductResponseTest.php
index b5fce71bc1..0d16c8c5d8 100644
--- a/src/gen/test/Model/DeleteProductResponseTest.php
+++ b/src/gen/test/Model/DeleteProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
index a14a3a5613..c43089116e 100644
--- a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSharedLinkResponseTest.php b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
index 367e1e74ba..c875e63563 100644
--- a/src/gen/test/Model/DeleteSharedLinkResponseTest.php
+++ b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSupplierResponseTest.php b/src/gen/test/Model/DeleteSupplierResponseTest.php
index 658a0501e3..3eecbd2f2f 100644
--- a/src/gen/test/Model/DeleteSupplierResponseTest.php
+++ b/src/gen/test/Model/DeleteSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTaxRateResponseTest.php b/src/gen/test/Model/DeleteTaxRateResponseTest.php
index e17880227c..7d8b6c1a26 100644
--- a/src/gen/test/Model/DeleteTaxRateResponseTest.php
+++ b/src/gen/test/Model/DeleteTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTenderResponseTest.php b/src/gen/test/Model/DeleteTenderResponseTest.php
index 2cb95ed09b..5a75cb0d2f 100644
--- a/src/gen/test/Model/DeleteTenderResponseTest.php
+++ b/src/gen/test/Model/DeleteTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTicketResponseTest.php b/src/gen/test/Model/DeleteTicketResponseTest.php
index 6bba07dc14..f15196c5d1 100644
--- a/src/gen/test/Model/DeleteTicketResponseTest.php
+++ b/src/gen/test/Model/DeleteTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
index 1a43cafebd..ba8f1d91a9 100644
--- a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUploadSessionResponseTest.php b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
index 0df71393d7..6b9102d64c 100644
--- a/src/gen/test/Model/DeleteUploadSessionResponseTest.php
+++ b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUserResponseTest.php b/src/gen/test/Model/DeleteUserResponseTest.php
index 19a774e6f7..2869223013 100644
--- a/src/gen/test/Model/DeleteUserResponseTest.php
+++ b/src/gen/test/Model/DeleteUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteWebhookResponseTest.php b/src/gen/test/Model/DeleteWebhookResponseTest.php
index 56718917a7..b63651ac8b 100644
--- a/src/gen/test/Model/DeleteWebhookResponseTest.php
+++ b/src/gen/test/Model/DeleteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DepartmentTest.php b/src/gen/test/Model/DepartmentTest.php
index dbb1a36dff..e471373001 100644
--- a/src/gen/test/Model/DepartmentTest.php
+++ b/src/gen/test/Model/DepartmentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupTest.php b/src/gen/test/Model/DriveGroupTest.php
index 75c61a8d79..4b753a0072 100644
--- a/src/gen/test/Model/DriveGroupTest.php
+++ b/src/gen/test/Model/DriveGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupsFilterTest.php b/src/gen/test/Model/DriveGroupsFilterTest.php
index 4ff4fe082c..0a035546e4 100644
--- a/src/gen/test/Model/DriveGroupsFilterTest.php
+++ b/src/gen/test/Model/DriveGroupsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveTest.php b/src/gen/test/Model/DriveTest.php
index 51babe963e..caae1c9e85 100644
--- a/src/gen/test/Model/DriveTest.php
+++ b/src/gen/test/Model/DriveTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DrivesFilterTest.php b/src/gen/test/Model/DrivesFilterTest.php
index f2b6d24490..db2c79641c 100644
--- a/src/gen/test/Model/DrivesFilterTest.php
+++ b/src/gen/test/Model/DrivesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceAddressTest.php b/src/gen/test/Model/EcommerceAddressTest.php
index ca11c092f8..dae4427332 100644
--- a/src/gen/test/Model/EcommerceAddressTest.php
+++ b/src/gen/test/Model/EcommerceAddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerAddressesTest.php b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
index a9d3353bdf..ab80260621 100644
--- a/src/gen/test/Model/EcommerceCustomerAddressesTest.php
+++ b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerTest.php b/src/gen/test/Model/EcommerceCustomerTest.php
index 6cd47bc0f5..c19b9437f5 100644
--- a/src/gen/test/Model/EcommerceCustomerTest.php
+++ b/src/gen/test/Model/EcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomersFilterTest.php b/src/gen/test/Model/EcommerceCustomersFilterTest.php
index 9e543f22eb..c496326ec5 100644
--- a/src/gen/test/Model/EcommerceCustomersFilterTest.php
+++ b/src/gen/test/Model/EcommerceCustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceDiscountTest.php b/src/gen/test/Model/EcommerceDiscountTest.php
index f27e1f97f0..4cf509913f 100644
--- a/src/gen/test/Model/EcommerceDiscountTest.php
+++ b/src/gen/test/Model/EcommerceDiscountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderLineItemTest.php b/src/gen/test/Model/EcommerceOrderLineItemTest.php
index 3157585d58..f1cb535b6a 100644
--- a/src/gen/test/Model/EcommerceOrderLineItemTest.php
+++ b/src/gen/test/Model/EcommerceOrderLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderStatusTest.php b/src/gen/test/Model/EcommerceOrderStatusTest.php
index 657a16a28a..4bfcac0800 100644
--- a/src/gen/test/Model/EcommerceOrderStatusTest.php
+++ b/src/gen/test/Model/EcommerceOrderStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderTest.php b/src/gen/test/Model/EcommerceOrderTest.php
index 12633e2137..d049b3341e 100644
--- a/src/gen/test/Model/EcommerceOrderTest.php
+++ b/src/gen/test/Model/EcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrdersFilterTest.php b/src/gen/test/Model/EcommerceOrdersFilterTest.php
index b1df2484ec..c6df6b9350 100644
--- a/src/gen/test/Model/EcommerceOrdersFilterTest.php
+++ b/src/gen/test/Model/EcommerceOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductCategoriesTest.php b/src/gen/test/Model/EcommerceProductCategoriesTest.php
index 6751ee8364..24a639f1d4 100644
--- a/src/gen/test/Model/EcommerceProductCategoriesTest.php
+++ b/src/gen/test/Model/EcommerceProductCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImages1Test.php b/src/gen/test/Model/EcommerceProductImages1Test.php
index 7d6e02bc35..160d1b77ff 100644
--- a/src/gen/test/Model/EcommerceProductImages1Test.php
+++ b/src/gen/test/Model/EcommerceProductImages1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImagesTest.php b/src/gen/test/Model/EcommerceProductImagesTest.php
index 141b4413f4..43f2073058 100644
--- a/src/gen/test/Model/EcommerceProductImagesTest.php
+++ b/src/gen/test/Model/EcommerceProductImagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptions1Test.php b/src/gen/test/Model/EcommerceProductOptions1Test.php
index 834f678fd7..2499322bab 100644
--- a/src/gen/test/Model/EcommerceProductOptions1Test.php
+++ b/src/gen/test/Model/EcommerceProductOptions1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptionsTest.php b/src/gen/test/Model/EcommerceProductOptionsTest.php
index bf98b0fdaf..499d5cff1a 100644
--- a/src/gen/test/Model/EcommerceProductOptionsTest.php
+++ b/src/gen/test/Model/EcommerceProductOptionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductTest.php b/src/gen/test/Model/EcommerceProductTest.php
index ca9c52df41..84bb9081b2 100644
--- a/src/gen/test/Model/EcommerceProductTest.php
+++ b/src/gen/test/Model/EcommerceProductTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductVariantsTest.php b/src/gen/test/Model/EcommerceProductVariantsTest.php
index 4f02aabe4d..47c8c4b12d 100644
--- a/src/gen/test/Model/EcommerceProductVariantsTest.php
+++ b/src/gen/test/Model/EcommerceProductVariantsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceStoreTest.php b/src/gen/test/Model/EcommerceStoreTest.php
index 213d0cf57c..332b09efc5 100644
--- a/src/gen/test/Model/EcommerceStoreTest.php
+++ b/src/gen/test/Model/EcommerceStoreTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmailTest.php b/src/gen/test/Model/EmailTest.php
index be2684d3e3..e2011bceca 100644
--- a/src/gen/test/Model/EmailTest.php
+++ b/src/gen/test/Model/EmailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeCompensationTest.php b/src/gen/test/Model/EmployeeCompensationTest.php
index 06de1ae411..3dc84024db 100644
--- a/src/gen/test/Model/EmployeeCompensationTest.php
+++ b/src/gen/test/Model/EmployeeCompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeEmploymentRoleTest.php b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
index e36d366221..d4acf75524 100644
--- a/src/gen/test/Model/EmployeeEmploymentRoleTest.php
+++ b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeJobTest.php b/src/gen/test/Model/EmployeeJobTest.php
index c7377a45e7..75931d981f 100644
--- a/src/gen/test/Model/EmployeeJobTest.php
+++ b/src/gen/test/Model/EmployeeJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeListTest.php b/src/gen/test/Model/EmployeeListTest.php
index 5735367428..f83b784ee8 100644
--- a/src/gen/test/Model/EmployeeListTest.php
+++ b/src/gen/test/Model/EmployeeListTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeManagerTest.php b/src/gen/test/Model/EmployeeManagerTest.php
index 934f2d4a90..67a620d3ff 100644
--- a/src/gen/test/Model/EmployeeManagerTest.php
+++ b/src/gen/test/Model/EmployeeManagerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeePayrollTest.php b/src/gen/test/Model/EmployeePayrollTest.php
index 95e39938d3..f08af8473f 100644
--- a/src/gen/test/Model/EmployeePayrollTest.php
+++ b/src/gen/test/Model/EmployeePayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeSchedulesTest.php b/src/gen/test/Model/EmployeeSchedulesTest.php
index 45ca2181bd..605e4ddc18 100644
--- a/src/gen/test/Model/EmployeeSchedulesTest.php
+++ b/src/gen/test/Model/EmployeeSchedulesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeTest.php b/src/gen/test/Model/EmployeeTest.php
index 3154e216db..6675e458af 100644
--- a/src/gen/test/Model/EmployeeTest.php
+++ b/src/gen/test/Model/EmployeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesFilterTest.php b/src/gen/test/Model/EmployeesFilterTest.php
index 39c3dde812..ed6233849c 100644
--- a/src/gen/test/Model/EmployeesFilterTest.php
+++ b/src/gen/test/Model/EmployeesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesSortTest.php b/src/gen/test/Model/EmployeesSortTest.php
index a8d586fa0c..ec995f12f2 100644
--- a/src/gen/test/Model/EmployeesSortTest.php
+++ b/src/gen/test/Model/EmployeesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmploymentStatusTest.php b/src/gen/test/Model/EmploymentStatusTest.php
index 992cc25994..7b937b0900 100644
--- a/src/gen/test/Model/EmploymentStatusTest.php
+++ b/src/gen/test/Model/EmploymentStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ErrorTest.php b/src/gen/test/Model/ErrorTest.php
index 363f78fdc7..d6747070a4 100644
--- a/src/gen/test/Model/ErrorTest.php
+++ b/src/gen/test/Model/ErrorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ExecuteWebhookResponseTest.php b/src/gen/test/Model/ExecuteWebhookResponseTest.php
index 3f69065752..eef9db9576 100644
--- a/src/gen/test/Model/ExecuteWebhookResponseTest.php
+++ b/src/gen/test/Model/ExecuteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileStorageEventTypeTest.php b/src/gen/test/Model/FileStorageEventTypeTest.php
index 226f2de0c3..78aefda3d5 100644
--- a/src/gen/test/Model/FileStorageEventTypeTest.php
+++ b/src/gen/test/Model/FileStorageEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileTypeTest.php b/src/gen/test/Model/FileTypeTest.php
index 7285ee0492..8d5e001429 100644
--- a/src/gen/test/Model/FileTypeTest.php
+++ b/src/gen/test/Model/FileTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesFilterTest.php b/src/gen/test/Model/FilesFilterTest.php
index 8e3b7daf4c..909a8e0eb1 100644
--- a/src/gen/test/Model/FilesFilterTest.php
+++ b/src/gen/test/Model/FilesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSearchTest.php b/src/gen/test/Model/FilesSearchTest.php
index 3a288c40c9..2b1b00ed00 100644
--- a/src/gen/test/Model/FilesSearchTest.php
+++ b/src/gen/test/Model/FilesSearchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSortTest.php b/src/gen/test/Model/FilesSortTest.php
index dc6f84fd87..ccb9c6f72d 100644
--- a/src/gen/test/Model/FilesSortTest.php
+++ b/src/gen/test/Model/FilesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FolderTest.php b/src/gen/test/Model/FolderTest.php
index 253f2497cf..3dc866bb8f 100644
--- a/src/gen/test/Model/FolderTest.php
+++ b/src/gen/test/Model/FolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionGroupTest.php b/src/gen/test/Model/FormFieldOptionGroupTest.php
index 5830d74789..43c8e7ab3c 100644
--- a/src/gen/test/Model/FormFieldOptionGroupTest.php
+++ b/src/gen/test/Model/FormFieldOptionGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionTest.php b/src/gen/test/Model/FormFieldOptionTest.php
index 7105cf9012..d74d522d67 100644
--- a/src/gen/test/Model/FormFieldOptionTest.php
+++ b/src/gen/test/Model/FormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldTest.php b/src/gen/test/Model/FormFieldTest.php
index 71c4d7aa07..101792b5ac 100644
--- a/src/gen/test/Model/FormFieldTest.php
+++ b/src/gen/test/Model/FormFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GenderTest.php b/src/gen/test/Model/GenderTest.php
index 10d9162786..bec09e836b 100644
--- a/src/gen/test/Model/GenderTest.php
+++ b/src/gen/test/Model/GenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetActivitiesResponseTest.php b/src/gen/test/Model/GetActivitiesResponseTest.php
index 9e76019032..cf9b9acd14 100644
--- a/src/gen/test/Model/GetActivitiesResponseTest.php
+++ b/src/gen/test/Model/GetActivitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetActivityResponseTest.php b/src/gen/test/Model/GetActivityResponseTest.php
index 8a968f43cf..9064a4a134 100644
--- a/src/gen/test/Model/GetActivityResponseTest.php
+++ b/src/gen/test/Model/GetActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
index b5f31ce4cb..40608049e6 100644
--- a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceResponseTest.php b/src/gen/test/Model/GetApiResourceResponseTest.php
index 53f5aa4164..f0714e154f 100644
--- a/src/gen/test/Model/GetApiResourceResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResponseTest.php b/src/gen/test/Model/GetApiResponseTest.php
index ecb7c196e1..5753a6c628 100644
--- a/src/gen/test/Model/GetApiResponseTest.php
+++ b/src/gen/test/Model/GetApiResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApisResponseTest.php b/src/gen/test/Model/GetApisResponseTest.php
index d3fc394036..d2b694829b 100644
--- a/src/gen/test/Model/GetApisResponseTest.php
+++ b/src/gen/test/Model/GetApisResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantResponseTest.php b/src/gen/test/Model/GetApplicantResponseTest.php
index ab933e826c..e9e656c63f 100644
--- a/src/gen/test/Model/GetApplicantResponseTest.php
+++ b/src/gen/test/Model/GetApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantsResponseTest.php b/src/gen/test/Model/GetApplicantsResponseTest.php
index f557b3db3d..925a8fc0e4 100644
--- a/src/gen/test/Model/GetApplicantsResponseTest.php
+++ b/src/gen/test/Model/GetApplicantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationResponseTest.php b/src/gen/test/Model/GetApplicationResponseTest.php
index 243c710f6d..5e38cfe9fb 100644
--- a/src/gen/test/Model/GetApplicationResponseTest.php
+++ b/src/gen/test/Model/GetApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationsResponseTest.php b/src/gen/test/Model/GetApplicationsResponseTest.php
index f308ce9b87..6634eed221 100644
--- a/src/gen/test/Model/GetApplicationsResponseTest.php
+++ b/src/gen/test/Model/GetApplicationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBalanceSheetResponseTest.php b/src/gen/test/Model/GetBalanceSheetResponseTest.php
index f3bbf1bc21..65161633e2 100644
--- a/src/gen/test/Model/GetBalanceSheetResponseTest.php
+++ b/src/gen/test/Model/GetBalanceSheetResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillResponseTest.php b/src/gen/test/Model/GetBillResponseTest.php
index f9baa3c1fb..3e7be72eb2 100644
--- a/src/gen/test/Model/GetBillResponseTest.php
+++ b/src/gen/test/Model/GetBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillsResponseTest.php b/src/gen/test/Model/GetBillsResponseTest.php
index c1558bb077..7b2f1ec153 100644
--- a/src/gen/test/Model/GetBillsResponseTest.php
+++ b/src/gen/test/Model/GetBillsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionResponseTest.php b/src/gen/test/Model/GetCollectionResponseTest.php
index a7c6025c04..427d651d84 100644
--- a/src/gen/test/Model/GetCollectionResponseTest.php
+++ b/src/gen/test/Model/GetCollectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionTagsResponseTest.php b/src/gen/test/Model/GetCollectionTagsResponseTest.php
index 5ad28fcf85..c4c4fe9888 100644
--- a/src/gen/test/Model/GetCollectionTagsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionTagsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUserResponseTest.php b/src/gen/test/Model/GetCollectionUserResponseTest.php
index 388deabe27..d7c8be05f6 100644
--- a/src/gen/test/Model/GetCollectionUserResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUsersResponseTest.php b/src/gen/test/Model/GetCollectionUsersResponseTest.php
index 16aa1c558d..1546e4c686 100644
--- a/src/gen/test/Model/GetCollectionUsersResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionsResponseTest.php b/src/gen/test/Model/GetCollectionsResponseTest.php
index f1979d6e38..5fa00d7729 100644
--- a/src/gen/test/Model/GetCollectionsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentResponseTest.php b/src/gen/test/Model/GetCommentResponseTest.php
index 0c8493110f..872df087f0 100644
--- a/src/gen/test/Model/GetCommentResponseTest.php
+++ b/src/gen/test/Model/GetCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentsResponseTest.php b/src/gen/test/Model/GetCommentsResponseTest.php
index 15de88eae8..3fc7110fed 100644
--- a/src/gen/test/Model/GetCommentsResponseTest.php
+++ b/src/gen/test/Model/GetCommentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompaniesResponseTest.php b/src/gen/test/Model/GetCompaniesResponseTest.php
index 3b059583ac..37076e592f 100644
--- a/src/gen/test/Model/GetCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyInfoResponseTest.php b/src/gen/test/Model/GetCompanyInfoResponseTest.php
index c9e34d4ea3..4a337299a8 100644
--- a/src/gen/test/Model/GetCompanyInfoResponseTest.php
+++ b/src/gen/test/Model/GetCompanyInfoResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyResponseTest.php b/src/gen/test/Model/GetCompanyResponseTest.php
index ec232e64a0..d8a83c2971 100644
--- a/src/gen/test/Model/GetCompanyResponseTest.php
+++ b/src/gen/test/Model/GetCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionResponseTest.php b/src/gen/test/Model/GetConnectionResponseTest.php
index 32e95714ed..1ec12e63d2 100644
--- a/src/gen/test/Model/GetConnectionResponseTest.php
+++ b/src/gen/test/Model/GetConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionsResponseTest.php b/src/gen/test/Model/GetConnectionsResponseTest.php
index 55e2ce497a..05ae72807b 100644
--- a/src/gen/test/Model/GetConnectionsResponseTest.php
+++ b/src/gen/test/Model/GetConnectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
index c054aea4c5..03689a5368 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
index 38ba27c61e..0843c9e45c 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceResponseTest.php b/src/gen/test/Model/GetConnectorResourceResponseTest.php
index cefd92fb83..db878a88fc 100644
--- a/src/gen/test/Model/GetConnectorResourceResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
index 3f0cfaaf64..ff4a1e8495 100644
--- a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResponseTest.php b/src/gen/test/Model/GetConnectorResponseTest.php
index dc8fcd3b8b..ef4625d73f 100644
--- a/src/gen/test/Model/GetConnectorResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorsResponseTest.php b/src/gen/test/Model/GetConnectorsResponseTest.php
index 57153c7c47..2ec4302253 100644
--- a/src/gen/test/Model/GetConnectorsResponseTest.php
+++ b/src/gen/test/Model/GetConnectorsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumerResponseTest.php b/src/gen/test/Model/GetConsumerResponseTest.php
index 18fc57df9a..b53670844c 100644
--- a/src/gen/test/Model/GetConsumerResponseTest.php
+++ b/src/gen/test/Model/GetConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseDataTest.php b/src/gen/test/Model/GetConsumersResponseDataTest.php
index ba570731f1..77e22f21ed 100644
--- a/src/gen/test/Model/GetConsumersResponseDataTest.php
+++ b/src/gen/test/Model/GetConsumersResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseTest.php b/src/gen/test/Model/GetConsumersResponseTest.php
index 265e303f33..9a0188530e 100644
--- a/src/gen/test/Model/GetConsumersResponseTest.php
+++ b/src/gen/test/Model/GetConsumersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactResponseTest.php b/src/gen/test/Model/GetContactResponseTest.php
index 100c7f1b81..44d9a89e84 100644
--- a/src/gen/test/Model/GetContactResponseTest.php
+++ b/src/gen/test/Model/GetContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactsResponseTest.php b/src/gen/test/Model/GetContactsResponseTest.php
index b7eeb537bf..8b59283f59 100644
--- a/src/gen/test/Model/GetContactsResponseTest.php
+++ b/src/gen/test/Model/GetContactsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNoteResponseTest.php b/src/gen/test/Model/GetCreditNoteResponseTest.php
index a7269bab5b..c2ebc62e08 100644
--- a/src/gen/test/Model/GetCreditNoteResponseTest.php
+++ b/src/gen/test/Model/GetCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNotesResponseTest.php b/src/gen/test/Model/GetCreditNotesResponseTest.php
index 194051f224..ac46b0c047 100644
--- a/src/gen/test/Model/GetCreditNotesResponseTest.php
+++ b/src/gen/test/Model/GetCreditNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomFieldsResponseTest.php b/src/gen/test/Model/GetCustomFieldsResponseTest.php
index bbd30202e5..31e564ce8b 100644
--- a/src/gen/test/Model/GetCustomFieldsResponseTest.php
+++ b/src/gen/test/Model/GetCustomFieldsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomMappingResponseTest.php b/src/gen/test/Model/GetCustomMappingResponseTest.php
index 4e0cebd0e0..e0a42bf2fd 100644
--- a/src/gen/test/Model/GetCustomMappingResponseTest.php
+++ b/src/gen/test/Model/GetCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomerResponseTest.php b/src/gen/test/Model/GetCustomerResponseTest.php
index 35afe8df0d..d526d2bb19 100644
--- a/src/gen/test/Model/GetCustomerResponseTest.php
+++ b/src/gen/test/Model/GetCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomersResponseTest.php b/src/gen/test/Model/GetCustomersResponseTest.php
index b92d210b81..4c4414b9be 100644
--- a/src/gen/test/Model/GetCustomersResponseTest.php
+++ b/src/gen/test/Model/GetCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentResponseTest.php b/src/gen/test/Model/GetDepartmentResponseTest.php
index 687e78b3b0..d65c115405 100644
--- a/src/gen/test/Model/GetDepartmentResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentsResponseTest.php b/src/gen/test/Model/GetDepartmentsResponseTest.php
index 6e065b596e..26796e0fc6 100644
--- a/src/gen/test/Model/GetDepartmentsResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupResponseTest.php b/src/gen/test/Model/GetDriveGroupResponseTest.php
index 16fef0c175..ca562d322f 100644
--- a/src/gen/test/Model/GetDriveGroupResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupsResponseTest.php b/src/gen/test/Model/GetDriveGroupsResponseTest.php
index bf450a18d1..891eca6e95 100644
--- a/src/gen/test/Model/GetDriveGroupsResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveResponseTest.php b/src/gen/test/Model/GetDriveResponseTest.php
index c589e8c0aa..425eb5d20d 100644
--- a/src/gen/test/Model/GetDriveResponseTest.php
+++ b/src/gen/test/Model/GetDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDrivesResponseTest.php b/src/gen/test/Model/GetDrivesResponseTest.php
index 9e77b8409a..086e6e6bae 100644
--- a/src/gen/test/Model/GetDrivesResponseTest.php
+++ b/src/gen/test/Model/GetDrivesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
index 516fdaf744..d3cb2445f1 100644
--- a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
index 55ece3cbed..b3044a92c9 100644
--- a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrderResponseTest.php b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
index dd977c75a9..e9c37ce356 100644
--- a/src/gen/test/Model/GetEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
index 7bc38b1d08..8b82df58a0 100644
--- a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollResponseTest.php b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
index 5fdb3bf76f..69e8300fe1 100644
--- a/src/gen/test/Model/GetEmployeePayrollResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
index de2f9e6c13..e1acfb4c31 100644
--- a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeResponseTest.php b/src/gen/test/Model/GetEmployeeResponseTest.php
index d35969fec2..c3aa782204 100644
--- a/src/gen/test/Model/GetEmployeeResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
index 5ef38e4dfe..83c8f6a936 100644
--- a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeesResponseTest.php b/src/gen/test/Model/GetEmployeesResponseTest.php
index 9ad84ddb19..1f76a5c193 100644
--- a/src/gen/test/Model/GetEmployeesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFileResponseTest.php b/src/gen/test/Model/GetFileResponseTest.php
index 479fa03a0d..3a05bdd5a9 100644
--- a/src/gen/test/Model/GetFileResponseTest.php
+++ b/src/gen/test/Model/GetFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFilesResponseTest.php b/src/gen/test/Model/GetFilesResponseTest.php
index e7044fed71..2c071d309a 100644
--- a/src/gen/test/Model/GetFilesResponseTest.php
+++ b/src/gen/test/Model/GetFilesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFolderResponseTest.php b/src/gen/test/Model/GetFolderResponseTest.php
index cf7b93a1e1..f6c4992f0c 100644
--- a/src/gen/test/Model/GetFolderResponseTest.php
+++ b/src/gen/test/Model/GetFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFoldersResponseTest.php b/src/gen/test/Model/GetFoldersResponseTest.php
index 9fcacad4c9..a982b4185f 100644
--- a/src/gen/test/Model/GetFoldersResponseTest.php
+++ b/src/gen/test/Model/GetFoldersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompaniesResponseTest.php b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
index 26f3937c7f..31dbf5dc31 100644
--- a/src/gen/test/Model/GetHrisCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompanyResponseTest.php b/src/gen/test/Model/GetHrisCompanyResponseTest.php
index 3561525f50..eddabb070e 100644
--- a/src/gen/test/Model/GetHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobResponseTest.php b/src/gen/test/Model/GetHrisJobResponseTest.php
index 7f8b8ab3c2..6632f5de19 100644
--- a/src/gen/test/Model/GetHrisJobResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobsResponseTest.php b/src/gen/test/Model/GetHrisJobsResponseTest.php
index 8b6e024ecd..616c0299b3 100644
--- a/src/gen/test/Model/GetHrisJobsResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemResponseTest.php b/src/gen/test/Model/GetInvoiceItemResponseTest.php
index d9c8c35bf4..f7a4441465 100644
--- a/src/gen/test/Model/GetInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemsResponseTest.php b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
index fec92d68b7..97c355df5c 100644
--- a/src/gen/test/Model/GetInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceResponseTest.php b/src/gen/test/Model/GetInvoiceResponseTest.php
index b1724a70a3..46e19e4fb4 100644
--- a/src/gen/test/Model/GetInvoiceResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoicesResponseTest.php b/src/gen/test/Model/GetInvoicesResponseTest.php
index 5cceda669c..c0301e5944 100644
--- a/src/gen/test/Model/GetInvoicesResponseTest.php
+++ b/src/gen/test/Model/GetInvoicesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemResponseTest.php b/src/gen/test/Model/GetItemResponseTest.php
index 68f64fd3d9..48ef35788d 100644
--- a/src/gen/test/Model/GetItemResponseTest.php
+++ b/src/gen/test/Model/GetItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemsResponseTest.php b/src/gen/test/Model/GetItemsResponseTest.php
index 996587ad97..13dcee5fb7 100644
--- a/src/gen/test/Model/GetItemsResponseTest.php
+++ b/src/gen/test/Model/GetItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobResponseTest.php b/src/gen/test/Model/GetJobResponseTest.php
index 9af6155966..f8332737ad 100644
--- a/src/gen/test/Model/GetJobResponseTest.php
+++ b/src/gen/test/Model/GetJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobsResponseTest.php b/src/gen/test/Model/GetJobsResponseTest.php
index 56d1baecc5..8318471a81 100644
--- a/src/gen/test/Model/GetJobsResponseTest.php
+++ b/src/gen/test/Model/GetJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntriesResponseTest.php b/src/gen/test/Model/GetJournalEntriesResponseTest.php
index d9a8d5f0e1..a3a5fc9ff4 100644
--- a/src/gen/test/Model/GetJournalEntriesResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntriesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntryResponseTest.php b/src/gen/test/Model/GetJournalEntryResponseTest.php
index a3295c1df4..14b7d2c0f5 100644
--- a/src/gen/test/Model/GetJournalEntryResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadResponseTest.php b/src/gen/test/Model/GetLeadResponseTest.php
index 4be17a6c28..f1686079b4 100644
--- a/src/gen/test/Model/GetLeadResponseTest.php
+++ b/src/gen/test/Model/GetLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadsResponseTest.php b/src/gen/test/Model/GetLeadsResponseTest.php
index 00322a5704..2a0d578407 100644
--- a/src/gen/test/Model/GetLeadsResponseTest.php
+++ b/src/gen/test/Model/GetLeadsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountResponseTest.php b/src/gen/test/Model/GetLedgerAccountResponseTest.php
index cf334131aa..6c355113ec 100644
--- a/src/gen/test/Model/GetLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountsResponseTest.php b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
index 6afe884d41..c1d947244e 100644
--- a/src/gen/test/Model/GetLedgerAccountsResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationResponseTest.php b/src/gen/test/Model/GetLocationResponseTest.php
index f4d7b41060..410d908f78 100644
--- a/src/gen/test/Model/GetLocationResponseTest.php
+++ b/src/gen/test/Model/GetLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationsResponseTest.php b/src/gen/test/Model/GetLocationsResponseTest.php
index 817a27163a..d7a89776c3 100644
--- a/src/gen/test/Model/GetLocationsResponseTest.php
+++ b/src/gen/test/Model/GetLocationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLogsResponseTest.php b/src/gen/test/Model/GetLogsResponseTest.php
index 6b872d23c6..d2079a9ae6 100644
--- a/src/gen/test/Model/GetLogsResponseTest.php
+++ b/src/gen/test/Model/GetLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantResponseTest.php b/src/gen/test/Model/GetMerchantResponseTest.php
index 0a2f0c8cde..7558691605 100644
--- a/src/gen/test/Model/GetMerchantResponseTest.php
+++ b/src/gen/test/Model/GetMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantsResponseTest.php b/src/gen/test/Model/GetMerchantsResponseTest.php
index 688ffa519a..cfea9fd0a8 100644
--- a/src/gen/test/Model/GetMerchantsResponseTest.php
+++ b/src/gen/test/Model/GetMerchantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessageResponseTest.php b/src/gen/test/Model/GetMessageResponseTest.php
index ea95d97263..9cd3b38c70 100644
--- a/src/gen/test/Model/GetMessageResponseTest.php
+++ b/src/gen/test/Model/GetMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessagesResponseTest.php b/src/gen/test/Model/GetMessagesResponseTest.php
index 715f3d99e7..1a93575538 100644
--- a/src/gen/test/Model/GetMessagesResponseTest.php
+++ b/src/gen/test/Model/GetMessagesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupResponseTest.php b/src/gen/test/Model/GetModifierGroupResponseTest.php
index eda5faab1b..676a79121f 100644
--- a/src/gen/test/Model/GetModifierGroupResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupsResponseTest.php b/src/gen/test/Model/GetModifierGroupsResponseTest.php
index bc52ce5c4b..a03c32fbc5 100644
--- a/src/gen/test/Model/GetModifierGroupsResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierResponseTest.php b/src/gen/test/Model/GetModifierResponseTest.php
index b2ea356966..b22f095679 100644
--- a/src/gen/test/Model/GetModifierResponseTest.php
+++ b/src/gen/test/Model/GetModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifiersResponseTest.php b/src/gen/test/Model/GetModifiersResponseTest.php
index dcf37e76e7..cf716f7d45 100644
--- a/src/gen/test/Model/GetModifiersResponseTest.php
+++ b/src/gen/test/Model/GetModifiersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNoteResponseTest.php b/src/gen/test/Model/GetNoteResponseTest.php
index cd8a19ae7c..08d0e82e39 100644
--- a/src/gen/test/Model/GetNoteResponseTest.php
+++ b/src/gen/test/Model/GetNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNotesResponseTest.php b/src/gen/test/Model/GetNotesResponseTest.php
index ea3d1f7d8b..6d494f202c 100644
--- a/src/gen/test/Model/GetNotesResponseTest.php
+++ b/src/gen/test/Model/GetNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunitiesResponseTest.php b/src/gen/test/Model/GetOpportunitiesResponseTest.php
index 355d30955c..35667e8f65 100644
--- a/src/gen/test/Model/GetOpportunitiesResponseTest.php
+++ b/src/gen/test/Model/GetOpportunitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunityResponseTest.php b/src/gen/test/Model/GetOpportunityResponseTest.php
index 604eb158e4..2a0654011d 100644
--- a/src/gen/test/Model/GetOpportunityResponseTest.php
+++ b/src/gen/test/Model/GetOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderResponseTest.php b/src/gen/test/Model/GetOrderResponseTest.php
index c5eea9b618..5b47cc7415 100644
--- a/src/gen/test/Model/GetOrderResponseTest.php
+++ b/src/gen/test/Model/GetOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypeResponseTest.php b/src/gen/test/Model/GetOrderTypeResponseTest.php
index 23afac03d2..f6f3ff7668 100644
--- a/src/gen/test/Model/GetOrderTypeResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypesResponseTest.php b/src/gen/test/Model/GetOrderTypesResponseTest.php
index 37d38eb7bc..967034da7b 100644
--- a/src/gen/test/Model/GetOrderTypesResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrdersResponseTest.php b/src/gen/test/Model/GetOrdersResponseTest.php
index d473ec3c15..deee6b7fa9 100644
--- a/src/gen/test/Model/GetOrdersResponseTest.php
+++ b/src/gen/test/Model/GetOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentResponseTest.php b/src/gen/test/Model/GetPaymentResponseTest.php
index 46cb30ee54..5d13567c28 100644
--- a/src/gen/test/Model/GetPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentsResponseTest.php b/src/gen/test/Model/GetPaymentsResponseTest.php
index 6ceb711d1b..189f74c68c 100644
--- a/src/gen/test/Model/GetPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollResponseTest.php b/src/gen/test/Model/GetPayrollResponseTest.php
index 54736858ae..a4f4059fb1 100644
--- a/src/gen/test/Model/GetPayrollResponseTest.php
+++ b/src/gen/test/Model/GetPayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollsResponseTest.php b/src/gen/test/Model/GetPayrollsResponseTest.php
index a45effce5d..ac546a6384 100644
--- a/src/gen/test/Model/GetPayrollsResponseTest.php
+++ b/src/gen/test/Model/GetPayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelineResponseTest.php b/src/gen/test/Model/GetPipelineResponseTest.php
index 344b764978..85fa85b0fe 100644
--- a/src/gen/test/Model/GetPipelineResponseTest.php
+++ b/src/gen/test/Model/GetPipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelinesResponseTest.php b/src/gen/test/Model/GetPipelinesResponseTest.php
index 176a280220..8ab812432b 100644
--- a/src/gen/test/Model/GetPipelinesResponseTest.php
+++ b/src/gen/test/Model/GetPipelinesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentResponseTest.php b/src/gen/test/Model/GetPosPaymentResponseTest.php
index d800dc4a07..f0079f99d1 100644
--- a/src/gen/test/Model/GetPosPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentsResponseTest.php b/src/gen/test/Model/GetPosPaymentsResponseTest.php
index d4e7494086..1dba26999b 100644
--- a/src/gen/test/Model/GetPosPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductResponseTest.php b/src/gen/test/Model/GetProductResponseTest.php
index 176b795e19..0c1d1a7364 100644
--- a/src/gen/test/Model/GetProductResponseTest.php
+++ b/src/gen/test/Model/GetProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductsResponseTest.php b/src/gen/test/Model/GetProductsResponseTest.php
index b06ac25bb9..ef47834032 100644
--- a/src/gen/test/Model/GetProductsResponseTest.php
+++ b/src/gen/test/Model/GetProductsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProfitAndLossResponseTest.php b/src/gen/test/Model/GetProfitAndLossResponseTest.php
index 9456407aa5..0f6207a4a6 100644
--- a/src/gen/test/Model/GetProfitAndLossResponseTest.php
+++ b/src/gen/test/Model/GetProfitAndLossResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrderResponseTest.php b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
index 5e43893855..1d2205614d 100644
--- a/src/gen/test/Model/GetPurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
index 788f1641c0..e170ec2fd4 100644
--- a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceExampleResponseTest.php b/src/gen/test/Model/GetResourceExampleResponseTest.php
index 26be3447c2..9ebc739863 100644
--- a/src/gen/test/Model/GetResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceSchemaResponseTest.php b/src/gen/test/Model/GetResourceSchemaResponseTest.php
index a7ef5b4b3f..5333460c9f 100644
--- a/src/gen/test/Model/GetResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinkResponseTest.php b/src/gen/test/Model/GetSharedLinkResponseTest.php
index 223e10b1fd..5172dbbb0b 100644
--- a/src/gen/test/Model/GetSharedLinkResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinksResponseTest.php b/src/gen/test/Model/GetSharedLinksResponseTest.php
index 9820679e3f..8ffa31d5c7 100644
--- a/src/gen/test/Model/GetSharedLinksResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoreResponseTest.php b/src/gen/test/Model/GetStoreResponseTest.php
index 5b17313f24..6b8831dbf8 100644
--- a/src/gen/test/Model/GetStoreResponseTest.php
+++ b/src/gen/test/Model/GetStoreResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoresResponseTest.php b/src/gen/test/Model/GetStoresResponseTest.php
index 86de390681..dcbcfc8e7f 100644
--- a/src/gen/test/Model/GetStoresResponseTest.php
+++ b/src/gen/test/Model/GetStoresResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSubsidiariesResponseTest.php b/src/gen/test/Model/GetSubsidiariesResponseTest.php
new file mode 100644
index 0000000000..ec9a404de5
--- /dev/null
+++ b/src/gen/test/Model/GetSubsidiariesResponseTest.php
@@ -0,0 +1,153 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "meta"
+ */
+ public function testPropertyMeta()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "links"
+ */
+ public function testPropertyLinks()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/GetSubsidiaryResponseTest.php b/src/gen/test/Model/GetSubsidiaryResponseTest.php
new file mode 100644
index 0000000000..6f5e613162
--- /dev/null
+++ b/src/gen/test/Model/GetSubsidiaryResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/GetSupplierResponseTest.php b/src/gen/test/Model/GetSupplierResponseTest.php
index 3a04688122..5bb89e6ea6 100644
--- a/src/gen/test/Model/GetSupplierResponseTest.php
+++ b/src/gen/test/Model/GetSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSuppliersResponseTest.php b/src/gen/test/Model/GetSuppliersResponseTest.php
index 9c3ffd9665..bbc27094dc 100644
--- a/src/gen/test/Model/GetSuppliersResponseTest.php
+++ b/src/gen/test/Model/GetSuppliersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRateResponseTest.php b/src/gen/test/Model/GetTaxRateResponseTest.php
index 7af36e213f..d3f32ac208 100644
--- a/src/gen/test/Model/GetTaxRateResponseTest.php
+++ b/src/gen/test/Model/GetTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRatesResponseTest.php b/src/gen/test/Model/GetTaxRatesResponseTest.php
index dd15d229c0..b04d07eb7f 100644
--- a/src/gen/test/Model/GetTaxRatesResponseTest.php
+++ b/src/gen/test/Model/GetTaxRatesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTenderResponseTest.php b/src/gen/test/Model/GetTenderResponseTest.php
index 5a087a3f07..373696eb27 100644
--- a/src/gen/test/Model/GetTenderResponseTest.php
+++ b/src/gen/test/Model/GetTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTendersResponseTest.php b/src/gen/test/Model/GetTendersResponseTest.php
index 5d2d2430dd..033b0c7615 100644
--- a/src/gen/test/Model/GetTendersResponseTest.php
+++ b/src/gen/test/Model/GetTendersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketResponseTest.php b/src/gen/test/Model/GetTicketResponseTest.php
index 443b61fef7..94a84959de 100644
--- a/src/gen/test/Model/GetTicketResponseTest.php
+++ b/src/gen/test/Model/GetTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketsResponseTest.php b/src/gen/test/Model/GetTicketsResponseTest.php
index 7bf8bf4fce..be3853f530 100644
--- a/src/gen/test/Model/GetTicketsResponseTest.php
+++ b/src/gen/test/Model/GetTicketsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestResponseTest.php b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
index ccdb7ae1fa..2d36b6f75b 100644
--- a/src/gen/test/Model/GetTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
index 7afe053117..0712dd4769 100644
--- a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUploadSessionResponseTest.php b/src/gen/test/Model/GetUploadSessionResponseTest.php
index 395b15b6cb..0f7e5f1a67 100644
--- a/src/gen/test/Model/GetUploadSessionResponseTest.php
+++ b/src/gen/test/Model/GetUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUserResponseTest.php b/src/gen/test/Model/GetUserResponseTest.php
index dbbc555220..aefb52cc13 100644
--- a/src/gen/test/Model/GetUserResponseTest.php
+++ b/src/gen/test/Model/GetUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUsersResponseTest.php b/src/gen/test/Model/GetUsersResponseTest.php
index 97600065f9..e9cab3c28e 100644
--- a/src/gen/test/Model/GetUsersResponseTest.php
+++ b/src/gen/test/Model/GetUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
index 2a813f8005..4431624f4e 100644
--- a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
+++ b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookResponseTest.php b/src/gen/test/Model/GetWebhookResponseTest.php
index 293b283d45..34c6258213 100644
--- a/src/gen/test/Model/GetWebhookResponseTest.php
+++ b/src/gen/test/Model/GetWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhooksResponseTest.php b/src/gen/test/Model/GetWebhooksResponseTest.php
index 405e399ad2..29d30c7be0 100644
--- a/src/gen/test/Model/GetWebhooksResponseTest.php
+++ b/src/gen/test/Model/GetWebhooksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisCompanyTest.php b/src/gen/test/Model/HrisCompanyTest.php
index acaf76d1ac..e5472f5246 100644
--- a/src/gen/test/Model/HrisCompanyTest.php
+++ b/src/gen/test/Model/HrisCompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisEventTypeTest.php b/src/gen/test/Model/HrisEventTypeTest.php
index 43f637a320..f5f8414053 100644
--- a/src/gen/test/Model/HrisEventTypeTest.php
+++ b/src/gen/test/Model/HrisEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobLocationTest.php b/src/gen/test/Model/HrisJobLocationTest.php
index 432187af78..4a9a57056a 100644
--- a/src/gen/test/Model/HrisJobLocationTest.php
+++ b/src/gen/test/Model/HrisJobLocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobTest.php b/src/gen/test/Model/HrisJobTest.php
index 495549dc84..dea9b18eb7 100644
--- a/src/gen/test/Model/HrisJobTest.php
+++ b/src/gen/test/Model/HrisJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobsTest.php b/src/gen/test/Model/HrisJobsTest.php
index 7ddce24185..89d1967089 100644
--- a/src/gen/test/Model/HrisJobsTest.php
+++ b/src/gen/test/Model/HrisJobsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IntegrationStateTest.php b/src/gen/test/Model/IntegrationStateTest.php
index 17363c2039..4f463bc8b2 100644
--- a/src/gen/test/Model/IntegrationStateTest.php
+++ b/src/gen/test/Model/IntegrationStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
index 92a0830e38..a3b098a387 100644
--- a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
+++ b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemTest.php b/src/gen/test/Model/InvoiceItemTest.php
index 9b1b4dd32e..e3d8b03471 100644
--- a/src/gen/test/Model/InvoiceItemTest.php
+++ b/src/gen/test/Model/InvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemsFilterTest.php b/src/gen/test/Model/InvoiceItemsFilterTest.php
index c59cdf9cce..fc3ddfe4b2 100644
--- a/src/gen/test/Model/InvoiceItemsFilterTest.php
+++ b/src/gen/test/Model/InvoiceItemsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceLineItemTest.php b/src/gen/test/Model/InvoiceLineItemTest.php
index c32b4069d2..09b59d0fe6 100644
--- a/src/gen/test/Model/InvoiceLineItemTest.php
+++ b/src/gen/test/Model/InvoiceLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceResponseTest.php b/src/gen/test/Model/InvoiceResponseTest.php
index 407b942ccf..ca0cb3e1f5 100644
--- a/src/gen/test/Model/InvoiceResponseTest.php
+++ b/src/gen/test/Model/InvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceTest.php b/src/gen/test/Model/InvoiceTest.php
index c2070ba1ce..00b4ec7016 100644
--- a/src/gen/test/Model/InvoiceTest.php
+++ b/src/gen/test/Model/InvoiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesFilterTest.php b/src/gen/test/Model/InvoicesFilterTest.php
index e86cac46fd..33ea623913 100644
--- a/src/gen/test/Model/InvoicesFilterTest.php
+++ b/src/gen/test/Model/InvoicesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesSortTest.php b/src/gen/test/Model/InvoicesSortTest.php
index e25cac21a6..100c7fed06 100644
--- a/src/gen/test/Model/InvoicesSortTest.php
+++ b/src/gen/test/Model/InvoicesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssueTrackingEventTypeTest.php b/src/gen/test/Model/IssueTrackingEventTypeTest.php
index 64752c2c26..a8975ed731 100644
--- a/src/gen/test/Model/IssueTrackingEventTypeTest.php
+++ b/src/gen/test/Model/IssueTrackingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssuesFilterTest.php b/src/gen/test/Model/IssuesFilterTest.php
index 3d8792da60..16c00324bd 100644
--- a/src/gen/test/Model/IssuesFilterTest.php
+++ b/src/gen/test/Model/IssuesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ItemTest.php b/src/gen/test/Model/ItemTest.php
index f2cd70c2b4..8ad32047a3 100644
--- a/src/gen/test/Model/ItemTest.php
+++ b/src/gen/test/Model/ItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobLinksTest.php b/src/gen/test/Model/JobLinksTest.php
index 67b65ac19f..ca5e1d58ed 100644
--- a/src/gen/test/Model/JobLinksTest.php
+++ b/src/gen/test/Model/JobLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobSalaryTest.php b/src/gen/test/Model/JobSalaryTest.php
index 5ce0592044..3d4a229e0f 100644
--- a/src/gen/test/Model/JobSalaryTest.php
+++ b/src/gen/test/Model/JobSalaryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobStatusTest.php b/src/gen/test/Model/JobStatusTest.php
index df76eaf2c8..8feb55cb30 100644
--- a/src/gen/test/Model/JobStatusTest.php
+++ b/src/gen/test/Model/JobStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobTest.php b/src/gen/test/Model/JobTest.php
index 75a6fed114..99812db0c0 100644
--- a/src/gen/test/Model/JobTest.php
+++ b/src/gen/test/Model/JobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesFilterTest.php b/src/gen/test/Model/JournalEntriesFilterTest.php
index b383a2be10..4a76866cc9 100644
--- a/src/gen/test/Model/JournalEntriesFilterTest.php
+++ b/src/gen/test/Model/JournalEntriesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesSortTest.php b/src/gen/test/Model/JournalEntriesSortTest.php
index b6bee9d016..1ec6b3a4a3 100644
--- a/src/gen/test/Model/JournalEntriesSortTest.php
+++ b/src/gen/test/Model/JournalEntriesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryLineItemTest.php b/src/gen/test/Model/JournalEntryLineItemTest.php
index e0e9358703..2f8869a477 100644
--- a/src/gen/test/Model/JournalEntryLineItemTest.php
+++ b/src/gen/test/Model/JournalEntryLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryTest.php b/src/gen/test/Model/JournalEntryTest.php
index 43c70782f1..c373c7d98f 100644
--- a/src/gen/test/Model/JournalEntryTest.php
+++ b/src/gen/test/Model/JournalEntryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadEventTypeTest.php b/src/gen/test/Model/LeadEventTypeTest.php
index c587179067..5f65dadc56 100644
--- a/src/gen/test/Model/LeadEventTypeTest.php
+++ b/src/gen/test/Model/LeadEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadTest.php b/src/gen/test/Model/LeadTest.php
index 378047e4ca..2ae6546938 100644
--- a/src/gen/test/Model/LeadTest.php
+++ b/src/gen/test/Model/LeadTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsFilterTest.php b/src/gen/test/Model/LeadsFilterTest.php
index 9a19baa48f..fec6f109ce 100644
--- a/src/gen/test/Model/LeadsFilterTest.php
+++ b/src/gen/test/Model/LeadsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsSortTest.php b/src/gen/test/Model/LeadsSortTest.php
index 760166ac88..3878b94eab 100644
--- a/src/gen/test/Model/LeadsSortTest.php
+++ b/src/gen/test/Model/LeadsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountCategoriesTest.php b/src/gen/test/Model/LedgerAccountCategoriesTest.php
index e5600432e9..aed39d4f71 100644
--- a/src/gen/test/Model/LedgerAccountCategoriesTest.php
+++ b/src/gen/test/Model/LedgerAccountCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountParentAccountTest.php b/src/gen/test/Model/LedgerAccountParentAccountTest.php
index 831007c1b8..ff84d468f0 100644
--- a/src/gen/test/Model/LedgerAccountParentAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountParentAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountTest.php b/src/gen/test/Model/LedgerAccountTest.php
index 1d864a12e3..c470d9afd0 100644
--- a/src/gen/test/Model/LedgerAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsFilterTest.php b/src/gen/test/Model/LedgerAccountsFilterTest.php
index 25e6c7a75b..150bb64a01 100644
--- a/src/gen/test/Model/LedgerAccountsFilterTest.php
+++ b/src/gen/test/Model/LedgerAccountsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsSortTest.php b/src/gen/test/Model/LedgerAccountsSortTest.php
index e9e82ace6c..9a75aa732f 100644
--- a/src/gen/test/Model/LedgerAccountsSortTest.php
+++ b/src/gen/test/Model/LedgerAccountsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedConnectorResourceTest.php b/src/gen/test/Model/LinkedConnectorResourceTest.php
index 1b127d3ace..957d7e7fa8 100644
--- a/src/gen/test/Model/LinkedConnectorResourceTest.php
+++ b/src/gen/test/Model/LinkedConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedCustomerTest.php b/src/gen/test/Model/LinkedCustomerTest.php
index fb090a2236..5df6f41a68 100644
--- a/src/gen/test/Model/LinkedCustomerTest.php
+++ b/src/gen/test/Model/LinkedCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceCustomerTest.php b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
index 9aa5283b89..09b25c3715 100644
--- a/src/gen/test/Model/LinkedEcommerceCustomerTest.php
+++ b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceOrderTest.php b/src/gen/test/Model/LinkedEcommerceOrderTest.php
index 7e6468badd..0c97fa9512 100644
--- a/src/gen/test/Model/LinkedEcommerceOrderTest.php
+++ b/src/gen/test/Model/LinkedEcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedFolderTest.php b/src/gen/test/Model/LinkedFolderTest.php
index b988cc2cf9..3bc9bbca20 100644
--- a/src/gen/test/Model/LinkedFolderTest.php
+++ b/src/gen/test/Model/LinkedFolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedInvoiceItemTest.php b/src/gen/test/Model/LinkedInvoiceItemTest.php
index f2eed81704..9f514601b0 100644
--- a/src/gen/test/Model/LinkedInvoiceItemTest.php
+++ b/src/gen/test/Model/LinkedInvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedLedgerAccountTest.php b/src/gen/test/Model/LinkedLedgerAccountTest.php
index 7d0cc1ab26..104402fad1 100644
--- a/src/gen/test/Model/LinkedLedgerAccountTest.php
+++ b/src/gen/test/Model/LinkedLedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedParentCustomerTest.php b/src/gen/test/Model/LinkedParentCustomerTest.php
index f828333206..76e821efc8 100644
--- a/src/gen/test/Model/LinkedParentCustomerTest.php
+++ b/src/gen/test/Model/LinkedParentCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedSupplierTest.php b/src/gen/test/Model/LinkedSupplierTest.php
index 6961644065..421eebda76 100644
--- a/src/gen/test/Model/LinkedSupplierTest.php
+++ b/src/gen/test/Model/LinkedSupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTaxRateTest.php b/src/gen/test/Model/LinkedTaxRateTest.php
index d4aad0402a..1c11404463 100644
--- a/src/gen/test/Model/LinkedTaxRateTest.php
+++ b/src/gen/test/Model/LinkedTaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTrackingCategoryTest.php b/src/gen/test/Model/LinkedTrackingCategoryTest.php
index da6eeab851..a397f24881 100644
--- a/src/gen/test/Model/LinkedTrackingCategoryTest.php
+++ b/src/gen/test/Model/LinkedTrackingCategoryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinksTest.php b/src/gen/test/Model/LinksTest.php
index 31d5d30881..4e7dccb501 100644
--- a/src/gen/test/Model/LinksTest.php
+++ b/src/gen/test/Model/LinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LocationTest.php b/src/gen/test/Model/LocationTest.php
index cb66e538ac..eafdd6eeec 100644
--- a/src/gen/test/Model/LocationTest.php
+++ b/src/gen/test/Model/LocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogOperationTest.php b/src/gen/test/Model/LogOperationTest.php
index e669bcbc92..7ac6f34c02 100644
--- a/src/gen/test/Model/LogOperationTest.php
+++ b/src/gen/test/Model/LogOperationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogServiceTest.php b/src/gen/test/Model/LogServiceTest.php
index d46332b97c..646be6ea9b 100644
--- a/src/gen/test/Model/LogServiceTest.php
+++ b/src/gen/test/Model/LogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogTest.php b/src/gen/test/Model/LogTest.php
index 0d51f025cd..0434d38c2c 100644
--- a/src/gen/test/Model/LogTest.php
+++ b/src/gen/test/Model/LogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogsFilterTest.php b/src/gen/test/Model/LogsFilterTest.php
index 8198a570cb..bdccadf4b3 100644
--- a/src/gen/test/Model/LogsFilterTest.php
+++ b/src/gen/test/Model/LogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MerchantTest.php b/src/gen/test/Model/MerchantTest.php
index 94b53b6da0..db9bcda6bf 100644
--- a/src/gen/test/Model/MerchantTest.php
+++ b/src/gen/test/Model/MerchantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MessageTest.php b/src/gen/test/Model/MessageTest.php
index 558d07a0ae..77ac6ce903 100644
--- a/src/gen/test/Model/MessageTest.php
+++ b/src/gen/test/Model/MessageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaCursorsTest.php b/src/gen/test/Model/MetaCursorsTest.php
index cc33089c18..6be873f87d 100644
--- a/src/gen/test/Model/MetaCursorsTest.php
+++ b/src/gen/test/Model/MetaCursorsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaTest.php b/src/gen/test/Model/MetaTest.php
index c1a1596cce..42a611d1b3 100644
--- a/src/gen/test/Model/MetaTest.php
+++ b/src/gen/test/Model/MetaTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupFilterTest.php b/src/gen/test/Model/ModifierGroupFilterTest.php
index 9f828418a2..248c76f91e 100644
--- a/src/gen/test/Model/ModifierGroupFilterTest.php
+++ b/src/gen/test/Model/ModifierGroupFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupTest.php b/src/gen/test/Model/ModifierGroupTest.php
index a7e600dc97..2f81c9d40e 100644
--- a/src/gen/test/Model/ModifierGroupTest.php
+++ b/src/gen/test/Model/ModifierGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierTest.php b/src/gen/test/Model/ModifierTest.php
index f73ccf241e..71504896d0 100644
--- a/src/gen/test/Model/ModifierTest.php
+++ b/src/gen/test/Model/ModifierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotFoundResponseTest.php b/src/gen/test/Model/NotFoundResponseTest.php
index 53dad96949..b81c8ba901 100644
--- a/src/gen/test/Model/NotFoundResponseTest.php
+++ b/src/gen/test/Model/NotFoundResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotImplementedResponseTest.php b/src/gen/test/Model/NotImplementedResponseTest.php
index f7e0667d68..a4cc66f706 100644
--- a/src/gen/test/Model/NotImplementedResponseTest.php
+++ b/src/gen/test/Model/NotImplementedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NoteTest.php b/src/gen/test/Model/NoteTest.php
index bd16453579..f74553fd54 100644
--- a/src/gen/test/Model/NoteTest.php
+++ b/src/gen/test/Model/NoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OAuthGrantTypeTest.php b/src/gen/test/Model/OAuthGrantTypeTest.php
index bc25813d4d..da8e2f3c1e 100644
--- a/src/gen/test/Model/OAuthGrantTypeTest.php
+++ b/src/gen/test/Model/OAuthGrantTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OfferTest.php b/src/gen/test/Model/OfferTest.php
index 8498d4f11b..575218c88f 100644
--- a/src/gen/test/Model/OfferTest.php
+++ b/src/gen/test/Model/OfferTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesFilterTest.php b/src/gen/test/Model/OpportunitiesFilterTest.php
index e878835da0..4cd2f659bd 100644
--- a/src/gen/test/Model/OpportunitiesFilterTest.php
+++ b/src/gen/test/Model/OpportunitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesSortTest.php b/src/gen/test/Model/OpportunitiesSortTest.php
index 7e1f52547c..f69a78923b 100644
--- a/src/gen/test/Model/OpportunitiesSortTest.php
+++ b/src/gen/test/Model/OpportunitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunityTest.php b/src/gen/test/Model/OpportunityTest.php
index b13f80758c..81632d8066 100644
--- a/src/gen/test/Model/OpportunityTest.php
+++ b/src/gen/test/Model/OpportunityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderCustomersTest.php b/src/gen/test/Model/OrderCustomersTest.php
index 554f27fb7a..3c0171b731 100644
--- a/src/gen/test/Model/OrderCustomersTest.php
+++ b/src/gen/test/Model/OrderCustomersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderDiscountsTest.php b/src/gen/test/Model/OrderDiscountsTest.php
index dd23dfc627..8a7209f16a 100644
--- a/src/gen/test/Model/OrderDiscountsTest.php
+++ b/src/gen/test/Model/OrderDiscountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderFulfillmentsTest.php b/src/gen/test/Model/OrderFulfillmentsTest.php
index b9c4394a99..9c0e1b10b7 100644
--- a/src/gen/test/Model/OrderFulfillmentsTest.php
+++ b/src/gen/test/Model/OrderFulfillmentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderLineItemsTest.php b/src/gen/test/Model/OrderLineItemsTest.php
index 440e271c65..4dc9e1d935 100644
--- a/src/gen/test/Model/OrderLineItemsTest.php
+++ b/src/gen/test/Model/OrderLineItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPaymentsTest.php b/src/gen/test/Model/OrderPaymentsTest.php
index f6cc842cc8..4afe9895b1 100644
--- a/src/gen/test/Model/OrderPaymentsTest.php
+++ b/src/gen/test/Model/OrderPaymentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
index 33b4369d93..5cc14b4734 100644
--- a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
index e842c7786e..10478cbda6 100644
--- a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsTest.php
index aa96b6c877..7b3ed33dc2 100644
--- a/src/gen/test/Model/OrderPickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderRefundsTest.php b/src/gen/test/Model/OrderRefundsTest.php
index 76ba767b0c..9a76cab14f 100644
--- a/src/gen/test/Model/OrderRefundsTest.php
+++ b/src/gen/test/Model/OrderRefundsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTendersTest.php b/src/gen/test/Model/OrderTendersTest.php
index 522b2b5dba..7c81476498 100644
--- a/src/gen/test/Model/OrderTendersTest.php
+++ b/src/gen/test/Model/OrderTendersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTest.php b/src/gen/test/Model/OrderTest.php
index cb4d6c697c..711c05b38c 100644
--- a/src/gen/test/Model/OrderTest.php
+++ b/src/gen/test/Model/OrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTypeTest.php b/src/gen/test/Model/OrderTypeTest.php
index 0632c31b63..404b65b9f9 100644
--- a/src/gen/test/Model/OrderTypeTest.php
+++ b/src/gen/test/Model/OrderTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OwnerTest.php b/src/gen/test/Model/OwnerTest.php
index c53da50c5b..3c45d38e9a 100644
--- a/src/gen/test/Model/OwnerTest.php
+++ b/src/gen/test/Model/OwnerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaginationCoverageTest.php b/src/gen/test/Model/PaginationCoverageTest.php
index a37739b4cd..689f85e15e 100644
--- a/src/gen/test/Model/PaginationCoverageTest.php
+++ b/src/gen/test/Model/PaginationCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PassThroughQueryTest.php b/src/gen/test/Model/PassThroughQueryTest.php
index bfb146ee45..fc9f20f895 100644
--- a/src/gen/test/Model/PassThroughQueryTest.php
+++ b/src/gen/test/Model/PassThroughQueryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentAllocationsTest.php b/src/gen/test/Model/PaymentAllocationsTest.php
index a67a4901b5..6dee6a4489 100644
--- a/src/gen/test/Model/PaymentAllocationsTest.php
+++ b/src/gen/test/Model/PaymentAllocationsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentCardTest.php b/src/gen/test/Model/PaymentCardTest.php
index d852d807c9..6159eba5b4 100644
--- a/src/gen/test/Model/PaymentCardTest.php
+++ b/src/gen/test/Model/PaymentCardTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentFrequencyTest.php b/src/gen/test/Model/PaymentFrequencyTest.php
index 9431e61188..fefde3f76f 100644
--- a/src/gen/test/Model/PaymentFrequencyTest.php
+++ b/src/gen/test/Model/PaymentFrequencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentRequiredResponseTest.php b/src/gen/test/Model/PaymentRequiredResponseTest.php
index 2b6112ffd5..3b9eccd51f 100644
--- a/src/gen/test/Model/PaymentRequiredResponseTest.php
+++ b/src/gen/test/Model/PaymentRequiredResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentTest.php b/src/gen/test/Model/PaymentTest.php
index 2712fbca17..b44d1b7b88 100644
--- a/src/gen/test/Model/PaymentTest.php
+++ b/src/gen/test/Model/PaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentUnitTest.php b/src/gen/test/Model/PaymentUnitTest.php
index 5352449f0d..91b7797ef9 100644
--- a/src/gen/test/Model/PaymentUnitTest.php
+++ b/src/gen/test/Model/PaymentUnitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsFilterTest.php b/src/gen/test/Model/PaymentsFilterTest.php
index 1a737ead43..1706b12c96 100644
--- a/src/gen/test/Model/PaymentsFilterTest.php
+++ b/src/gen/test/Model/PaymentsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsSortTest.php b/src/gen/test/Model/PaymentsSortTest.php
index db20773404..55945d8baa 100644
--- a/src/gen/test/Model/PaymentsSortTest.php
+++ b/src/gen/test/Model/PaymentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTest.php b/src/gen/test/Model/PayrollTest.php
index 4898326673..dda11753d6 100644
--- a/src/gen/test/Model/PayrollTest.php
+++ b/src/gen/test/Model/PayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTotalsTest.php b/src/gen/test/Model/PayrollTotalsTest.php
index 7eae8baa57..7fa3a51a3f 100644
--- a/src/gen/test/Model/PayrollTotalsTest.php
+++ b/src/gen/test/Model/PayrollTotalsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollsFilterTest.php b/src/gen/test/Model/PayrollsFilterTest.php
index 5c65488be1..2f2df15d55 100644
--- a/src/gen/test/Model/PayrollsFilterTest.php
+++ b/src/gen/test/Model/PayrollsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PersonTest.php b/src/gen/test/Model/PersonTest.php
index 53e8b900eb..b1e19c265d 100644
--- a/src/gen/test/Model/PersonTest.php
+++ b/src/gen/test/Model/PersonTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PhoneNumberTest.php b/src/gen/test/Model/PhoneNumberTest.php
index 3343193a92..a3ac79e2ea 100644
--- a/src/gen/test/Model/PhoneNumberTest.php
+++ b/src/gen/test/Model/PhoneNumberTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineStagesTest.php b/src/gen/test/Model/PipelineStagesTest.php
index b3f9a8faf6..c4f3211148 100644
--- a/src/gen/test/Model/PipelineStagesTest.php
+++ b/src/gen/test/Model/PipelineStagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineTest.php b/src/gen/test/Model/PipelineTest.php
index a70b341748..2430929900 100644
--- a/src/gen/test/Model/PipelineTest.php
+++ b/src/gen/test/Model/PipelineTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountAchDetailsTest.php b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
index 98ef0f4195..f777544b6c 100644
--- a/src/gen/test/Model/PosBankAccountAchDetailsTest.php
+++ b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountTest.php b/src/gen/test/Model/PosBankAccountTest.php
index 1d94e02779..b490fe6580 100644
--- a/src/gen/test/Model/PosBankAccountTest.php
+++ b/src/gen/test/Model/PosBankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentCardDetailsTest.php b/src/gen/test/Model/PosPaymentCardDetailsTest.php
index 294e1a5da4..8cde34d24e 100644
--- a/src/gen/test/Model/PosPaymentCardDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentCardDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentExternalDetailsTest.php b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
index 88f872e09f..4544584cbd 100644
--- a/src/gen/test/Model/PosPaymentExternalDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentTest.php b/src/gen/test/Model/PosPaymentTest.php
index d3752fb234..c4d1bbb841 100644
--- a/src/gen/test/Model/PosPaymentTest.php
+++ b/src/gen/test/Model/PosPaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PriceTest.php b/src/gen/test/Model/PriceTest.php
index 1668f174cb..1cb4c33eb1 100644
--- a/src/gen/test/Model/PriceTest.php
+++ b/src/gen/test/Model/PriceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProbationPeriodTest.php b/src/gen/test/Model/ProbationPeriodTest.php
index 61b3960e69..053aae2e70 100644
--- a/src/gen/test/Model/ProbationPeriodTest.php
+++ b/src/gen/test/Model/ProbationPeriodTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossExpensesTest.php b/src/gen/test/Model/ProfitAndLossExpensesTest.php
index 7377fe4a19..b907ef1c5f 100644
--- a/src/gen/test/Model/ProfitAndLossExpensesTest.php
+++ b/src/gen/test/Model/ProfitAndLossExpensesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossFilterTest.php b/src/gen/test/Model/ProfitAndLossFilterTest.php
index c5ff81f4e7..6e5ee08641 100644
--- a/src/gen/test/Model/ProfitAndLossFilterTest.php
+++ b/src/gen/test/Model/ProfitAndLossFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
index 4b15f900b8..ca4a18c7d6 100644
--- a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
+++ b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossIncomeTest.php b/src/gen/test/Model/ProfitAndLossIncomeTest.php
index 32981dc016..46fc1cf7b4 100644
--- a/src/gen/test/Model/ProfitAndLossIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
index 87887fc19c..124284a5ed 100644
--- a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
index 8e6d34049e..275c1f3194 100644
--- a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossRecordTest.php b/src/gen/test/Model/ProfitAndLossRecordTest.php
index 0940dd177d..99ef78de31 100644
--- a/src/gen/test/Model/ProfitAndLossRecordTest.php
+++ b/src/gen/test/Model/ProfitAndLossRecordTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossSectionTest.php b/src/gen/test/Model/ProfitAndLossSectionTest.php
index 4c86c381ef..a0e766b4bf 100644
--- a/src/gen/test/Model/ProfitAndLossSectionTest.php
+++ b/src/gen/test/Model/ProfitAndLossSectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossTest.php b/src/gen/test/Model/ProfitAndLossTest.php
index 848f223fb1..a70c17a60a 100644
--- a/src/gen/test/Model/ProfitAndLossTest.php
+++ b/src/gen/test/Model/ProfitAndLossTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrderTest.php b/src/gen/test/Model/PurchaseOrderTest.php
index 55b6ee489f..1df8cb8e13 100644
--- a/src/gen/test/Model/PurchaseOrderTest.php
+++ b/src/gen/test/Model/PurchaseOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersFilterTest.php b/src/gen/test/Model/PurchaseOrdersFilterTest.php
index fcff04a728..cc82bd4c34 100644
--- a/src/gen/test/Model/PurchaseOrdersFilterTest.php
+++ b/src/gen/test/Model/PurchaseOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersSortTest.php b/src/gen/test/Model/PurchaseOrdersSortTest.php
index c7a311f138..696838150b 100644
--- a/src/gen/test/Model/PurchaseOrdersSortTest.php
+++ b/src/gen/test/Model/PurchaseOrdersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestCountAllocationTest.php b/src/gen/test/Model/RequestCountAllocationTest.php
index 988211ab5f..932b3a0ad3 100644
--- a/src/gen/test/Model/RequestCountAllocationTest.php
+++ b/src/gen/test/Model/RequestCountAllocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestRateTest.php b/src/gen/test/Model/RequestRateTest.php
index 19fcb7bcc5..0d31149a71 100644
--- a/src/gen/test/Model/RequestRateTest.php
+++ b/src/gen/test/Model/RequestRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResolveWebhookResponseTest.php b/src/gen/test/Model/ResolveWebhookResponseTest.php
index d8981d67dd..90cbbaa973 100644
--- a/src/gen/test/Model/ResolveWebhookResponseTest.php
+++ b/src/gen/test/Model/ResolveWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceExampleTest.php b/src/gen/test/Model/ResourceExampleTest.php
index ff48bb19b2..fc3bfee9d9 100644
--- a/src/gen/test/Model/ResourceExampleTest.php
+++ b/src/gen/test/Model/ResourceExampleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceStatusTest.php b/src/gen/test/Model/ResourceStatusTest.php
index 82ecddf526..cba2df4b3c 100644
--- a/src/gen/test/Model/ResourceStatusTest.php
+++ b/src/gen/test/Model/ResourceStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleTest.php b/src/gen/test/Model/ScheduleTest.php
index 82f16ffb10..5eff28f3ff 100644
--- a/src/gen/test/Model/ScheduleTest.php
+++ b/src/gen/test/Model/ScheduleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
index 8bd1fe803d..77240df566 100644
--- a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternTest.php b/src/gen/test/Model/ScheduleWorkPatternTest.php
index 150f9b7678..513bf7dc06 100644
--- a/src/gen/test/Model/ScheduleWorkPatternTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SchemaSupportTest.php b/src/gen/test/Model/SchemaSupportTest.php
index 3672f6fb33..6575eabd24 100644
--- a/src/gen/test/Model/SchemaSupportTest.php
+++ b/src/gen/test/Model/SchemaSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ServiceChargeTest.php b/src/gen/test/Model/ServiceChargeTest.php
index ba6a13f1e5..418580b0d4 100644
--- a/src/gen/test/Model/ServiceChargeTest.php
+++ b/src/gen/test/Model/ServiceChargeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionSettingsTest.php b/src/gen/test/Model/SessionSettingsTest.php
index 683d8a9ce0..ad0ee1b3cd 100644
--- a/src/gen/test/Model/SessionSettingsTest.php
+++ b/src/gen/test/Model/SessionSettingsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionTest.php b/src/gen/test/Model/SessionTest.php
index ff8c4d8a85..0bd969e8ef 100644
--- a/src/gen/test/Model/SessionTest.php
+++ b/src/gen/test/Model/SessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionThemeTest.php b/src/gen/test/Model/SessionThemeTest.php
index de15a18e6b..65bf283ae4 100644
--- a/src/gen/test/Model/SessionThemeTest.php
+++ b/src/gen/test/Model/SessionThemeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTargetTest.php b/src/gen/test/Model/SharedLinkTargetTest.php
index 9b817fa1f8..42573782d8 100644
--- a/src/gen/test/Model/SharedLinkTargetTest.php
+++ b/src/gen/test/Model/SharedLinkTargetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTest.php b/src/gen/test/Model/SharedLinkTest.php
index df06391f7f..6e44b57b7f 100644
--- a/src/gen/test/Model/SharedLinkTest.php
+++ b/src/gen/test/Model/SharedLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SimpleFormFieldOptionTest.php b/src/gen/test/Model/SimpleFormFieldOptionTest.php
index 437813db7f..be936246b3 100644
--- a/src/gen/test/Model/SimpleFormFieldOptionTest.php
+++ b/src/gen/test/Model/SimpleFormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SocialLinkTest.php b/src/gen/test/Model/SocialLinkTest.php
index 86e5ee4e61..56e52154a4 100644
--- a/src/gen/test/Model/SocialLinkTest.php
+++ b/src/gen/test/Model/SocialLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SortDirectionTest.php b/src/gen/test/Model/SortDirectionTest.php
index c26bdec7df..3a3b9371ad 100644
--- a/src/gen/test/Model/SortDirectionTest.php
+++ b/src/gen/test/Model/SortDirectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/StatusTest.php b/src/gen/test/Model/StatusTest.php
index f89ed0b3fc..00ed51dff6 100644
--- a/src/gen/test/Model/StatusTest.php
+++ b/src/gen/test/Model/StatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SubsidiaryTest.php b/src/gen/test/Model/SubsidiaryTest.php
new file mode 100644
index 0000000000..8034900ab9
--- /dev/null
+++ b/src/gen/test/Model/SubsidiaryTest.php
@@ -0,0 +1,171 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "id"
+ */
+ public function testPropertyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "parent_id"
+ */
+ public function testPropertyParentId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "name"
+ */
+ public function testPropertyName()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "custom_mappings"
+ */
+ public function testPropertyCustomMappings()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "row_version"
+ */
+ public function testPropertyRowVersion()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "updated_by"
+ */
+ public function testPropertyUpdatedBy()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "created_by"
+ */
+ public function testPropertyCreatedBy()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "updated_at"
+ */
+ public function testPropertyUpdatedAt()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "created_at"
+ */
+ public function testPropertyCreatedAt()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/SupplierTest.php b/src/gen/test/Model/SupplierTest.php
index 02ce71927f..54104591ba 100644
--- a/src/gen/test/Model/SupplierTest.php
+++ b/src/gen/test/Model/SupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersFilterTest.php b/src/gen/test/Model/SuppliersFilterTest.php
index 99f2215c1d..54a969d8de 100644
--- a/src/gen/test/Model/SuppliersFilterTest.php
+++ b/src/gen/test/Model/SuppliersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersSortTest.php b/src/gen/test/Model/SuppliersSortTest.php
index 8aafa149c1..2acd5d3a1c 100644
--- a/src/gen/test/Model/SuppliersSortTest.php
+++ b/src/gen/test/Model/SuppliersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SupportedPropertyTest.php b/src/gen/test/Model/SupportedPropertyTest.php
index 0bf8c7204b..90f5c1868f 100644
--- a/src/gen/test/Model/SupportedPropertyTest.php
+++ b/src/gen/test/Model/SupportedPropertyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRateTest.php b/src/gen/test/Model/TaxRateTest.php
index 59936cd087..774c24de57 100644
--- a/src/gen/test/Model/TaxRateTest.php
+++ b/src/gen/test/Model/TaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRatesFilterTest.php b/src/gen/test/Model/TaxRatesFilterTest.php
index 7a98a0f9ca..f28598c441 100644
--- a/src/gen/test/Model/TaxRatesFilterTest.php
+++ b/src/gen/test/Model/TaxRatesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxTest.php b/src/gen/test/Model/TaxTest.php
index ca92b6c7dd..414a522036 100644
--- a/src/gen/test/Model/TaxTest.php
+++ b/src/gen/test/Model/TaxTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TeamTest.php b/src/gen/test/Model/TeamTest.php
index 694e559f3b..a2a299c00c 100644
--- a/src/gen/test/Model/TeamTest.php
+++ b/src/gen/test/Model/TeamTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TenderTest.php b/src/gen/test/Model/TenderTest.php
index 2f19aa6061..ba439bc946 100644
--- a/src/gen/test/Model/TenderTest.php
+++ b/src/gen/test/Model/TenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketTest.php b/src/gen/test/Model/TicketTest.php
index 23b5a96fd1..0a530e0fc7 100644
--- a/src/gen/test/Model/TicketTest.php
+++ b/src/gen/test/Model/TicketTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketsSortTest.php b/src/gen/test/Model/TicketsSortTest.php
index ac672684a6..e702fe9361 100644
--- a/src/gen/test/Model/TicketsSortTest.php
+++ b/src/gen/test/Model/TicketsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestNotesTest.php b/src/gen/test/Model/TimeOffRequestNotesTest.php
index f09ee23cd2..02aeae9b98 100644
--- a/src/gen/test/Model/TimeOffRequestNotesTest.php
+++ b/src/gen/test/Model/TimeOffRequestNotesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestTest.php b/src/gen/test/Model/TimeOffRequestTest.php
index fc0fb2dc68..a32d08f441 100644
--- a/src/gen/test/Model/TimeOffRequestTest.php
+++ b/src/gen/test/Model/TimeOffRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestsFilterTest.php b/src/gen/test/Model/TimeOffRequestsFilterTest.php
index 187cad6d4a..4b5a00e1e9 100644
--- a/src/gen/test/Model/TimeOffRequestsFilterTest.php
+++ b/src/gen/test/Model/TimeOffRequestsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
index 933b7b8049..f036e066e4 100644
--- a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseTest.php b/src/gen/test/Model/TooManyRequestsResponseTest.php
index 026b3131ad..787b83aadd 100644
--- a/src/gen/test/Model/TooManyRequestsResponseTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TrackingItemTest.php b/src/gen/test/Model/TrackingItemTest.php
index c071ace53f..fb8991c03a 100644
--- a/src/gen/test/Model/TrackingItemTest.php
+++ b/src/gen/test/Model/TrackingItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnauthorizedResponseTest.php b/src/gen/test/Model/UnauthorizedResponseTest.php
index 8c16017372..94445ab3c9 100644
--- a/src/gen/test/Model/UnauthorizedResponseTest.php
+++ b/src/gen/test/Model/UnauthorizedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnexpectedErrorResponseTest.php b/src/gen/test/Model/UnexpectedErrorResponseTest.php
index 4452e7474f..312ac6a3b8 100644
--- a/src/gen/test/Model/UnexpectedErrorResponseTest.php
+++ b/src/gen/test/Model/UnexpectedErrorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedApiIdTest.php b/src/gen/test/Model/UnifiedApiIdTest.php
index 18d3473bf2..eddd601517 100644
--- a/src/gen/test/Model/UnifiedApiIdTest.php
+++ b/src/gen/test/Model/UnifiedApiIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFilePermissionsTest.php b/src/gen/test/Model/UnifiedFilePermissionsTest.php
index c23f541d1d..dc280c2a40 100644
--- a/src/gen/test/Model/UnifiedFilePermissionsTest.php
+++ b/src/gen/test/Model/UnifiedFilePermissionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFileTest.php b/src/gen/test/Model/UnifiedFileTest.php
index 0205065185..b87dcca275 100644
--- a/src/gen/test/Model/UnifiedFileTest.php
+++ b/src/gen/test/Model/UnifiedFileTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedIdTest.php b/src/gen/test/Model/UnifiedIdTest.php
index 26b0871590..78792e1533 100644
--- a/src/gen/test/Model/UnifiedIdTest.php
+++ b/src/gen/test/Model/UnifiedIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnprocessableResponseTest.php b/src/gen/test/Model/UnprocessableResponseTest.php
index 3a15830520..fdf064fa56 100644
--- a/src/gen/test/Model/UnprocessableResponseTest.php
+++ b/src/gen/test/Model/UnprocessableResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateActivityResponseTest.php b/src/gen/test/Model/UpdateActivityResponseTest.php
index c52c9cf81c..7fef528ec3 100644
--- a/src/gen/test/Model/UpdateActivityResponseTest.php
+++ b/src/gen/test/Model/UpdateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicantResponseTest.php b/src/gen/test/Model/UpdateApplicantResponseTest.php
index ea96610808..7bcb9ba40f 100644
--- a/src/gen/test/Model/UpdateApplicantResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicationResponseTest.php b/src/gen/test/Model/UpdateApplicationResponseTest.php
index e3ded1cf7a..a6812f78d3 100644
--- a/src/gen/test/Model/UpdateApplicationResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateBillResponseTest.php b/src/gen/test/Model/UpdateBillResponseTest.php
index 4186483bf5..74553179b0 100644
--- a/src/gen/test/Model/UpdateBillResponseTest.php
+++ b/src/gen/test/Model/UpdateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCommentResponseTest.php b/src/gen/test/Model/UpdateCommentResponseTest.php
index 33c127dc87..c5daba1884 100644
--- a/src/gen/test/Model/UpdateCommentResponseTest.php
+++ b/src/gen/test/Model/UpdateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCompanyResponseTest.php b/src/gen/test/Model/UpdateCompanyResponseTest.php
index 3ab55435b7..749966fe9c 100644
--- a/src/gen/test/Model/UpdateCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConnectionResponseTest.php b/src/gen/test/Model/UpdateConnectionResponseTest.php
index 9533fc2ffe..d5c4548a86 100644
--- a/src/gen/test/Model/UpdateConnectionResponseTest.php
+++ b/src/gen/test/Model/UpdateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerRequestTest.php b/src/gen/test/Model/UpdateConsumerRequestTest.php
index fe5fc9c5de..dde27996d8 100644
--- a/src/gen/test/Model/UpdateConsumerRequestTest.php
+++ b/src/gen/test/Model/UpdateConsumerRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerResponseTest.php b/src/gen/test/Model/UpdateConsumerResponseTest.php
index 26a800e358..1bce2323f7 100644
--- a/src/gen/test/Model/UpdateConsumerResponseTest.php
+++ b/src/gen/test/Model/UpdateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateContactResponseTest.php b/src/gen/test/Model/UpdateContactResponseTest.php
index a3a498bfa4..08730c86d8 100644
--- a/src/gen/test/Model/UpdateContactResponseTest.php
+++ b/src/gen/test/Model/UpdateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCreditNoteResponseTest.php b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
index 0772abbd8c..d7a7ed937a 100644
--- a/src/gen/test/Model/UpdateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingRequestTest.php b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
index 56bc070aac..af172540c7 100644
--- a/src/gen/test/Model/UpdateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingResponseTest.php b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
index f7e07de9a0..385a9e7046 100644
--- a/src/gen/test/Model/UpdateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomerResponseTest.php b/src/gen/test/Model/UpdateCustomerResponseTest.php
index 7a382e6ee1..98d1543554 100644
--- a/src/gen/test/Model/UpdateCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDepartmentResponseTest.php b/src/gen/test/Model/UpdateDepartmentResponseTest.php
index fde13f41ef..f38a4da659 100644
--- a/src/gen/test/Model/UpdateDepartmentResponseTest.php
+++ b/src/gen/test/Model/UpdateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveGroupResponseTest.php b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
index 3909d4b78c..ef2d08f12a 100644
--- a/src/gen/test/Model/UpdateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveResponseTest.php b/src/gen/test/Model/UpdateDriveResponseTest.php
index 17e4e9df9e..906f516480 100644
--- a/src/gen/test/Model/UpdateDriveResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
index e05cb47ff2..323875674a 100644
--- a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
index 4ff332219f..5e4e471a14 100644
--- a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEmployeeResponseTest.php b/src/gen/test/Model/UpdateEmployeeResponseTest.php
index 44ba7e7019..70cb69ad1e 100644
--- a/src/gen/test/Model/UpdateEmployeeResponseTest.php
+++ b/src/gen/test/Model/UpdateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileRequestTest.php b/src/gen/test/Model/UpdateFileRequestTest.php
index 937388b45d..a486012f5e 100644
--- a/src/gen/test/Model/UpdateFileRequestTest.php
+++ b/src/gen/test/Model/UpdateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileResponseTest.php b/src/gen/test/Model/UpdateFileResponseTest.php
index 2f100c548a..3fd5b334a6 100644
--- a/src/gen/test/Model/UpdateFileResponseTest.php
+++ b/src/gen/test/Model/UpdateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderRequestTest.php b/src/gen/test/Model/UpdateFolderRequestTest.php
index 1d640471c7..60d28bf33c 100644
--- a/src/gen/test/Model/UpdateFolderRequestTest.php
+++ b/src/gen/test/Model/UpdateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderResponseTest.php b/src/gen/test/Model/UpdateFolderResponseTest.php
index e8571e3160..ab38c07f99 100644
--- a/src/gen/test/Model/UpdateFolderResponseTest.php
+++ b/src/gen/test/Model/UpdateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
index 6de6deaeea..8d31f6bdc0 100644
--- a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
index 0f68c8f505..8f16054404 100644
--- a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceResponseTest.php b/src/gen/test/Model/UpdateInvoiceResponseTest.php
index ce0a89c67b..8642c1f090 100644
--- a/src/gen/test/Model/UpdateInvoiceResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateItemResponseTest.php b/src/gen/test/Model/UpdateItemResponseTest.php
index 96fd80ae30..9511ad7b1e 100644
--- a/src/gen/test/Model/UpdateItemResponseTest.php
+++ b/src/gen/test/Model/UpdateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJobResponseTest.php b/src/gen/test/Model/UpdateJobResponseTest.php
index 0c10411251..3ef36b4849 100644
--- a/src/gen/test/Model/UpdateJobResponseTest.php
+++ b/src/gen/test/Model/UpdateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJournalEntryResponseTest.php b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
index 4cd86897c1..27d75f2480 100644
--- a/src/gen/test/Model/UpdateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLeadResponseTest.php b/src/gen/test/Model/UpdateLeadResponseTest.php
index ca0873b8ec..162553d6ae 100644
--- a/src/gen/test/Model/UpdateLeadResponseTest.php
+++ b/src/gen/test/Model/UpdateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
index d536ef0119..81dc3070ea 100644
--- a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLocationResponseTest.php b/src/gen/test/Model/UpdateLocationResponseTest.php
index b059da5259..c4b37bc769 100644
--- a/src/gen/test/Model/UpdateLocationResponseTest.php
+++ b/src/gen/test/Model/UpdateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMerchantResponseTest.php b/src/gen/test/Model/UpdateMerchantResponseTest.php
index 571e646d1b..7beac09ddc 100644
--- a/src/gen/test/Model/UpdateMerchantResponseTest.php
+++ b/src/gen/test/Model/UpdateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMessageResponseTest.php b/src/gen/test/Model/UpdateMessageResponseTest.php
index e97cce2dd1..5050afc69f 100644
--- a/src/gen/test/Model/UpdateMessageResponseTest.php
+++ b/src/gen/test/Model/UpdateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierGroupResponseTest.php b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
index 9a5d63e5e2..4b91af31a3 100644
--- a/src/gen/test/Model/UpdateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierResponseTest.php b/src/gen/test/Model/UpdateModifierResponseTest.php
index 3249d0bbff..c025e6d514 100644
--- a/src/gen/test/Model/UpdateModifierResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateNoteResponseTest.php b/src/gen/test/Model/UpdateNoteResponseTest.php
index 5a6b134ead..0725cb7da1 100644
--- a/src/gen/test/Model/UpdateNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOpportunityResponseTest.php b/src/gen/test/Model/UpdateOpportunityResponseTest.php
index ae09854733..f8a2752fc2 100644
--- a/src/gen/test/Model/UpdateOpportunityResponseTest.php
+++ b/src/gen/test/Model/UpdateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderResponseTest.php b/src/gen/test/Model/UpdateOrderResponseTest.php
index 8a9004ab19..b7db87a348 100644
--- a/src/gen/test/Model/UpdateOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderTypeResponseTest.php b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
index c6e531eef0..5d7169e299 100644
--- a/src/gen/test/Model/UpdateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePaymentResponseTest.php b/src/gen/test/Model/UpdatePaymentResponseTest.php
index d78f3dd996..6135996bf9 100644
--- a/src/gen/test/Model/UpdatePaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePipelineResponseTest.php b/src/gen/test/Model/UpdatePipelineResponseTest.php
index 5265f4f5c7..249422e658 100644
--- a/src/gen/test/Model/UpdatePipelineResponseTest.php
+++ b/src/gen/test/Model/UpdatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePosPaymentResponseTest.php b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
index 3c1215fa1c..787947d34a 100644
--- a/src/gen/test/Model/UpdatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateProductResponseTest.php b/src/gen/test/Model/UpdateProductResponseTest.php
index 6b9aec3d9c..88f78b9786 100644
--- a/src/gen/test/Model/UpdateProductResponseTest.php
+++ b/src/gen/test/Model/UpdateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
index db7a5f8b0a..fbc082623d 100644
--- a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSharedLinkResponseTest.php b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
index 5d7ed77f1f..43820fc7db 100644
--- a/src/gen/test/Model/UpdateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSupplierResponseTest.php b/src/gen/test/Model/UpdateSupplierResponseTest.php
index fedf5bbbb6..fa6281f922 100644
--- a/src/gen/test/Model/UpdateSupplierResponseTest.php
+++ b/src/gen/test/Model/UpdateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTaxRateResponseTest.php b/src/gen/test/Model/UpdateTaxRateResponseTest.php
index 8bbe51980d..82ed5b3203 100644
--- a/src/gen/test/Model/UpdateTaxRateResponseTest.php
+++ b/src/gen/test/Model/UpdateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTenderResponseTest.php b/src/gen/test/Model/UpdateTenderResponseTest.php
index 204d766aac..c701759339 100644
--- a/src/gen/test/Model/UpdateTenderResponseTest.php
+++ b/src/gen/test/Model/UpdateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTicketResponseTest.php b/src/gen/test/Model/UpdateTicketResponseTest.php
index 09ffe09a89..1267c5bedd 100644
--- a/src/gen/test/Model/UpdateTicketResponseTest.php
+++ b/src/gen/test/Model/UpdateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
index 4a5676c885..4475ef5181 100644
--- a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUploadSessionResponseTest.php b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
index 9fb57421cf..e4e8eea55d 100644
--- a/src/gen/test/Model/UpdateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUserResponseTest.php b/src/gen/test/Model/UpdateUserResponseTest.php
index cb71479919..514f95782c 100644
--- a/src/gen/test/Model/UpdateUserResponseTest.php
+++ b/src/gen/test/Model/UpdateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookRequestTest.php b/src/gen/test/Model/UpdateWebhookRequestTest.php
index c62842388f..699fb9830a 100644
--- a/src/gen/test/Model/UpdateWebhookRequestTest.php
+++ b/src/gen/test/Model/UpdateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookResponseTest.php b/src/gen/test/Model/UpdateWebhookResponseTest.php
index c55bb5321e..8a013ae794 100644
--- a/src/gen/test/Model/UpdateWebhookResponseTest.php
+++ b/src/gen/test/Model/UpdateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UploadSessionTest.php b/src/gen/test/Model/UploadSessionTest.php
index db979d8c15..0807f5efbb 100644
--- a/src/gen/test/Model/UploadSessionTest.php
+++ b/src/gen/test/Model/UploadSessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UserTest.php b/src/gen/test/Model/UserTest.php
index 76fc0d7d9a..e96138a8b8 100644
--- a/src/gen/test/Model/UserTest.php
+++ b/src/gen/test/Model/UserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VaultEventTypeTest.php b/src/gen/test/Model/VaultEventTypeTest.php
index 5498c4c3e0..6b70be64e1 100644
--- a/src/gen/test/Model/VaultEventTypeTest.php
+++ b/src/gen/test/Model/VaultEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VirtualWebhooksTest.php b/src/gen/test/Model/VirtualWebhooksTest.php
index 9dd7e1e2b2..c00e814607 100644
--- a/src/gen/test/Model/VirtualWebhooksTest.php
+++ b/src/gen/test/Model/VirtualWebhooksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WalletDetailsTest.php b/src/gen/test/Model/WalletDetailsTest.php
index 2c5830bd13..df80170846 100644
--- a/src/gen/test/Model/WalletDetailsTest.php
+++ b/src/gen/test/Model/WalletDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogAttemptsTest.php b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
index 40d5ae8990..2416a1faea 100644
--- a/src/gen/test/Model/WebhookEventLogAttemptsTest.php
+++ b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogServiceTest.php b/src/gen/test/Model/WebhookEventLogServiceTest.php
index 017b2015e9..8722997229 100644
--- a/src/gen/test/Model/WebhookEventLogServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogTest.php b/src/gen/test/Model/WebhookEventLogTest.php
index 3e3ab8123b..9ae26feb81 100644
--- a/src/gen/test/Model/WebhookEventLogTest.php
+++ b/src/gen/test/Model/WebhookEventLogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
index 137bc584c6..3d4f2a5ed6 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterTest.php b/src/gen/test/Model/WebhookEventLogsFilterTest.php
index c4610322d5..4eefa0d17e 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTest.php b/src/gen/test/Model/WebhookEventTest.php
index bdf201555c..159d944ee5 100644
--- a/src/gen/test/Model/WebhookEventTest.php
+++ b/src/gen/test/Model/WebhookEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTypeTest.php b/src/gen/test/Model/WebhookEventTypeTest.php
index 3300ea223e..cce67f6594 100644
--- a/src/gen/test/Model/WebhookEventTypeTest.php
+++ b/src/gen/test/Model/WebhookEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSubscriptionTest.php b/src/gen/test/Model/WebhookSubscriptionTest.php
index 89a4458e18..dd8a62daf4 100644
--- a/src/gen/test/Model/WebhookSubscriptionTest.php
+++ b/src/gen/test/Model/WebhookSubscriptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSupportTest.php b/src/gen/test/Model/WebhookSupportTest.php
index 49ec8adafb..eb6dee2295 100644
--- a/src/gen/test/Model/WebhookSupportTest.php
+++ b/src/gen/test/Model/WebhookSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookTest.php b/src/gen/test/Model/WebhookTest.php
index 5f7e9fa495..b5973db8df 100644
--- a/src/gen/test/Model/WebhookTest.php
+++ b/src/gen/test/Model/WebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebsiteTest.php b/src/gen/test/Model/WebsiteTest.php
index c97ef35dc1..19e3c451bc 100644
--- a/src/gen/test/Model/WebsiteTest.php
+++ b/src/gen/test/Model/WebsiteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.1.3
+ * The version of the OpenAPI document: 10.2.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
From 10ffe76996455bfa3c857b0a0d44d405a4999d75 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 18 Jan 2024 16:42:10 +0000
Subject: [PATCH 4/9] Automated update by SDK Generator version:3.2.0
commit:2572696
---
src/gen/lib/Api/AccountingApi.php | 2 +-
src/gen/lib/Api/AtsApi.php | 2 +-
src/gen/lib/Api/ConnectorApi.php | 2 +-
src/gen/lib/Api/CrmApi.php | 2 +-
src/gen/lib/Api/EcommerceApi.php | 2 +-
src/gen/lib/Api/FileStorageApi.php | 2 +-
src/gen/lib/Api/HrisApi.php | 2 +-
src/gen/lib/Api/IssueTrackingApi.php | 2 +-
src/gen/lib/Api/LeadApi.php | 2 +-
src/gen/lib/Api/PosApi.php | 2 +-
src/gen/lib/Api/SmsApi.php | 2 +-
src/gen/lib/Api/VaultApi.php | 2 +-
src/gen/lib/Api/WebhookApi.php | 2 +-
src/gen/lib/ApiException.php | 2 +-
src/gen/lib/Configuration.php | 4 ++--
src/gen/lib/HeaderSelector.php | 2 +-
src/gen/lib/Model/AccountingEventType.php | 2 +-
src/gen/lib/Model/ActivitiesFilter.php | 2 +-
src/gen/lib/Model/ActivitiesSort.php | 2 +-
src/gen/lib/Model/Activity.php | 2 +-
src/gen/lib/Model/ActivityAttendee.php | 2 +-
src/gen/lib/Model/Address.php | 2 +-
src/gen/lib/Model/Api.php | 2 +-
src/gen/lib/Model/ApiResource.php | 2 +-
src/gen/lib/Model/ApiResourceCoverage.php | 2 +-
src/gen/lib/Model/ApiResourceCoverageCoverage.php | 2 +-
src/gen/lib/Model/ApiResourceLinkedResources.php | 2 +-
src/gen/lib/Model/ApiResources.php | 2 +-
src/gen/lib/Model/ApiStatus.php | 2 +-
src/gen/lib/Model/ApisFilter.php | 2 +-
src/gen/lib/Model/Applicant.php | 2 +-
src/gen/lib/Model/ApplicantSocialLinks.php | 2 +-
src/gen/lib/Model/ApplicantWebsites.php | 2 +-
src/gen/lib/Model/ApplicantsFilter.php | 2 +-
src/gen/lib/Model/Application.php | 2 +-
src/gen/lib/Model/ApplicationStage.php | 2 +-
src/gen/lib/Model/Assignee.php | 2 +-
src/gen/lib/Model/AtsActivity.php | 2 +-
src/gen/lib/Model/AtsEventType.php | 2 +-
src/gen/lib/Model/AuthType.php | 2 +-
src/gen/lib/Model/BadRequestResponse.php | 2 +-
src/gen/lib/Model/BalanceSheet.php | 2 +-
src/gen/lib/Model/BalanceSheetAssets.php | 2 +-
src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php | 2 +-
src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php | 2 +-
src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php | 2 +-
src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php | 2 +-
src/gen/lib/Model/BalanceSheetEquity.php | 2 +-
src/gen/lib/Model/BalanceSheetEquityItems.php | 2 +-
src/gen/lib/Model/BalanceSheetFilter.php | 2 +-
src/gen/lib/Model/BalanceSheetLiabilities.php | 2 +-
src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php | 2 +-
src/gen/lib/Model/BankAccount.php | 2 +-
src/gen/lib/Model/Benefit.php | 2 +-
src/gen/lib/Model/Bill.php | 2 +-
src/gen/lib/Model/BillLineItem.php | 2 +-
src/gen/lib/Model/BillsFilter.php | 2 +-
src/gen/lib/Model/BillsSort.php | 2 +-
src/gen/lib/Model/Branch.php | 2 +-
src/gen/lib/Model/CashDetails.php | 2 +-
src/gen/lib/Model/Collection.php | 2 +-
src/gen/lib/Model/CollectionTag.php | 2 +-
src/gen/lib/Model/CollectionTicketComment.php | 2 +-
src/gen/lib/Model/CollectionUser.php | 2 +-
src/gen/lib/Model/CollectionsSort.php | 2 +-
src/gen/lib/Model/CommentsSort.php | 2 +-
src/gen/lib/Model/CompaniesFilter.php | 2 +-
src/gen/lib/Model/CompaniesSort.php | 2 +-
src/gen/lib/Model/Company.php | 2 +-
src/gen/lib/Model/CompanyInfo.php | 2 +-
src/gen/lib/Model/CompanyRowType.php | 2 +-
src/gen/lib/Model/Compensation.php | 2 +-
src/gen/lib/Model/Connection.php | 2 +-
src/gen/lib/Model/ConnectionConfiguration.php | 2 +-
src/gen/lib/Model/ConnectionDefaults.php | 2 +-
src/gen/lib/Model/ConnectionImportData.php | 2 +-
src/gen/lib/Model/ConnectionImportDataCredentials.php | 2 +-
src/gen/lib/Model/ConnectionMetadata.php | 2 +-
src/gen/lib/Model/ConnectionState.php | 2 +-
src/gen/lib/Model/ConnectionWebhook.php | 2 +-
src/gen/lib/Model/Connector.php | 2 +-
src/gen/lib/Model/ConnectorDoc.php | 2 +-
src/gen/lib/Model/ConnectorEvent.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes1.php | 2 +-
src/gen/lib/Model/ConnectorResource.php | 2 +-
src/gen/lib/Model/ConnectorSetting.php | 2 +-
src/gen/lib/Model/ConnectorStatus.php | 2 +-
src/gen/lib/Model/ConnectorTlsSupport.php | 2 +-
src/gen/lib/Model/ConnectorUnifiedApis.php | 2 +-
src/gen/lib/Model/ConnectorsFilter.php | 2 +-
src/gen/lib/Model/Consumer.php | 2 +-
src/gen/lib/Model/ConsumerConnection.php | 2 +-
src/gen/lib/Model/ConsumerMetadata.php | 2 +-
.../lib/Model/ConsumerRequestCountsInDateRangeResponse.php | 2 +-
.../Model/ConsumerRequestCountsInDateRangeResponseData.php | 2 +-
src/gen/lib/Model/Contact.php | 2 +-
src/gen/lib/Model/ContactsFilter.php | 2 +-
src/gen/lib/Model/ContactsSort.php | 2 +-
src/gen/lib/Model/CopyFolderRequest.php | 2 +-
src/gen/lib/Model/CreateActivityResponse.php | 2 +-
src/gen/lib/Model/CreateApplicantResponse.php | 2 +-
src/gen/lib/Model/CreateApplicationResponse.php | 2 +-
src/gen/lib/Model/CreateBillResponse.php | 2 +-
src/gen/lib/Model/CreateCommentResponse.php | 2 +-
src/gen/lib/Model/CreateCompanyResponse.php | 2 +-
src/gen/lib/Model/CreateConnectionResponse.php | 2 +-
src/gen/lib/Model/CreateConsumerResponse.php | 2 +-
src/gen/lib/Model/CreateContactResponse.php | 2 +-
src/gen/lib/Model/CreateCreditNoteResponse.php | 2 +-
src/gen/lib/Model/CreateCustomMappingRequest.php | 2 +-
src/gen/lib/Model/CreateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/CreateCustomerResponse.php | 2 +-
src/gen/lib/Model/CreateDepartmentResponse.php | 2 +-
src/gen/lib/Model/CreateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/CreateDriveResponse.php | 2 +-
src/gen/lib/Model/CreateEcommerceCustomerResponse.php | 2 +-
src/gen/lib/Model/CreateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/CreateEmployeeResponse.php | 2 +-
src/gen/lib/Model/CreateFileRequest.php | 2 +-
src/gen/lib/Model/CreateFileResponse.php | 2 +-
src/gen/lib/Model/CreateFolderRequest.php | 2 +-
src/gen/lib/Model/CreateFolderResponse.php | 2 +-
src/gen/lib/Model/CreateHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/CreateInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/CreateInvoiceResponse.php | 2 +-
src/gen/lib/Model/CreateItemResponse.php | 2 +-
src/gen/lib/Model/CreateJobResponse.php | 2 +-
src/gen/lib/Model/CreateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/CreateLeadResponse.php | 2 +-
src/gen/lib/Model/CreateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/CreateLocationResponse.php | 2 +-
src/gen/lib/Model/CreateMerchantResponse.php | 2 +-
src/gen/lib/Model/CreateMessageResponse.php | 2 +-
src/gen/lib/Model/CreateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/CreateModifierResponse.php | 2 +-
src/gen/lib/Model/CreateNoteResponse.php | 2 +-
src/gen/lib/Model/CreateOpportunityResponse.php | 2 +-
src/gen/lib/Model/CreateOrderResponse.php | 2 +-
src/gen/lib/Model/CreateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/CreatePaymentResponse.php | 2 +-
src/gen/lib/Model/CreatePipelineResponse.php | 2 +-
src/gen/lib/Model/CreatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/CreateProductResponse.php | 2 +-
src/gen/lib/Model/CreatePurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/CreateSessionResponse.php | 2 +-
src/gen/lib/Model/CreateSessionResponseData.php | 2 +-
src/gen/lib/Model/CreateSharedLinkResponse.php | 2 +-
src/gen/lib/Model/CreateSupplierResponse.php | 2 +-
src/gen/lib/Model/CreateTaxRateResponse.php | 2 +-
src/gen/lib/Model/CreateTenderResponse.php | 2 +-
src/gen/lib/Model/CreateTicketResponse.php | 2 +-
src/gen/lib/Model/CreateTimeOffRequestResponse.php | 2 +-
src/gen/lib/Model/CreateUploadSessionRequest.php | 2 +-
src/gen/lib/Model/CreateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/CreateUserResponse.php | 2 +-
src/gen/lib/Model/CreateWebhookRequest.php | 2 +-
src/gen/lib/Model/CreateWebhookResponse.php | 2 +-
src/gen/lib/Model/CreditNote.php | 2 +-
src/gen/lib/Model/CreditNotesFilter.php | 2 +-
src/gen/lib/Model/CreditNotesSort.php | 2 +-
src/gen/lib/Model/CrmEventType.php | 2 +-
src/gen/lib/Model/Currency.php | 2 +-
src/gen/lib/Model/CustomField.php | 2 +-
src/gen/lib/Model/CustomFieldFinder.php | 2 +-
src/gen/lib/Model/CustomMapping.php | 2 +-
src/gen/lib/Model/Customer.php | 2 +-
src/gen/lib/Model/CustomersFilter.php | 2 +-
src/gen/lib/Model/CustomersSort.php | 2 +-
src/gen/lib/Model/Deduction.php | 2 +-
src/gen/lib/Model/DeleteActivityResponse.php | 2 +-
src/gen/lib/Model/DeleteApplicantResponse.php | 2 +-
src/gen/lib/Model/DeleteApplicationResponse.php | 2 +-
src/gen/lib/Model/DeleteBillResponse.php | 2 +-
src/gen/lib/Model/DeleteCommentResponse.php | 2 +-
src/gen/lib/Model/DeleteCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteConsumerResponse.php | 2 +-
src/gen/lib/Model/DeleteContactResponse.php | 2 +-
src/gen/lib/Model/DeleteCreditNoteResponse.php | 2 +-
src/gen/lib/Model/DeleteCustomerResponse.php | 2 +-
src/gen/lib/Model/DeleteDepartmentResponse.php | 2 +-
src/gen/lib/Model/DeleteDriveGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteDriveResponse.php | 2 +-
src/gen/lib/Model/DeleteEcommerceCustomerResponse.php | 2 +-
src/gen/lib/Model/DeleteEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteEmployeeResponse.php | 2 +-
src/gen/lib/Model/DeleteFileResponse.php | 2 +-
src/gen/lib/Model/DeleteFolderResponse.php | 2 +-
src/gen/lib/Model/DeleteHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteInvoiceResponse.php | 2 +-
src/gen/lib/Model/DeleteItemResponse.php | 2 +-
src/gen/lib/Model/DeleteJobResponse.php | 2 +-
src/gen/lib/Model/DeleteJournalEntryResponse.php | 2 +-
src/gen/lib/Model/DeleteLeadResponse.php | 2 +-
src/gen/lib/Model/DeleteLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/DeleteLocationResponse.php | 2 +-
src/gen/lib/Model/DeleteMerchantResponse.php | 2 +-
src/gen/lib/Model/DeleteMessageResponse.php | 2 +-
src/gen/lib/Model/DeleteModifierGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteModifierResponse.php | 2 +-
src/gen/lib/Model/DeleteNoteResponse.php | 2 +-
src/gen/lib/Model/DeleteOpportunityResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderTypeResponse.php | 2 +-
src/gen/lib/Model/DeletePaymentResponse.php | 2 +-
src/gen/lib/Model/DeletePipelineResponse.php | 2 +-
src/gen/lib/Model/DeletePosPaymentResponse.php | 2 +-
src/gen/lib/Model/DeleteProductResponse.php | 2 +-
src/gen/lib/Model/DeletePurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteSharedLinkResponse.php | 2 +-
src/gen/lib/Model/DeleteSupplierResponse.php | 2 +-
src/gen/lib/Model/DeleteTaxRateResponse.php | 2 +-
src/gen/lib/Model/DeleteTenderResponse.php | 2 +-
src/gen/lib/Model/DeleteTicketResponse.php | 2 +-
src/gen/lib/Model/DeleteTimeOffRequestResponse.php | 2 +-
src/gen/lib/Model/DeleteUploadSessionResponse.php | 2 +-
src/gen/lib/Model/DeleteUserResponse.php | 2 +-
src/gen/lib/Model/DeleteWebhookResponse.php | 2 +-
src/gen/lib/Model/Department.php | 2 +-
src/gen/lib/Model/Drive.php | 2 +-
src/gen/lib/Model/DriveGroup.php | 2 +-
src/gen/lib/Model/DriveGroupsFilter.php | 2 +-
src/gen/lib/Model/DrivesFilter.php | 2 +-
src/gen/lib/Model/EcommerceAddress.php | 2 +-
src/gen/lib/Model/EcommerceCustomer.php | 2 +-
src/gen/lib/Model/EcommerceCustomerAddresses.php | 2 +-
src/gen/lib/Model/EcommerceCustomersFilter.php | 2 +-
src/gen/lib/Model/EcommerceDiscount.php | 2 +-
src/gen/lib/Model/EcommerceOrder.php | 2 +-
src/gen/lib/Model/EcommerceOrderLineItem.php | 2 +-
src/gen/lib/Model/EcommerceOrderStatus.php | 2 +-
src/gen/lib/Model/EcommerceOrdersFilter.php | 2 +-
src/gen/lib/Model/EcommerceProduct.php | 2 +-
src/gen/lib/Model/EcommerceProductCategories.php | 2 +-
src/gen/lib/Model/EcommerceProductImages.php | 2 +-
src/gen/lib/Model/EcommerceProductImages1.php | 2 +-
src/gen/lib/Model/EcommerceProductOptions.php | 2 +-
src/gen/lib/Model/EcommerceProductOptions1.php | 2 +-
src/gen/lib/Model/EcommerceProductVariants.php | 2 +-
src/gen/lib/Model/EcommerceStore.php | 2 +-
src/gen/lib/Model/Email.php | 2 +-
src/gen/lib/Model/Employee.php | 2 +-
src/gen/lib/Model/EmployeeCompensation.php | 2 +-
src/gen/lib/Model/EmployeeEmploymentRole.php | 2 +-
src/gen/lib/Model/EmployeeJob.php | 2 +-
src/gen/lib/Model/EmployeeList.php | 2 +-
src/gen/lib/Model/EmployeeManager.php | 2 +-
src/gen/lib/Model/EmployeePayroll.php | 2 +-
src/gen/lib/Model/EmployeeSchedules.php | 2 +-
src/gen/lib/Model/EmployeesFilter.php | 2 +-
src/gen/lib/Model/EmployeesSort.php | 2 +-
src/gen/lib/Model/EmploymentStatus.php | 2 +-
src/gen/lib/Model/Error.php | 2 +-
src/gen/lib/Model/ExecuteWebhookResponse.php | 2 +-
src/gen/lib/Model/FileStorageEventType.php | 2 +-
src/gen/lib/Model/FileType.php | 2 +-
src/gen/lib/Model/FilesFilter.php | 2 +-
src/gen/lib/Model/FilesSearch.php | 2 +-
src/gen/lib/Model/FilesSort.php | 2 +-
src/gen/lib/Model/Folder.php | 2 +-
src/gen/lib/Model/FormField.php | 2 +-
src/gen/lib/Model/FormFieldOption.php | 2 +-
src/gen/lib/Model/FormFieldOptionGroup.php | 2 +-
src/gen/lib/Model/Gender.php | 2 +-
src/gen/lib/Model/GetActivitiesResponse.php | 2 +-
src/gen/lib/Model/GetActivityResponse.php | 2 +-
src/gen/lib/Model/GetApiResourceCoverageResponse.php | 2 +-
src/gen/lib/Model/GetApiResourceResponse.php | 2 +-
src/gen/lib/Model/GetApiResponse.php | 2 +-
src/gen/lib/Model/GetApisResponse.php | 2 +-
src/gen/lib/Model/GetApplicantResponse.php | 2 +-
src/gen/lib/Model/GetApplicantsResponse.php | 2 +-
src/gen/lib/Model/GetApplicationResponse.php | 2 +-
src/gen/lib/Model/GetApplicationsResponse.php | 2 +-
src/gen/lib/Model/GetBalanceSheetResponse.php | 2 +-
src/gen/lib/Model/GetBillResponse.php | 2 +-
src/gen/lib/Model/GetBillsResponse.php | 2 +-
src/gen/lib/Model/GetCollectionResponse.php | 2 +-
src/gen/lib/Model/GetCollectionTagsResponse.php | 2 +-
src/gen/lib/Model/GetCollectionUserResponse.php | 2 +-
src/gen/lib/Model/GetCollectionUsersResponse.php | 2 +-
src/gen/lib/Model/GetCollectionsResponse.php | 2 +-
src/gen/lib/Model/GetCommentResponse.php | 2 +-
src/gen/lib/Model/GetCommentsResponse.php | 2 +-
src/gen/lib/Model/GetCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetCompanyInfoResponse.php | 2 +-
src/gen/lib/Model/GetCompanyResponse.php | 2 +-
src/gen/lib/Model/GetConnectionResponse.php | 2 +-
src/gen/lib/Model/GetConnectionsResponse.php | 2 +-
src/gen/lib/Model/GetConnectorResourceExampleResponse.php | 2 +-
src/gen/lib/Model/GetConnectorResourceExampleResponseData.php | 2 +-
src/gen/lib/Model/GetConnectorResourceResponse.php | 2 +-
src/gen/lib/Model/GetConnectorResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetConnectorResponse.php | 2 +-
src/gen/lib/Model/GetConnectorsResponse.php | 2 +-
src/gen/lib/Model/GetConsumerResponse.php | 2 +-
src/gen/lib/Model/GetConsumersResponse.php | 2 +-
src/gen/lib/Model/GetConsumersResponseData.php | 2 +-
src/gen/lib/Model/GetContactResponse.php | 2 +-
src/gen/lib/Model/GetContactsResponse.php | 2 +-
src/gen/lib/Model/GetCreditNoteResponse.php | 2 +-
src/gen/lib/Model/GetCreditNotesResponse.php | 2 +-
src/gen/lib/Model/GetCustomFieldsResponse.php | 2 +-
src/gen/lib/Model/GetCustomMappingResponse.php | 2 +-
src/gen/lib/Model/GetCustomerResponse.php | 2 +-
src/gen/lib/Model/GetCustomersResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentsResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupsResponse.php | 2 +-
src/gen/lib/Model/GetDriveResponse.php | 2 +-
src/gen/lib/Model/GetDrivesResponse.php | 2 +-
src/gen/lib/Model/GetEcommerceCustomerResponse.php | 2 +-
src/gen/lib/Model/GetEcommerceCustomersResponse.php | 2 +-
src/gen/lib/Model/GetEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/GetEcommerceOrdersResponse.php | 2 +-
src/gen/lib/Model/GetEmployeePayrollResponse.php | 2 +-
src/gen/lib/Model/GetEmployeePayrollsResponse.php | 2 +-
src/gen/lib/Model/GetEmployeeResponse.php | 2 +-
src/gen/lib/Model/GetEmployeeSchedulesResponse.php | 2 +-
src/gen/lib/Model/GetEmployeesResponse.php | 2 +-
src/gen/lib/Model/GetFileResponse.php | 2 +-
src/gen/lib/Model/GetFilesResponse.php | 2 +-
src/gen/lib/Model/GetFolderResponse.php | 2 +-
src/gen/lib/Model/GetFoldersResponse.php | 2 +-
src/gen/lib/Model/GetHrisCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceResponse.php | 2 +-
src/gen/lib/Model/GetInvoicesResponse.php | 2 +-
src/gen/lib/Model/GetItemResponse.php | 2 +-
src/gen/lib/Model/GetItemsResponse.php | 2 +-
src/gen/lib/Model/GetJobResponse.php | 2 +-
src/gen/lib/Model/GetJobsResponse.php | 2 +-
src/gen/lib/Model/GetJournalEntriesResponse.php | 2 +-
src/gen/lib/Model/GetJournalEntryResponse.php | 2 +-
src/gen/lib/Model/GetLeadResponse.php | 2 +-
src/gen/lib/Model/GetLeadsResponse.php | 2 +-
src/gen/lib/Model/GetLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/GetLedgerAccountsResponse.php | 2 +-
src/gen/lib/Model/GetLocationResponse.php | 2 +-
src/gen/lib/Model/GetLocationsResponse.php | 2 +-
src/gen/lib/Model/GetLogsResponse.php | 2 +-
src/gen/lib/Model/GetMerchantResponse.php | 2 +-
src/gen/lib/Model/GetMerchantsResponse.php | 2 +-
src/gen/lib/Model/GetMessageResponse.php | 2 +-
src/gen/lib/Model/GetMessagesResponse.php | 2 +-
src/gen/lib/Model/GetModifierGroupResponse.php | 2 +-
src/gen/lib/Model/GetModifierGroupsResponse.php | 2 +-
src/gen/lib/Model/GetModifierResponse.php | 2 +-
src/gen/lib/Model/GetModifiersResponse.php | 2 +-
src/gen/lib/Model/GetNoteResponse.php | 2 +-
src/gen/lib/Model/GetNotesResponse.php | 2 +-
src/gen/lib/Model/GetOpportunitiesResponse.php | 2 +-
src/gen/lib/Model/GetOpportunityResponse.php | 2 +-
src/gen/lib/Model/GetOrderResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypeResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypesResponse.php | 2 +-
src/gen/lib/Model/GetOrdersResponse.php | 2 +-
src/gen/lib/Model/GetPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetPayrollResponse.php | 2 +-
src/gen/lib/Model/GetPayrollsResponse.php | 2 +-
src/gen/lib/Model/GetPipelineResponse.php | 2 +-
src/gen/lib/Model/GetPipelinesResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetProductResponse.php | 2 +-
src/gen/lib/Model/GetProductsResponse.php | 2 +-
src/gen/lib/Model/GetProfitAndLossResponse.php | 2 +-
src/gen/lib/Model/GetPurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/GetPurchaseOrdersResponse.php | 2 +-
src/gen/lib/Model/GetResourceExampleResponse.php | 2 +-
src/gen/lib/Model/GetResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinkResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinksResponse.php | 2 +-
src/gen/lib/Model/GetStoreResponse.php | 2 +-
src/gen/lib/Model/GetStoresResponse.php | 2 +-
src/gen/lib/Model/GetSubsidiariesResponse.php | 2 +-
src/gen/lib/Model/GetSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/GetSupplierResponse.php | 2 +-
src/gen/lib/Model/GetSuppliersResponse.php | 2 +-
src/gen/lib/Model/GetTaxRateResponse.php | 2 +-
src/gen/lib/Model/GetTaxRatesResponse.php | 2 +-
src/gen/lib/Model/GetTenderResponse.php | 2 +-
src/gen/lib/Model/GetTendersResponse.php | 2 +-
src/gen/lib/Model/GetTicketResponse.php | 2 +-
src/gen/lib/Model/GetTicketsResponse.php | 2 +-
src/gen/lib/Model/GetTimeOffRequestResponse.php | 2 +-
src/gen/lib/Model/GetTimeOffRequestsResponse.php | 2 +-
src/gen/lib/Model/GetUploadSessionResponse.php | 2 +-
src/gen/lib/Model/GetUserResponse.php | 2 +-
src/gen/lib/Model/GetUsersResponse.php | 2 +-
src/gen/lib/Model/GetWebhookEventLogsResponse.php | 2 +-
src/gen/lib/Model/GetWebhookResponse.php | 2 +-
src/gen/lib/Model/GetWebhooksResponse.php | 2 +-
src/gen/lib/Model/HrisCompany.php | 2 +-
src/gen/lib/Model/HrisEventType.php | 2 +-
src/gen/lib/Model/HrisJob.php | 2 +-
src/gen/lib/Model/HrisJobLocation.php | 2 +-
src/gen/lib/Model/HrisJobs.php | 2 +-
src/gen/lib/Model/IntegrationState.php | 2 +-
src/gen/lib/Model/Invoice.php | 2 +-
src/gen/lib/Model/InvoiceItem.php | 2 +-
src/gen/lib/Model/InvoiceItemSalesDetails.php | 2 +-
src/gen/lib/Model/InvoiceItemsFilter.php | 2 +-
src/gen/lib/Model/InvoiceLineItem.php | 2 +-
src/gen/lib/Model/InvoiceResponse.php | 2 +-
src/gen/lib/Model/InvoicesFilter.php | 2 +-
src/gen/lib/Model/InvoicesSort.php | 2 +-
src/gen/lib/Model/IssueTrackingEventType.php | 2 +-
src/gen/lib/Model/IssuesFilter.php | 2 +-
src/gen/lib/Model/Item.php | 2 +-
src/gen/lib/Model/Job.php | 2 +-
src/gen/lib/Model/JobLinks.php | 2 +-
src/gen/lib/Model/JobSalary.php | 2 +-
src/gen/lib/Model/JobStatus.php | 2 +-
src/gen/lib/Model/JournalEntriesFilter.php | 2 +-
src/gen/lib/Model/JournalEntriesSort.php | 2 +-
src/gen/lib/Model/JournalEntry.php | 2 +-
src/gen/lib/Model/JournalEntryLineItem.php | 2 +-
src/gen/lib/Model/Lead.php | 2 +-
src/gen/lib/Model/LeadEventType.php | 2 +-
src/gen/lib/Model/LeadsFilter.php | 2 +-
src/gen/lib/Model/LeadsSort.php | 2 +-
src/gen/lib/Model/LedgerAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountCategories.php | 2 +-
src/gen/lib/Model/LedgerAccountParentAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountsFilter.php | 2 +-
src/gen/lib/Model/LedgerAccountsSort.php | 2 +-
src/gen/lib/Model/LinkedConnectorResource.php | 2 +-
src/gen/lib/Model/LinkedCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceOrder.php | 2 +-
src/gen/lib/Model/LinkedFolder.php | 2 +-
src/gen/lib/Model/LinkedInvoiceItem.php | 2 +-
src/gen/lib/Model/LinkedLedgerAccount.php | 2 +-
src/gen/lib/Model/LinkedParentCustomer.php | 2 +-
src/gen/lib/Model/LinkedSupplier.php | 2 +-
src/gen/lib/Model/LinkedTaxRate.php | 2 +-
src/gen/lib/Model/LinkedTrackingCategory.php | 2 +-
src/gen/lib/Model/Links.php | 2 +-
src/gen/lib/Model/Location.php | 2 +-
src/gen/lib/Model/Log.php | 2 +-
src/gen/lib/Model/LogOperation.php | 2 +-
src/gen/lib/Model/LogService.php | 2 +-
src/gen/lib/Model/LogsFilter.php | 2 +-
src/gen/lib/Model/Merchant.php | 2 +-
src/gen/lib/Model/Message.php | 2 +-
src/gen/lib/Model/Meta.php | 2 +-
src/gen/lib/Model/MetaCursors.php | 2 +-
src/gen/lib/Model/ModelInterface.php | 2 +-
src/gen/lib/Model/Modifier.php | 2 +-
src/gen/lib/Model/ModifierGroup.php | 2 +-
src/gen/lib/Model/ModifierGroupFilter.php | 2 +-
src/gen/lib/Model/NotFoundResponse.php | 2 +-
src/gen/lib/Model/NotImplementedResponse.php | 2 +-
src/gen/lib/Model/Note.php | 2 +-
src/gen/lib/Model/OAuthGrantType.php | 2 +-
src/gen/lib/Model/Offer.php | 2 +-
src/gen/lib/Model/OpportunitiesFilter.php | 2 +-
src/gen/lib/Model/OpportunitiesSort.php | 2 +-
src/gen/lib/Model/Opportunity.php | 2 +-
src/gen/lib/Model/Order.php | 2 +-
src/gen/lib/Model/OrderCustomers.php | 2 +-
src/gen/lib/Model/OrderDiscounts.php | 2 +-
src/gen/lib/Model/OrderFulfillments.php | 2 +-
src/gen/lib/Model/OrderLineItems.php | 2 +-
src/gen/lib/Model/OrderPayments.php | 2 +-
src/gen/lib/Model/OrderPickupDetails.php | 2 +-
src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php | 2 +-
src/gen/lib/Model/OrderPickupDetailsRecipient.php | 2 +-
src/gen/lib/Model/OrderRefunds.php | 2 +-
src/gen/lib/Model/OrderTenders.php | 2 +-
src/gen/lib/Model/OrderType.php | 2 +-
src/gen/lib/Model/Owner.php | 2 +-
src/gen/lib/Model/PaginationCoverage.php | 2 +-
src/gen/lib/Model/PassThroughQuery.php | 2 +-
src/gen/lib/Model/Payment.php | 2 +-
src/gen/lib/Model/PaymentAllocations.php | 2 +-
src/gen/lib/Model/PaymentCard.php | 2 +-
src/gen/lib/Model/PaymentFrequency.php | 2 +-
src/gen/lib/Model/PaymentRequiredResponse.php | 2 +-
src/gen/lib/Model/PaymentUnit.php | 2 +-
src/gen/lib/Model/PaymentsFilter.php | 2 +-
src/gen/lib/Model/PaymentsSort.php | 2 +-
src/gen/lib/Model/Payroll.php | 2 +-
src/gen/lib/Model/PayrollTotals.php | 2 +-
src/gen/lib/Model/PayrollsFilter.php | 2 +-
src/gen/lib/Model/Person.php | 2 +-
src/gen/lib/Model/PhoneNumber.php | 2 +-
src/gen/lib/Model/Pipeline.php | 2 +-
src/gen/lib/Model/PipelineStages.php | 2 +-
src/gen/lib/Model/PosBankAccount.php | 2 +-
src/gen/lib/Model/PosBankAccountAchDetails.php | 2 +-
src/gen/lib/Model/PosPayment.php | 2 +-
src/gen/lib/Model/PosPaymentCardDetails.php | 2 +-
src/gen/lib/Model/PosPaymentExternalDetails.php | 2 +-
src/gen/lib/Model/Price.php | 2 +-
src/gen/lib/Model/ProbationPeriod.php | 2 +-
src/gen/lib/Model/ProfitAndLoss.php | 2 +-
src/gen/lib/Model/ProfitAndLossExpenses.php | 2 +-
src/gen/lib/Model/ProfitAndLossFilter.php | 2 +-
src/gen/lib/Model/ProfitAndLossGrossProfit.php | 2 +-
src/gen/lib/Model/ProfitAndLossIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossNetIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossRecord.php | 2 +-
src/gen/lib/Model/ProfitAndLossSection.php | 2 +-
src/gen/lib/Model/PurchaseOrder.php | 2 +-
src/gen/lib/Model/PurchaseOrdersFilter.php | 2 +-
src/gen/lib/Model/PurchaseOrdersSort.php | 2 +-
src/gen/lib/Model/RequestCountAllocation.php | 2 +-
src/gen/lib/Model/RequestRate.php | 2 +-
src/gen/lib/Model/ResolveWebhookResponse.php | 2 +-
src/gen/lib/Model/ResourceExample.php | 2 +-
src/gen/lib/Model/ResourceStatus.php | 2 +-
src/gen/lib/Model/Schedule.php | 2 +-
src/gen/lib/Model/ScheduleWorkPattern.php | 2 +-
src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php | 2 +-
src/gen/lib/Model/SchemaSupport.php | 2 +-
src/gen/lib/Model/ServiceCharge.php | 2 +-
src/gen/lib/Model/Session.php | 2 +-
src/gen/lib/Model/SessionSettings.php | 2 +-
src/gen/lib/Model/SessionTheme.php | 2 +-
src/gen/lib/Model/SharedLink.php | 2 +-
src/gen/lib/Model/SharedLinkTarget.php | 2 +-
src/gen/lib/Model/SimpleFormFieldOption.php | 2 +-
src/gen/lib/Model/SocialLink.php | 2 +-
src/gen/lib/Model/SortDirection.php | 2 +-
src/gen/lib/Model/Status.php | 2 +-
src/gen/lib/Model/Subsidiary.php | 2 +-
src/gen/lib/Model/Supplier.php | 2 +-
src/gen/lib/Model/SuppliersFilter.php | 2 +-
src/gen/lib/Model/SuppliersSort.php | 2 +-
src/gen/lib/Model/SupportedProperty.php | 2 +-
src/gen/lib/Model/Tax.php | 2 +-
src/gen/lib/Model/TaxRate.php | 2 +-
src/gen/lib/Model/TaxRatesFilter.php | 2 +-
src/gen/lib/Model/Team.php | 2 +-
src/gen/lib/Model/Tender.php | 2 +-
src/gen/lib/Model/Ticket.php | 2 +-
src/gen/lib/Model/TicketsSort.php | 2 +-
src/gen/lib/Model/TimeOffRequest.php | 2 +-
src/gen/lib/Model/TimeOffRequestNotes.php | 2 +-
src/gen/lib/Model/TimeOffRequestsFilter.php | 2 +-
src/gen/lib/Model/TooManyRequestsResponse.php | 2 +-
src/gen/lib/Model/TooManyRequestsResponseDetail.php | 2 +-
src/gen/lib/Model/TrackingItem.php | 2 +-
src/gen/lib/Model/UnauthorizedResponse.php | 2 +-
src/gen/lib/Model/UnexpectedErrorResponse.php | 2 +-
src/gen/lib/Model/UnifiedApiId.php | 2 +-
src/gen/lib/Model/UnifiedFile.php | 2 +-
src/gen/lib/Model/UnifiedFilePermissions.php | 2 +-
src/gen/lib/Model/UnifiedId.php | 2 +-
src/gen/lib/Model/UnprocessableResponse.php | 2 +-
src/gen/lib/Model/UpdateActivityResponse.php | 2 +-
src/gen/lib/Model/UpdateApplicantResponse.php | 2 +-
src/gen/lib/Model/UpdateApplicationResponse.php | 2 +-
src/gen/lib/Model/UpdateBillResponse.php | 2 +-
src/gen/lib/Model/UpdateCommentResponse.php | 2 +-
src/gen/lib/Model/UpdateCompanyResponse.php | 2 +-
src/gen/lib/Model/UpdateConnectionResponse.php | 2 +-
src/gen/lib/Model/UpdateConsumerRequest.php | 2 +-
src/gen/lib/Model/UpdateConsumerResponse.php | 2 +-
src/gen/lib/Model/UpdateContactResponse.php | 2 +-
src/gen/lib/Model/UpdateCreditNoteResponse.php | 2 +-
src/gen/lib/Model/UpdateCustomMappingRequest.php | 2 +-
src/gen/lib/Model/UpdateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/UpdateCustomerResponse.php | 2 +-
src/gen/lib/Model/UpdateDepartmentResponse.php | 2 +-
src/gen/lib/Model/UpdateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateDriveResponse.php | 2 +-
src/gen/lib/Model/UpdateEcommerceCustomerResponse.php | 2 +-
src/gen/lib/Model/UpdateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateEmployeeResponse.php | 2 +-
src/gen/lib/Model/UpdateFileRequest.php | 2 +-
src/gen/lib/Model/UpdateFileResponse.php | 2 +-
src/gen/lib/Model/UpdateFolderRequest.php | 2 +-
src/gen/lib/Model/UpdateFolderResponse.php | 2 +-
src/gen/lib/Model/UpdateHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/UpdateInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/UpdateInvoiceResponse.php | 2 +-
src/gen/lib/Model/UpdateItemResponse.php | 2 +-
src/gen/lib/Model/UpdateJobResponse.php | 2 +-
src/gen/lib/Model/UpdateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/UpdateLeadResponse.php | 2 +-
src/gen/lib/Model/UpdateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/UpdateLocationResponse.php | 2 +-
src/gen/lib/Model/UpdateMerchantResponse.php | 2 +-
src/gen/lib/Model/UpdateMessageResponse.php | 2 +-
src/gen/lib/Model/UpdateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateModifierResponse.php | 2 +-
src/gen/lib/Model/UpdateNoteResponse.php | 2 +-
src/gen/lib/Model/UpdateOpportunityResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/UpdatePaymentResponse.php | 2 +-
src/gen/lib/Model/UpdatePipelineResponse.php | 2 +-
src/gen/lib/Model/UpdatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/UpdateProductResponse.php | 2 +-
src/gen/lib/Model/UpdatePurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateSharedLinkResponse.php | 2 +-
src/gen/lib/Model/UpdateSupplierResponse.php | 2 +-
src/gen/lib/Model/UpdateTaxRateResponse.php | 2 +-
src/gen/lib/Model/UpdateTenderResponse.php | 2 +-
src/gen/lib/Model/UpdateTicketResponse.php | 2 +-
src/gen/lib/Model/UpdateTimeOffRequestResponse.php | 2 +-
src/gen/lib/Model/UpdateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/UpdateUserResponse.php | 2 +-
src/gen/lib/Model/UpdateWebhookRequest.php | 2 +-
src/gen/lib/Model/UpdateWebhookResponse.php | 2 +-
src/gen/lib/Model/UploadSession.php | 2 +-
src/gen/lib/Model/User.php | 2 +-
src/gen/lib/Model/VaultEventType.php | 2 +-
src/gen/lib/Model/VirtualWebhooks.php | 2 +-
src/gen/lib/Model/WalletDetails.php | 2 +-
src/gen/lib/Model/Webhook.php | 2 +-
src/gen/lib/Model/WebhookEvent.php | 2 +-
src/gen/lib/Model/WebhookEventLog.php | 2 +-
src/gen/lib/Model/WebhookEventLogAttempts.php | 2 +-
src/gen/lib/Model/WebhookEventLogService.php | 2 +-
src/gen/lib/Model/WebhookEventLogsFilter.php | 2 +-
src/gen/lib/Model/WebhookEventLogsFilterService.php | 2 +-
src/gen/lib/Model/WebhookEventType.php | 2 +-
src/gen/lib/Model/WebhookSubscription.php | 2 +-
src/gen/lib/Model/WebhookSupport.php | 2 +-
src/gen/lib/Model/Website.php | 2 +-
src/gen/lib/ObjectSerializer.php | 2 +-
src/gen/test/Api/AccountingApiTest.php | 2 +-
src/gen/test/Api/AtsApiTest.php | 2 +-
src/gen/test/Api/ConnectorApiTest.php | 2 +-
src/gen/test/Api/CrmApiTest.php | 2 +-
src/gen/test/Api/EcommerceApiTest.php | 2 +-
src/gen/test/Api/FileStorageApiTest.php | 2 +-
src/gen/test/Api/HrisApiTest.php | 2 +-
src/gen/test/Api/IssueTrackingApiTest.php | 2 +-
src/gen/test/Api/LeadApiTest.php | 2 +-
src/gen/test/Api/PosApiTest.php | 2 +-
src/gen/test/Api/SmsApiTest.php | 2 +-
src/gen/test/Api/VaultApiTest.php | 2 +-
src/gen/test/Api/WebhookApiTest.php | 2 +-
src/gen/test/Model/AccountingEventTypeTest.php | 2 +-
src/gen/test/Model/ActivitiesFilterTest.php | 2 +-
src/gen/test/Model/ActivitiesSortTest.php | 2 +-
src/gen/test/Model/ActivityAttendeeTest.php | 2 +-
src/gen/test/Model/ActivityTest.php | 2 +-
src/gen/test/Model/AddressTest.php | 2 +-
src/gen/test/Model/ApiResourceCoverageCoverageTest.php | 2 +-
src/gen/test/Model/ApiResourceCoverageTest.php | 2 +-
src/gen/test/Model/ApiResourceLinkedResourcesTest.php | 2 +-
src/gen/test/Model/ApiResourceTest.php | 2 +-
src/gen/test/Model/ApiResourcesTest.php | 2 +-
src/gen/test/Model/ApiStatusTest.php | 2 +-
src/gen/test/Model/ApiTest.php | 2 +-
src/gen/test/Model/ApisFilterTest.php | 2 +-
src/gen/test/Model/ApplicantSocialLinksTest.php | 2 +-
src/gen/test/Model/ApplicantTest.php | 2 +-
src/gen/test/Model/ApplicantWebsitesTest.php | 2 +-
src/gen/test/Model/ApplicantsFilterTest.php | 2 +-
src/gen/test/Model/ApplicationStageTest.php | 2 +-
src/gen/test/Model/ApplicationTest.php | 2 +-
src/gen/test/Model/AssigneeTest.php | 2 +-
src/gen/test/Model/AtsActivityTest.php | 2 +-
src/gen/test/Model/AtsEventTypeTest.php | 2 +-
src/gen/test/Model/AuthTypeTest.php | 2 +-
src/gen/test/Model/BadRequestResponseTest.php | 2 +-
.../Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php | 2 +-
src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php | 2 +-
.../test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php | 2 +-
src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php | 2 +-
src/gen/test/Model/BalanceSheetAssetsTest.php | 2 +-
src/gen/test/Model/BalanceSheetEquityItemsTest.php | 2 +-
src/gen/test/Model/BalanceSheetEquityTest.php | 2 +-
src/gen/test/Model/BalanceSheetFilterTest.php | 2 +-
src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php | 2 +-
src/gen/test/Model/BalanceSheetLiabilitiesTest.php | 2 +-
src/gen/test/Model/BalanceSheetTest.php | 2 +-
src/gen/test/Model/BankAccountTest.php | 2 +-
src/gen/test/Model/BenefitTest.php | 2 +-
src/gen/test/Model/BillLineItemTest.php | 2 +-
src/gen/test/Model/BillTest.php | 2 +-
src/gen/test/Model/BillsFilterTest.php | 2 +-
src/gen/test/Model/BillsSortTest.php | 2 +-
src/gen/test/Model/BranchTest.php | 2 +-
src/gen/test/Model/CashDetailsTest.php | 2 +-
src/gen/test/Model/CollectionTagTest.php | 2 +-
src/gen/test/Model/CollectionTest.php | 2 +-
src/gen/test/Model/CollectionTicketCommentTest.php | 2 +-
src/gen/test/Model/CollectionUserTest.php | 2 +-
src/gen/test/Model/CollectionsSortTest.php | 2 +-
src/gen/test/Model/CommentsSortTest.php | 2 +-
src/gen/test/Model/CompaniesFilterTest.php | 2 +-
src/gen/test/Model/CompaniesSortTest.php | 2 +-
src/gen/test/Model/CompanyInfoTest.php | 2 +-
src/gen/test/Model/CompanyRowTypeTest.php | 2 +-
src/gen/test/Model/CompanyTest.php | 2 +-
src/gen/test/Model/CompensationTest.php | 2 +-
src/gen/test/Model/ConnectionConfigurationTest.php | 2 +-
src/gen/test/Model/ConnectionDefaultsTest.php | 2 +-
src/gen/test/Model/ConnectionImportDataCredentialsTest.php | 2 +-
src/gen/test/Model/ConnectionImportDataTest.php | 2 +-
src/gen/test/Model/ConnectionMetadataTest.php | 2 +-
src/gen/test/Model/ConnectionStateTest.php | 2 +-
src/gen/test/Model/ConnectionTest.php | 2 +-
src/gen/test/Model/ConnectionWebhookTest.php | 2 +-
src/gen/test/Model/ConnectorDocTest.php | 2 +-
src/gen/test/Model/ConnectorEventTest.php | 2 +-
src/gen/test/Model/ConnectorOauthScopes1Test.php | 2 +-
src/gen/test/Model/ConnectorOauthScopesTest.php | 2 +-
src/gen/test/Model/ConnectorResourceTest.php | 2 +-
src/gen/test/Model/ConnectorSettingTest.php | 2 +-
src/gen/test/Model/ConnectorStatusTest.php | 2 +-
src/gen/test/Model/ConnectorTest.php | 2 +-
src/gen/test/Model/ConnectorTlsSupportTest.php | 2 +-
src/gen/test/Model/ConnectorUnifiedApisTest.php | 2 +-
src/gen/test/Model/ConnectorsFilterTest.php | 2 +-
src/gen/test/Model/ConsumerConnectionTest.php | 2 +-
src/gen/test/Model/ConsumerMetadataTest.php | 2 +-
.../ConsumerRequestCountsInDateRangeResponseDataTest.php | 2 +-
.../Model/ConsumerRequestCountsInDateRangeResponseTest.php | 2 +-
src/gen/test/Model/ConsumerTest.php | 2 +-
src/gen/test/Model/ContactTest.php | 2 +-
src/gen/test/Model/ContactsFilterTest.php | 2 +-
src/gen/test/Model/ContactsSortTest.php | 2 +-
src/gen/test/Model/CopyFolderRequestTest.php | 2 +-
src/gen/test/Model/CreateActivityResponseTest.php | 2 +-
src/gen/test/Model/CreateApplicantResponseTest.php | 2 +-
src/gen/test/Model/CreateApplicationResponseTest.php | 2 +-
src/gen/test/Model/CreateBillResponseTest.php | 2 +-
src/gen/test/Model/CreateCommentResponseTest.php | 2 +-
src/gen/test/Model/CreateCompanyResponseTest.php | 2 +-
src/gen/test/Model/CreateConnectionResponseTest.php | 2 +-
src/gen/test/Model/CreateConsumerResponseTest.php | 2 +-
src/gen/test/Model/CreateContactResponseTest.php | 2 +-
src/gen/test/Model/CreateCreditNoteResponseTest.php | 2 +-
src/gen/test/Model/CreateCustomMappingRequestTest.php | 2 +-
src/gen/test/Model/CreateCustomMappingResponseTest.php | 2 +-
src/gen/test/Model/CreateCustomerResponseTest.php | 2 +-
src/gen/test/Model/CreateDepartmentResponseTest.php | 2 +-
src/gen/test/Model/CreateDriveGroupResponseTest.php | 2 +-
src/gen/test/Model/CreateDriveResponseTest.php | 2 +-
src/gen/test/Model/CreateEcommerceCustomerResponseTest.php | 2 +-
src/gen/test/Model/CreateEcommerceOrderResponseTest.php | 2 +-
src/gen/test/Model/CreateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/CreateFileRequestTest.php | 2 +-
src/gen/test/Model/CreateFileResponseTest.php | 2 +-
src/gen/test/Model/CreateFolderRequestTest.php | 2 +-
src/gen/test/Model/CreateFolderResponseTest.php | 2 +-
src/gen/test/Model/CreateHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/CreateInvoiceItemResponseTest.php | 2 +-
src/gen/test/Model/CreateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/CreateItemResponseTest.php | 2 +-
src/gen/test/Model/CreateJobResponseTest.php | 2 +-
src/gen/test/Model/CreateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/CreateLeadResponseTest.php | 2 +-
src/gen/test/Model/CreateLedgerAccountResponseTest.php | 2 +-
src/gen/test/Model/CreateLocationResponseTest.php | 2 +-
src/gen/test/Model/CreateMerchantResponseTest.php | 2 +-
src/gen/test/Model/CreateMessageResponseTest.php | 2 +-
src/gen/test/Model/CreateModifierGroupResponseTest.php | 2 +-
src/gen/test/Model/CreateModifierResponseTest.php | 2 +-
src/gen/test/Model/CreateNoteResponseTest.php | 2 +-
src/gen/test/Model/CreateOpportunityResponseTest.php | 2 +-
src/gen/test/Model/CreateOrderResponseTest.php | 2 +-
src/gen/test/Model/CreateOrderTypeResponseTest.php | 2 +-
src/gen/test/Model/CreatePaymentResponseTest.php | 2 +-
src/gen/test/Model/CreatePipelineResponseTest.php | 2 +-
src/gen/test/Model/CreatePosPaymentResponseTest.php | 2 +-
src/gen/test/Model/CreateProductResponseTest.php | 2 +-
src/gen/test/Model/CreatePurchaseOrderResponseTest.php | 2 +-
src/gen/test/Model/CreateSessionResponseDataTest.php | 2 +-
src/gen/test/Model/CreateSessionResponseTest.php | 2 +-
src/gen/test/Model/CreateSharedLinkResponseTest.php | 2 +-
src/gen/test/Model/CreateSupplierResponseTest.php | 2 +-
src/gen/test/Model/CreateTaxRateResponseTest.php | 2 +-
src/gen/test/Model/CreateTenderResponseTest.php | 2 +-
src/gen/test/Model/CreateTicketResponseTest.php | 2 +-
src/gen/test/Model/CreateTimeOffRequestResponseTest.php | 2 +-
src/gen/test/Model/CreateUploadSessionRequestTest.php | 2 +-
src/gen/test/Model/CreateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/CreateUserResponseTest.php | 2 +-
src/gen/test/Model/CreateWebhookRequestTest.php | 2 +-
src/gen/test/Model/CreateWebhookResponseTest.php | 2 +-
src/gen/test/Model/CreditNoteTest.php | 2 +-
src/gen/test/Model/CreditNotesFilterTest.php | 2 +-
src/gen/test/Model/CreditNotesSortTest.php | 2 +-
src/gen/test/Model/CrmEventTypeTest.php | 2 +-
src/gen/test/Model/CurrencyTest.php | 2 +-
src/gen/test/Model/CustomFieldFinderTest.php | 2 +-
src/gen/test/Model/CustomFieldTest.php | 2 +-
src/gen/test/Model/CustomMappingTest.php | 2 +-
src/gen/test/Model/CustomerTest.php | 2 +-
src/gen/test/Model/CustomersFilterTest.php | 2 +-
src/gen/test/Model/CustomersSortTest.php | 2 +-
src/gen/test/Model/DeductionTest.php | 2 +-
src/gen/test/Model/DeleteActivityResponseTest.php | 2 +-
src/gen/test/Model/DeleteApplicantResponseTest.php | 2 +-
src/gen/test/Model/DeleteApplicationResponseTest.php | 2 +-
src/gen/test/Model/DeleteBillResponseTest.php | 2 +-
src/gen/test/Model/DeleteCommentResponseTest.php | 2 +-
src/gen/test/Model/DeleteCompanyResponseTest.php | 2 +-
src/gen/test/Model/DeleteConsumerResponseTest.php | 2 +-
src/gen/test/Model/DeleteContactResponseTest.php | 2 +-
src/gen/test/Model/DeleteCreditNoteResponseTest.php | 2 +-
src/gen/test/Model/DeleteCustomerResponseTest.php | 2 +-
src/gen/test/Model/DeleteDepartmentResponseTest.php | 2 +-
src/gen/test/Model/DeleteDriveGroupResponseTest.php | 2 +-
src/gen/test/Model/DeleteDriveResponseTest.php | 2 +-
src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php | 2 +-
src/gen/test/Model/DeleteEcommerceOrderResponseTest.php | 2 +-
src/gen/test/Model/DeleteEmployeeResponseTest.php | 2 +-
src/gen/test/Model/DeleteFileResponseTest.php | 2 +-
src/gen/test/Model/DeleteFolderResponseTest.php | 2 +-
src/gen/test/Model/DeleteHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/DeleteInvoiceResponseTest.php | 2 +-
src/gen/test/Model/DeleteItemResponseTest.php | 2 +-
src/gen/test/Model/DeleteJobResponseTest.php | 2 +-
src/gen/test/Model/DeleteJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/DeleteLeadResponseTest.php | 2 +-
src/gen/test/Model/DeleteLedgerAccountResponseTest.php | 2 +-
src/gen/test/Model/DeleteLocationResponseTest.php | 2 +-
src/gen/test/Model/DeleteMerchantResponseTest.php | 2 +-
src/gen/test/Model/DeleteMessageResponseTest.php | 2 +-
src/gen/test/Model/DeleteModifierGroupResponseTest.php | 2 +-
src/gen/test/Model/DeleteModifierResponseTest.php | 2 +-
src/gen/test/Model/DeleteNoteResponseTest.php | 2 +-
src/gen/test/Model/DeleteOpportunityResponseTest.php | 2 +-
src/gen/test/Model/DeleteOrderResponseTest.php | 2 +-
src/gen/test/Model/DeleteOrderTypeResponseTest.php | 2 +-
src/gen/test/Model/DeletePaymentResponseTest.php | 2 +-
src/gen/test/Model/DeletePipelineResponseTest.php | 2 +-
src/gen/test/Model/DeletePosPaymentResponseTest.php | 2 +-
src/gen/test/Model/DeleteProductResponseTest.php | 2 +-
src/gen/test/Model/DeletePurchaseOrderResponseTest.php | 2 +-
src/gen/test/Model/DeleteSharedLinkResponseTest.php | 2 +-
src/gen/test/Model/DeleteSupplierResponseTest.php | 2 +-
src/gen/test/Model/DeleteTaxRateResponseTest.php | 2 +-
src/gen/test/Model/DeleteTenderResponseTest.php | 2 +-
src/gen/test/Model/DeleteTicketResponseTest.php | 2 +-
src/gen/test/Model/DeleteTimeOffRequestResponseTest.php | 2 +-
src/gen/test/Model/DeleteUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/DeleteUserResponseTest.php | 2 +-
src/gen/test/Model/DeleteWebhookResponseTest.php | 2 +-
src/gen/test/Model/DepartmentTest.php | 2 +-
src/gen/test/Model/DriveGroupTest.php | 2 +-
src/gen/test/Model/DriveGroupsFilterTest.php | 2 +-
src/gen/test/Model/DriveTest.php | 2 +-
src/gen/test/Model/DrivesFilterTest.php | 2 +-
src/gen/test/Model/EcommerceAddressTest.php | 2 +-
src/gen/test/Model/EcommerceCustomerAddressesTest.php | 2 +-
src/gen/test/Model/EcommerceCustomerTest.php | 2 +-
src/gen/test/Model/EcommerceCustomersFilterTest.php | 2 +-
src/gen/test/Model/EcommerceDiscountTest.php | 2 +-
src/gen/test/Model/EcommerceOrderLineItemTest.php | 2 +-
src/gen/test/Model/EcommerceOrderStatusTest.php | 2 +-
src/gen/test/Model/EcommerceOrderTest.php | 2 +-
src/gen/test/Model/EcommerceOrdersFilterTest.php | 2 +-
src/gen/test/Model/EcommerceProductCategoriesTest.php | 2 +-
src/gen/test/Model/EcommerceProductImages1Test.php | 2 +-
src/gen/test/Model/EcommerceProductImagesTest.php | 2 +-
src/gen/test/Model/EcommerceProductOptions1Test.php | 2 +-
src/gen/test/Model/EcommerceProductOptionsTest.php | 2 +-
src/gen/test/Model/EcommerceProductTest.php | 2 +-
src/gen/test/Model/EcommerceProductVariantsTest.php | 2 +-
src/gen/test/Model/EcommerceStoreTest.php | 2 +-
src/gen/test/Model/EmailTest.php | 2 +-
src/gen/test/Model/EmployeeCompensationTest.php | 2 +-
src/gen/test/Model/EmployeeEmploymentRoleTest.php | 2 +-
src/gen/test/Model/EmployeeJobTest.php | 2 +-
src/gen/test/Model/EmployeeListTest.php | 2 +-
src/gen/test/Model/EmployeeManagerTest.php | 2 +-
src/gen/test/Model/EmployeePayrollTest.php | 2 +-
src/gen/test/Model/EmployeeSchedulesTest.php | 2 +-
src/gen/test/Model/EmployeeTest.php | 2 +-
src/gen/test/Model/EmployeesFilterTest.php | 2 +-
src/gen/test/Model/EmployeesSortTest.php | 2 +-
src/gen/test/Model/EmploymentStatusTest.php | 2 +-
src/gen/test/Model/ErrorTest.php | 2 +-
src/gen/test/Model/ExecuteWebhookResponseTest.php | 2 +-
src/gen/test/Model/FileStorageEventTypeTest.php | 2 +-
src/gen/test/Model/FileTypeTest.php | 2 +-
src/gen/test/Model/FilesFilterTest.php | 2 +-
src/gen/test/Model/FilesSearchTest.php | 2 +-
src/gen/test/Model/FilesSortTest.php | 2 +-
src/gen/test/Model/FolderTest.php | 2 +-
src/gen/test/Model/FormFieldOptionGroupTest.php | 2 +-
src/gen/test/Model/FormFieldOptionTest.php | 2 +-
src/gen/test/Model/FormFieldTest.php | 2 +-
src/gen/test/Model/GenderTest.php | 2 +-
src/gen/test/Model/GetActivitiesResponseTest.php | 2 +-
src/gen/test/Model/GetActivityResponseTest.php | 2 +-
src/gen/test/Model/GetApiResourceCoverageResponseTest.php | 2 +-
src/gen/test/Model/GetApiResourceResponseTest.php | 2 +-
src/gen/test/Model/GetApiResponseTest.php | 2 +-
src/gen/test/Model/GetApisResponseTest.php | 2 +-
src/gen/test/Model/GetApplicantResponseTest.php | 2 +-
src/gen/test/Model/GetApplicantsResponseTest.php | 2 +-
src/gen/test/Model/GetApplicationResponseTest.php | 2 +-
src/gen/test/Model/GetApplicationsResponseTest.php | 2 +-
src/gen/test/Model/GetBalanceSheetResponseTest.php | 2 +-
src/gen/test/Model/GetBillResponseTest.php | 2 +-
src/gen/test/Model/GetBillsResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionTagsResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionUserResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionUsersResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionsResponseTest.php | 2 +-
src/gen/test/Model/GetCommentResponseTest.php | 2 +-
src/gen/test/Model/GetCommentsResponseTest.php | 2 +-
src/gen/test/Model/GetCompaniesResponseTest.php | 2 +-
src/gen/test/Model/GetCompanyInfoResponseTest.php | 2 +-
src/gen/test/Model/GetCompanyResponseTest.php | 2 +-
src/gen/test/Model/GetConnectionResponseTest.php | 2 +-
src/gen/test/Model/GetConnectionsResponseTest.php | 2 +-
.../Model/GetConnectorResourceExampleResponseDataTest.php | 2 +-
.../test/Model/GetConnectorResourceExampleResponseTest.php | 2 +-
src/gen/test/Model/GetConnectorResourceResponseTest.php | 2 +-
src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php | 2 +-
src/gen/test/Model/GetConnectorResponseTest.php | 2 +-
src/gen/test/Model/GetConnectorsResponseTest.php | 2 +-
src/gen/test/Model/GetConsumerResponseTest.php | 2 +-
src/gen/test/Model/GetConsumersResponseDataTest.php | 2 +-
src/gen/test/Model/GetConsumersResponseTest.php | 2 +-
src/gen/test/Model/GetContactResponseTest.php | 2 +-
src/gen/test/Model/GetContactsResponseTest.php | 2 +-
src/gen/test/Model/GetCreditNoteResponseTest.php | 2 +-
src/gen/test/Model/GetCreditNotesResponseTest.php | 2 +-
src/gen/test/Model/GetCustomFieldsResponseTest.php | 2 +-
src/gen/test/Model/GetCustomMappingResponseTest.php | 2 +-
src/gen/test/Model/GetCustomerResponseTest.php | 2 +-
src/gen/test/Model/GetCustomersResponseTest.php | 2 +-
src/gen/test/Model/GetDepartmentResponseTest.php | 2 +-
src/gen/test/Model/GetDepartmentsResponseTest.php | 2 +-
src/gen/test/Model/GetDriveGroupResponseTest.php | 2 +-
src/gen/test/Model/GetDriveGroupsResponseTest.php | 2 +-
src/gen/test/Model/GetDriveResponseTest.php | 2 +-
src/gen/test/Model/GetDrivesResponseTest.php | 2 +-
src/gen/test/Model/GetEcommerceCustomerResponseTest.php | 2 +-
src/gen/test/Model/GetEcommerceCustomersResponseTest.php | 2 +-
src/gen/test/Model/GetEcommerceOrderResponseTest.php | 2 +-
src/gen/test/Model/GetEcommerceOrdersResponseTest.php | 2 +-
src/gen/test/Model/GetEmployeePayrollResponseTest.php | 2 +-
src/gen/test/Model/GetEmployeePayrollsResponseTest.php | 2 +-
src/gen/test/Model/GetEmployeeResponseTest.php | 2 +-
src/gen/test/Model/GetEmployeeSchedulesResponseTest.php | 2 +-
src/gen/test/Model/GetEmployeesResponseTest.php | 2 +-
src/gen/test/Model/GetFileResponseTest.php | 2 +-
src/gen/test/Model/GetFilesResponseTest.php | 2 +-
src/gen/test/Model/GetFolderResponseTest.php | 2 +-
src/gen/test/Model/GetFoldersResponseTest.php | 2 +-
src/gen/test/Model/GetHrisCompaniesResponseTest.php | 2 +-
src/gen/test/Model/GetHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/GetHrisJobResponseTest.php | 2 +-
src/gen/test/Model/GetHrisJobsResponseTest.php | 2 +-
src/gen/test/Model/GetInvoiceItemResponseTest.php | 2 +-
src/gen/test/Model/GetInvoiceItemsResponseTest.php | 2 +-
src/gen/test/Model/GetInvoiceResponseTest.php | 2 +-
src/gen/test/Model/GetInvoicesResponseTest.php | 2 +-
src/gen/test/Model/GetItemResponseTest.php | 2 +-
src/gen/test/Model/GetItemsResponseTest.php | 2 +-
src/gen/test/Model/GetJobResponseTest.php | 2 +-
src/gen/test/Model/GetJobsResponseTest.php | 2 +-
src/gen/test/Model/GetJournalEntriesResponseTest.php | 2 +-
src/gen/test/Model/GetJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/GetLeadResponseTest.php | 2 +-
src/gen/test/Model/GetLeadsResponseTest.php | 2 +-
src/gen/test/Model/GetLedgerAccountResponseTest.php | 2 +-
src/gen/test/Model/GetLedgerAccountsResponseTest.php | 2 +-
src/gen/test/Model/GetLocationResponseTest.php | 2 +-
src/gen/test/Model/GetLocationsResponseTest.php | 2 +-
src/gen/test/Model/GetLogsResponseTest.php | 2 +-
src/gen/test/Model/GetMerchantResponseTest.php | 2 +-
src/gen/test/Model/GetMerchantsResponseTest.php | 2 +-
src/gen/test/Model/GetMessageResponseTest.php | 2 +-
src/gen/test/Model/GetMessagesResponseTest.php | 2 +-
src/gen/test/Model/GetModifierGroupResponseTest.php | 2 +-
src/gen/test/Model/GetModifierGroupsResponseTest.php | 2 +-
src/gen/test/Model/GetModifierResponseTest.php | 2 +-
src/gen/test/Model/GetModifiersResponseTest.php | 2 +-
src/gen/test/Model/GetNoteResponseTest.php | 2 +-
src/gen/test/Model/GetNotesResponseTest.php | 2 +-
src/gen/test/Model/GetOpportunitiesResponseTest.php | 2 +-
src/gen/test/Model/GetOpportunityResponseTest.php | 2 +-
src/gen/test/Model/GetOrderResponseTest.php | 2 +-
src/gen/test/Model/GetOrderTypeResponseTest.php | 2 +-
src/gen/test/Model/GetOrderTypesResponseTest.php | 2 +-
src/gen/test/Model/GetOrdersResponseTest.php | 2 +-
src/gen/test/Model/GetPaymentResponseTest.php | 2 +-
src/gen/test/Model/GetPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetPayrollResponseTest.php | 2 +-
src/gen/test/Model/GetPayrollsResponseTest.php | 2 +-
src/gen/test/Model/GetPipelineResponseTest.php | 2 +-
src/gen/test/Model/GetPipelinesResponseTest.php | 2 +-
src/gen/test/Model/GetPosPaymentResponseTest.php | 2 +-
src/gen/test/Model/GetPosPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetProductResponseTest.php | 2 +-
src/gen/test/Model/GetProductsResponseTest.php | 2 +-
src/gen/test/Model/GetProfitAndLossResponseTest.php | 2 +-
src/gen/test/Model/GetPurchaseOrderResponseTest.php | 2 +-
src/gen/test/Model/GetPurchaseOrdersResponseTest.php | 2 +-
src/gen/test/Model/GetResourceExampleResponseTest.php | 2 +-
src/gen/test/Model/GetResourceSchemaResponseTest.php | 2 +-
src/gen/test/Model/GetSharedLinkResponseTest.php | 2 +-
src/gen/test/Model/GetSharedLinksResponseTest.php | 2 +-
src/gen/test/Model/GetStoreResponseTest.php | 2 +-
src/gen/test/Model/GetStoresResponseTest.php | 2 +-
src/gen/test/Model/GetSubsidiariesResponseTest.php | 2 +-
src/gen/test/Model/GetSubsidiaryResponseTest.php | 2 +-
src/gen/test/Model/GetSupplierResponseTest.php | 2 +-
src/gen/test/Model/GetSuppliersResponseTest.php | 2 +-
src/gen/test/Model/GetTaxRateResponseTest.php | 2 +-
src/gen/test/Model/GetTaxRatesResponseTest.php | 2 +-
src/gen/test/Model/GetTenderResponseTest.php | 2 +-
src/gen/test/Model/GetTendersResponseTest.php | 2 +-
src/gen/test/Model/GetTicketResponseTest.php | 2 +-
src/gen/test/Model/GetTicketsResponseTest.php | 2 +-
src/gen/test/Model/GetTimeOffRequestResponseTest.php | 2 +-
src/gen/test/Model/GetTimeOffRequestsResponseTest.php | 2 +-
src/gen/test/Model/GetUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/GetUserResponseTest.php | 2 +-
src/gen/test/Model/GetUsersResponseTest.php | 2 +-
src/gen/test/Model/GetWebhookEventLogsResponseTest.php | 2 +-
src/gen/test/Model/GetWebhookResponseTest.php | 2 +-
src/gen/test/Model/GetWebhooksResponseTest.php | 2 +-
src/gen/test/Model/HrisCompanyTest.php | 2 +-
src/gen/test/Model/HrisEventTypeTest.php | 2 +-
src/gen/test/Model/HrisJobLocationTest.php | 2 +-
src/gen/test/Model/HrisJobTest.php | 2 +-
src/gen/test/Model/HrisJobsTest.php | 2 +-
src/gen/test/Model/IntegrationStateTest.php | 2 +-
src/gen/test/Model/InvoiceItemSalesDetailsTest.php | 2 +-
src/gen/test/Model/InvoiceItemTest.php | 2 +-
src/gen/test/Model/InvoiceItemsFilterTest.php | 2 +-
src/gen/test/Model/InvoiceLineItemTest.php | 2 +-
src/gen/test/Model/InvoiceResponseTest.php | 2 +-
src/gen/test/Model/InvoiceTest.php | 2 +-
src/gen/test/Model/InvoicesFilterTest.php | 2 +-
src/gen/test/Model/InvoicesSortTest.php | 2 +-
src/gen/test/Model/IssueTrackingEventTypeTest.php | 2 +-
src/gen/test/Model/IssuesFilterTest.php | 2 +-
src/gen/test/Model/ItemTest.php | 2 +-
src/gen/test/Model/JobLinksTest.php | 2 +-
src/gen/test/Model/JobSalaryTest.php | 2 +-
src/gen/test/Model/JobStatusTest.php | 2 +-
src/gen/test/Model/JobTest.php | 2 +-
src/gen/test/Model/JournalEntriesFilterTest.php | 2 +-
src/gen/test/Model/JournalEntriesSortTest.php | 2 +-
src/gen/test/Model/JournalEntryLineItemTest.php | 2 +-
src/gen/test/Model/JournalEntryTest.php | 2 +-
src/gen/test/Model/LeadEventTypeTest.php | 2 +-
src/gen/test/Model/LeadTest.php | 2 +-
src/gen/test/Model/LeadsFilterTest.php | 2 +-
src/gen/test/Model/LeadsSortTest.php | 2 +-
src/gen/test/Model/LedgerAccountCategoriesTest.php | 2 +-
src/gen/test/Model/LedgerAccountParentAccountTest.php | 2 +-
src/gen/test/Model/LedgerAccountTest.php | 2 +-
src/gen/test/Model/LedgerAccountsFilterTest.php | 2 +-
src/gen/test/Model/LedgerAccountsSortTest.php | 2 +-
src/gen/test/Model/LinkedConnectorResourceTest.php | 2 +-
src/gen/test/Model/LinkedCustomerTest.php | 2 +-
src/gen/test/Model/LinkedEcommerceCustomerTest.php | 2 +-
src/gen/test/Model/LinkedEcommerceOrderTest.php | 2 +-
src/gen/test/Model/LinkedFolderTest.php | 2 +-
src/gen/test/Model/LinkedInvoiceItemTest.php | 2 +-
src/gen/test/Model/LinkedLedgerAccountTest.php | 2 +-
src/gen/test/Model/LinkedParentCustomerTest.php | 2 +-
src/gen/test/Model/LinkedSupplierTest.php | 2 +-
src/gen/test/Model/LinkedTaxRateTest.php | 2 +-
src/gen/test/Model/LinkedTrackingCategoryTest.php | 2 +-
src/gen/test/Model/LinksTest.php | 2 +-
src/gen/test/Model/LocationTest.php | 2 +-
src/gen/test/Model/LogOperationTest.php | 2 +-
src/gen/test/Model/LogServiceTest.php | 2 +-
src/gen/test/Model/LogTest.php | 2 +-
src/gen/test/Model/LogsFilterTest.php | 2 +-
src/gen/test/Model/MerchantTest.php | 2 +-
src/gen/test/Model/MessageTest.php | 2 +-
src/gen/test/Model/MetaCursorsTest.php | 2 +-
src/gen/test/Model/MetaTest.php | 2 +-
src/gen/test/Model/ModifierGroupFilterTest.php | 2 +-
src/gen/test/Model/ModifierGroupTest.php | 2 +-
src/gen/test/Model/ModifierTest.php | 2 +-
src/gen/test/Model/NotFoundResponseTest.php | 2 +-
src/gen/test/Model/NotImplementedResponseTest.php | 2 +-
src/gen/test/Model/NoteTest.php | 2 +-
src/gen/test/Model/OAuthGrantTypeTest.php | 2 +-
src/gen/test/Model/OfferTest.php | 2 +-
src/gen/test/Model/OpportunitiesFilterTest.php | 2 +-
src/gen/test/Model/OpportunitiesSortTest.php | 2 +-
src/gen/test/Model/OpportunityTest.php | 2 +-
src/gen/test/Model/OrderCustomersTest.php | 2 +-
src/gen/test/Model/OrderDiscountsTest.php | 2 +-
src/gen/test/Model/OrderFulfillmentsTest.php | 2 +-
src/gen/test/Model/OrderLineItemsTest.php | 2 +-
src/gen/test/Model/OrderPaymentsTest.php | 2 +-
.../Model/OrderPickupDetailsCurbsidePickupDetailsTest.php | 2 +-
src/gen/test/Model/OrderPickupDetailsRecipientTest.php | 2 +-
src/gen/test/Model/OrderPickupDetailsTest.php | 2 +-
src/gen/test/Model/OrderRefundsTest.php | 2 +-
src/gen/test/Model/OrderTendersTest.php | 2 +-
src/gen/test/Model/OrderTest.php | 2 +-
src/gen/test/Model/OrderTypeTest.php | 2 +-
src/gen/test/Model/OwnerTest.php | 2 +-
src/gen/test/Model/PaginationCoverageTest.php | 2 +-
src/gen/test/Model/PassThroughQueryTest.php | 2 +-
src/gen/test/Model/PaymentAllocationsTest.php | 2 +-
src/gen/test/Model/PaymentCardTest.php | 2 +-
src/gen/test/Model/PaymentFrequencyTest.php | 2 +-
src/gen/test/Model/PaymentRequiredResponseTest.php | 2 +-
src/gen/test/Model/PaymentTest.php | 2 +-
src/gen/test/Model/PaymentUnitTest.php | 2 +-
src/gen/test/Model/PaymentsFilterTest.php | 2 +-
src/gen/test/Model/PaymentsSortTest.php | 2 +-
src/gen/test/Model/PayrollTest.php | 2 +-
src/gen/test/Model/PayrollTotalsTest.php | 2 +-
src/gen/test/Model/PayrollsFilterTest.php | 2 +-
src/gen/test/Model/PersonTest.php | 2 +-
src/gen/test/Model/PhoneNumberTest.php | 2 +-
src/gen/test/Model/PipelineStagesTest.php | 2 +-
src/gen/test/Model/PipelineTest.php | 2 +-
src/gen/test/Model/PosBankAccountAchDetailsTest.php | 2 +-
src/gen/test/Model/PosBankAccountTest.php | 2 +-
src/gen/test/Model/PosPaymentCardDetailsTest.php | 2 +-
src/gen/test/Model/PosPaymentExternalDetailsTest.php | 2 +-
src/gen/test/Model/PosPaymentTest.php | 2 +-
src/gen/test/Model/PriceTest.php | 2 +-
src/gen/test/Model/ProbationPeriodTest.php | 2 +-
src/gen/test/Model/ProfitAndLossExpensesTest.php | 2 +-
src/gen/test/Model/ProfitAndLossFilterTest.php | 2 +-
src/gen/test/Model/ProfitAndLossGrossProfitTest.php | 2 +-
src/gen/test/Model/ProfitAndLossIncomeTest.php | 2 +-
src/gen/test/Model/ProfitAndLossNetIncomeTest.php | 2 +-
src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php | 2 +-
src/gen/test/Model/ProfitAndLossRecordTest.php | 2 +-
src/gen/test/Model/ProfitAndLossSectionTest.php | 2 +-
src/gen/test/Model/ProfitAndLossTest.php | 2 +-
src/gen/test/Model/PurchaseOrderTest.php | 2 +-
src/gen/test/Model/PurchaseOrdersFilterTest.php | 2 +-
src/gen/test/Model/PurchaseOrdersSortTest.php | 2 +-
src/gen/test/Model/RequestCountAllocationTest.php | 2 +-
src/gen/test/Model/RequestRateTest.php | 2 +-
src/gen/test/Model/ResolveWebhookResponseTest.php | 2 +-
src/gen/test/Model/ResourceExampleTest.php | 2 +-
src/gen/test/Model/ResourceStatusTest.php | 2 +-
src/gen/test/Model/ScheduleTest.php | 2 +-
src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php | 2 +-
src/gen/test/Model/ScheduleWorkPatternTest.php | 2 +-
src/gen/test/Model/SchemaSupportTest.php | 2 +-
src/gen/test/Model/ServiceChargeTest.php | 2 +-
src/gen/test/Model/SessionSettingsTest.php | 2 +-
src/gen/test/Model/SessionTest.php | 2 +-
src/gen/test/Model/SessionThemeTest.php | 2 +-
src/gen/test/Model/SharedLinkTargetTest.php | 2 +-
src/gen/test/Model/SharedLinkTest.php | 2 +-
src/gen/test/Model/SimpleFormFieldOptionTest.php | 2 +-
src/gen/test/Model/SocialLinkTest.php | 2 +-
src/gen/test/Model/SortDirectionTest.php | 2 +-
src/gen/test/Model/StatusTest.php | 2 +-
src/gen/test/Model/SubsidiaryTest.php | 2 +-
src/gen/test/Model/SupplierTest.php | 2 +-
src/gen/test/Model/SuppliersFilterTest.php | 2 +-
src/gen/test/Model/SuppliersSortTest.php | 2 +-
src/gen/test/Model/SupportedPropertyTest.php | 2 +-
src/gen/test/Model/TaxRateTest.php | 2 +-
src/gen/test/Model/TaxRatesFilterTest.php | 2 +-
src/gen/test/Model/TaxTest.php | 2 +-
src/gen/test/Model/TeamTest.php | 2 +-
src/gen/test/Model/TenderTest.php | 2 +-
src/gen/test/Model/TicketTest.php | 2 +-
src/gen/test/Model/TicketsSortTest.php | 2 +-
src/gen/test/Model/TimeOffRequestNotesTest.php | 2 +-
src/gen/test/Model/TimeOffRequestTest.php | 2 +-
src/gen/test/Model/TimeOffRequestsFilterTest.php | 2 +-
src/gen/test/Model/TooManyRequestsResponseDetailTest.php | 2 +-
src/gen/test/Model/TooManyRequestsResponseTest.php | 2 +-
src/gen/test/Model/TrackingItemTest.php | 2 +-
src/gen/test/Model/UnauthorizedResponseTest.php | 2 +-
src/gen/test/Model/UnexpectedErrorResponseTest.php | 2 +-
src/gen/test/Model/UnifiedApiIdTest.php | 2 +-
src/gen/test/Model/UnifiedFilePermissionsTest.php | 2 +-
src/gen/test/Model/UnifiedFileTest.php | 2 +-
src/gen/test/Model/UnifiedIdTest.php | 2 +-
src/gen/test/Model/UnprocessableResponseTest.php | 2 +-
src/gen/test/Model/UpdateActivityResponseTest.php | 2 +-
src/gen/test/Model/UpdateApplicantResponseTest.php | 2 +-
src/gen/test/Model/UpdateApplicationResponseTest.php | 2 +-
src/gen/test/Model/UpdateBillResponseTest.php | 2 +-
src/gen/test/Model/UpdateCommentResponseTest.php | 2 +-
src/gen/test/Model/UpdateCompanyResponseTest.php | 2 +-
src/gen/test/Model/UpdateConnectionResponseTest.php | 2 +-
src/gen/test/Model/UpdateConsumerRequestTest.php | 2 +-
src/gen/test/Model/UpdateConsumerResponseTest.php | 2 +-
src/gen/test/Model/UpdateContactResponseTest.php | 2 +-
src/gen/test/Model/UpdateCreditNoteResponseTest.php | 2 +-
src/gen/test/Model/UpdateCustomMappingRequestTest.php | 2 +-
src/gen/test/Model/UpdateCustomMappingResponseTest.php | 2 +-
src/gen/test/Model/UpdateCustomerResponseTest.php | 2 +-
src/gen/test/Model/UpdateDepartmentResponseTest.php | 2 +-
src/gen/test/Model/UpdateDriveGroupResponseTest.php | 2 +-
src/gen/test/Model/UpdateDriveResponseTest.php | 2 +-
src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php | 2 +-
src/gen/test/Model/UpdateEcommerceOrderResponseTest.php | 2 +-
src/gen/test/Model/UpdateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/UpdateFileRequestTest.php | 2 +-
src/gen/test/Model/UpdateFileResponseTest.php | 2 +-
src/gen/test/Model/UpdateFolderRequestTest.php | 2 +-
src/gen/test/Model/UpdateFolderResponseTest.php | 2 +-
src/gen/test/Model/UpdateHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/UpdateInvoiceItemsResponseTest.php | 2 +-
src/gen/test/Model/UpdateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/UpdateItemResponseTest.php | 2 +-
src/gen/test/Model/UpdateJobResponseTest.php | 2 +-
src/gen/test/Model/UpdateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/UpdateLeadResponseTest.php | 2 +-
src/gen/test/Model/UpdateLedgerAccountResponseTest.php | 2 +-
src/gen/test/Model/UpdateLocationResponseTest.php | 2 +-
src/gen/test/Model/UpdateMerchantResponseTest.php | 2 +-
src/gen/test/Model/UpdateMessageResponseTest.php | 2 +-
src/gen/test/Model/UpdateModifierGroupResponseTest.php | 2 +-
src/gen/test/Model/UpdateModifierResponseTest.php | 2 +-
src/gen/test/Model/UpdateNoteResponseTest.php | 2 +-
src/gen/test/Model/UpdateOpportunityResponseTest.php | 2 +-
src/gen/test/Model/UpdateOrderResponseTest.php | 2 +-
src/gen/test/Model/UpdateOrderTypeResponseTest.php | 2 +-
src/gen/test/Model/UpdatePaymentResponseTest.php | 2 +-
src/gen/test/Model/UpdatePipelineResponseTest.php | 2 +-
src/gen/test/Model/UpdatePosPaymentResponseTest.php | 2 +-
src/gen/test/Model/UpdateProductResponseTest.php | 2 +-
src/gen/test/Model/UpdatePurchaseOrderResponseTest.php | 2 +-
src/gen/test/Model/UpdateSharedLinkResponseTest.php | 2 +-
src/gen/test/Model/UpdateSupplierResponseTest.php | 2 +-
src/gen/test/Model/UpdateTaxRateResponseTest.php | 2 +-
src/gen/test/Model/UpdateTenderResponseTest.php | 2 +-
src/gen/test/Model/UpdateTicketResponseTest.php | 2 +-
src/gen/test/Model/UpdateTimeOffRequestResponseTest.php | 2 +-
src/gen/test/Model/UpdateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/UpdateUserResponseTest.php | 2 +-
src/gen/test/Model/UpdateWebhookRequestTest.php | 2 +-
src/gen/test/Model/UpdateWebhookResponseTest.php | 2 +-
src/gen/test/Model/UploadSessionTest.php | 2 +-
src/gen/test/Model/UserTest.php | 2 +-
src/gen/test/Model/VaultEventTypeTest.php | 2 +-
src/gen/test/Model/VirtualWebhooksTest.php | 2 +-
src/gen/test/Model/WalletDetailsTest.php | 2 +-
src/gen/test/Model/WebhookEventLogAttemptsTest.php | 2 +-
src/gen/test/Model/WebhookEventLogServiceTest.php | 2 +-
src/gen/test/Model/WebhookEventLogTest.php | 2 +-
src/gen/test/Model/WebhookEventLogsFilterServiceTest.php | 2 +-
src/gen/test/Model/WebhookEventLogsFilterTest.php | 2 +-
src/gen/test/Model/WebhookEventTest.php | 2 +-
src/gen/test/Model/WebhookEventTypeTest.php | 2 +-
src/gen/test/Model/WebhookSubscriptionTest.php | 2 +-
src/gen/test/Model/WebhookSupportTest.php | 2 +-
src/gen/test/Model/WebhookTest.php | 2 +-
src/gen/test/Model/WebsiteTest.php | 2 +-
1259 files changed, 1260 insertions(+), 1260 deletions(-)
diff --git a/src/gen/lib/Api/AccountingApi.php b/src/gen/lib/Api/AccountingApi.php
index 5d4556d48c..79901a9e04 100644
--- a/src/gen/lib/Api/AccountingApi.php
+++ b/src/gen/lib/Api/AccountingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/AtsApi.php b/src/gen/lib/Api/AtsApi.php
index 3895380289..2d5d93bca3 100644
--- a/src/gen/lib/Api/AtsApi.php
+++ b/src/gen/lib/Api/AtsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/ConnectorApi.php b/src/gen/lib/Api/ConnectorApi.php
index b7a6feff57..ebfd78d497 100644
--- a/src/gen/lib/Api/ConnectorApi.php
+++ b/src/gen/lib/Api/ConnectorApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/CrmApi.php b/src/gen/lib/Api/CrmApi.php
index c8312b7276..4731996349 100644
--- a/src/gen/lib/Api/CrmApi.php
+++ b/src/gen/lib/Api/CrmApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/EcommerceApi.php b/src/gen/lib/Api/EcommerceApi.php
index a7cd66feca..350b43ce64 100644
--- a/src/gen/lib/Api/EcommerceApi.php
+++ b/src/gen/lib/Api/EcommerceApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/FileStorageApi.php b/src/gen/lib/Api/FileStorageApi.php
index b5df29fcc5..976ca43ec3 100644
--- a/src/gen/lib/Api/FileStorageApi.php
+++ b/src/gen/lib/Api/FileStorageApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/HrisApi.php b/src/gen/lib/Api/HrisApi.php
index 3fc429c4c4..88cf7c52a8 100644
--- a/src/gen/lib/Api/HrisApi.php
+++ b/src/gen/lib/Api/HrisApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/IssueTrackingApi.php b/src/gen/lib/Api/IssueTrackingApi.php
index b904de0897..73a3c1f78c 100644
--- a/src/gen/lib/Api/IssueTrackingApi.php
+++ b/src/gen/lib/Api/IssueTrackingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/LeadApi.php b/src/gen/lib/Api/LeadApi.php
index 7cda33b7b5..56fcd1ef63 100644
--- a/src/gen/lib/Api/LeadApi.php
+++ b/src/gen/lib/Api/LeadApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/PosApi.php b/src/gen/lib/Api/PosApi.php
index 11b90119da..375c6d9cdf 100644
--- a/src/gen/lib/Api/PosApi.php
+++ b/src/gen/lib/Api/PosApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/SmsApi.php b/src/gen/lib/Api/SmsApi.php
index fdc48c137a..7e37d7652c 100644
--- a/src/gen/lib/Api/SmsApi.php
+++ b/src/gen/lib/Api/SmsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/VaultApi.php b/src/gen/lib/Api/VaultApi.php
index abf4feb2f0..035d09f72e 100644
--- a/src/gen/lib/Api/VaultApi.php
+++ b/src/gen/lib/Api/VaultApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/WebhookApi.php b/src/gen/lib/Api/WebhookApi.php
index e7d13e2a74..f7fcdaffdb 100644
--- a/src/gen/lib/Api/WebhookApi.php
+++ b/src/gen/lib/Api/WebhookApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ApiException.php b/src/gen/lib/ApiException.php
index 866c1aba86..1613d958cf 100644
--- a/src/gen/lib/ApiException.php
+++ b/src/gen/lib/ApiException.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Configuration.php b/src/gen/lib/Configuration.php
index dd4213de8c..39e950263d 100644
--- a/src/gen/lib/Configuration.php
+++ b/src/gen/lib/Configuration.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -447,7 +447,7 @@ public static function toDebugReport()
$report = 'PHP SDK (Apideck\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: 10.2.0' . PHP_EOL;
+ $report .= ' The version of the OpenAPI document: 10.2.1' . PHP_EOL;
$report .= ' SDK Package Version: 3.2.0' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
diff --git a/src/gen/lib/HeaderSelector.php b/src/gen/lib/HeaderSelector.php
index 4672eb8c6a..5c26efbcde 100644
--- a/src/gen/lib/HeaderSelector.php
+++ b/src/gen/lib/HeaderSelector.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingEventType.php b/src/gen/lib/Model/AccountingEventType.php
index e51904ef7a..559087c6a4 100644
--- a/src/gen/lib/Model/AccountingEventType.php
+++ b/src/gen/lib/Model/AccountingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivitiesFilter.php b/src/gen/lib/Model/ActivitiesFilter.php
index 01771b51c5..83fde5261c 100644
--- a/src/gen/lib/Model/ActivitiesFilter.php
+++ b/src/gen/lib/Model/ActivitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivitiesSort.php b/src/gen/lib/Model/ActivitiesSort.php
index deacf380e0..c87562a5df 100644
--- a/src/gen/lib/Model/ActivitiesSort.php
+++ b/src/gen/lib/Model/ActivitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Activity.php b/src/gen/lib/Model/Activity.php
index cb53f7e5b6..9b917dcb70 100644
--- a/src/gen/lib/Model/Activity.php
+++ b/src/gen/lib/Model/Activity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivityAttendee.php b/src/gen/lib/Model/ActivityAttendee.php
index a154a73204..1a42b61446 100644
--- a/src/gen/lib/Model/ActivityAttendee.php
+++ b/src/gen/lib/Model/ActivityAttendee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Address.php b/src/gen/lib/Model/Address.php
index 4555dc89c8..c11e446933 100644
--- a/src/gen/lib/Model/Address.php
+++ b/src/gen/lib/Model/Address.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Api.php b/src/gen/lib/Model/Api.php
index 2c488a8d5a..fd821ce42d 100644
--- a/src/gen/lib/Model/Api.php
+++ b/src/gen/lib/Model/Api.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResource.php b/src/gen/lib/Model/ApiResource.php
index a0b763d70d..6d102975df 100644
--- a/src/gen/lib/Model/ApiResource.php
+++ b/src/gen/lib/Model/ApiResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverage.php b/src/gen/lib/Model/ApiResourceCoverage.php
index d8476dc179..3dad57b00c 100644
--- a/src/gen/lib/Model/ApiResourceCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverageCoverage.php b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
index 9bb5f8c3c9..972f782a73 100644
--- a/src/gen/lib/Model/ApiResourceCoverageCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceLinkedResources.php b/src/gen/lib/Model/ApiResourceLinkedResources.php
index 493f839688..6b9d65342f 100644
--- a/src/gen/lib/Model/ApiResourceLinkedResources.php
+++ b/src/gen/lib/Model/ApiResourceLinkedResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResources.php b/src/gen/lib/Model/ApiResources.php
index 3e2d4972b9..9b7a2e7d0c 100644
--- a/src/gen/lib/Model/ApiResources.php
+++ b/src/gen/lib/Model/ApiResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiStatus.php b/src/gen/lib/Model/ApiStatus.php
index 810e345cd6..2517eb74cf 100644
--- a/src/gen/lib/Model/ApiStatus.php
+++ b/src/gen/lib/Model/ApiStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApisFilter.php b/src/gen/lib/Model/ApisFilter.php
index 675f1fb66c..029560d179 100644
--- a/src/gen/lib/Model/ApisFilter.php
+++ b/src/gen/lib/Model/ApisFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Applicant.php b/src/gen/lib/Model/Applicant.php
index b918d03451..a8430bd178 100644
--- a/src/gen/lib/Model/Applicant.php
+++ b/src/gen/lib/Model/Applicant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantSocialLinks.php b/src/gen/lib/Model/ApplicantSocialLinks.php
index fddb20411a..f0394f242a 100644
--- a/src/gen/lib/Model/ApplicantSocialLinks.php
+++ b/src/gen/lib/Model/ApplicantSocialLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantWebsites.php b/src/gen/lib/Model/ApplicantWebsites.php
index 46d9453c74..94b29362dd 100644
--- a/src/gen/lib/Model/ApplicantWebsites.php
+++ b/src/gen/lib/Model/ApplicantWebsites.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantsFilter.php b/src/gen/lib/Model/ApplicantsFilter.php
index 79586fa5b9..f816408b5a 100644
--- a/src/gen/lib/Model/ApplicantsFilter.php
+++ b/src/gen/lib/Model/ApplicantsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Application.php b/src/gen/lib/Model/Application.php
index 8f4df53f08..30c50574cc 100644
--- a/src/gen/lib/Model/Application.php
+++ b/src/gen/lib/Model/Application.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicationStage.php b/src/gen/lib/Model/ApplicationStage.php
index 43d2115d1a..22b1527a9b 100644
--- a/src/gen/lib/Model/ApplicationStage.php
+++ b/src/gen/lib/Model/ApplicationStage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Assignee.php b/src/gen/lib/Model/Assignee.php
index 4e7f88b36a..3dbd162d47 100644
--- a/src/gen/lib/Model/Assignee.php
+++ b/src/gen/lib/Model/Assignee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsActivity.php b/src/gen/lib/Model/AtsActivity.php
index 506c067fea..55d3fe5442 100644
--- a/src/gen/lib/Model/AtsActivity.php
+++ b/src/gen/lib/Model/AtsActivity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsEventType.php b/src/gen/lib/Model/AtsEventType.php
index ddf460982e..478b3195ba 100644
--- a/src/gen/lib/Model/AtsEventType.php
+++ b/src/gen/lib/Model/AtsEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AuthType.php b/src/gen/lib/Model/AuthType.php
index 386223c686..3d249a4406 100644
--- a/src/gen/lib/Model/AuthType.php
+++ b/src/gen/lib/Model/AuthType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BadRequestResponse.php b/src/gen/lib/Model/BadRequestResponse.php
index b3cfac85d9..a20e8191d4 100644
--- a/src/gen/lib/Model/BadRequestResponse.php
+++ b/src/gen/lib/Model/BadRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheet.php b/src/gen/lib/Model/BalanceSheet.php
index 2a04657e34..a325f5c47a 100644
--- a/src/gen/lib/Model/BalanceSheet.php
+++ b/src/gen/lib/Model/BalanceSheet.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssets.php b/src/gen/lib/Model/BalanceSheetAssets.php
index 509fda8968..425912c95b 100644
--- a/src/gen/lib/Model/BalanceSheetAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
index 0a844089c2..47e80cab03 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
index 7ea61620bd..a9256199af 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
index 5380774526..6f5d3145c4 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
index 9745988b5b..e5c2e32d73 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquity.php b/src/gen/lib/Model/BalanceSheetEquity.php
index 78e71524bf..42576bd8aa 100644
--- a/src/gen/lib/Model/BalanceSheetEquity.php
+++ b/src/gen/lib/Model/BalanceSheetEquity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquityItems.php b/src/gen/lib/Model/BalanceSheetEquityItems.php
index 4aa14b939f..f033a106bd 100644
--- a/src/gen/lib/Model/BalanceSheetEquityItems.php
+++ b/src/gen/lib/Model/BalanceSheetEquityItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetFilter.php b/src/gen/lib/Model/BalanceSheetFilter.php
index e1c94d7ee8..bc69d90313 100644
--- a/src/gen/lib/Model/BalanceSheetFilter.php
+++ b/src/gen/lib/Model/BalanceSheetFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilities.php b/src/gen/lib/Model/BalanceSheetLiabilities.php
index a766bc79c2..d0c576f2c7 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilities.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilities.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
index 8680a9eda5..ef7af6d2e1 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BankAccount.php b/src/gen/lib/Model/BankAccount.php
index 95d95d87e8..c4a17c1f52 100644
--- a/src/gen/lib/Model/BankAccount.php
+++ b/src/gen/lib/Model/BankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Benefit.php b/src/gen/lib/Model/Benefit.php
index d52887cc26..1efe1dcd2f 100644
--- a/src/gen/lib/Model/Benefit.php
+++ b/src/gen/lib/Model/Benefit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Bill.php b/src/gen/lib/Model/Bill.php
index bdb59f57e5..2c05d08e25 100644
--- a/src/gen/lib/Model/Bill.php
+++ b/src/gen/lib/Model/Bill.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillLineItem.php b/src/gen/lib/Model/BillLineItem.php
index 00949e8186..56ae31448f 100644
--- a/src/gen/lib/Model/BillLineItem.php
+++ b/src/gen/lib/Model/BillLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsFilter.php b/src/gen/lib/Model/BillsFilter.php
index 29ef671557..278d1cfb07 100644
--- a/src/gen/lib/Model/BillsFilter.php
+++ b/src/gen/lib/Model/BillsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsSort.php b/src/gen/lib/Model/BillsSort.php
index 573fcf17ee..4e2f147dca 100644
--- a/src/gen/lib/Model/BillsSort.php
+++ b/src/gen/lib/Model/BillsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Branch.php b/src/gen/lib/Model/Branch.php
index 69c512d617..f8d6eacd51 100644
--- a/src/gen/lib/Model/Branch.php
+++ b/src/gen/lib/Model/Branch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CashDetails.php b/src/gen/lib/Model/CashDetails.php
index 3c6d8c0398..c27f9fc3a7 100644
--- a/src/gen/lib/Model/CashDetails.php
+++ b/src/gen/lib/Model/CashDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Collection.php b/src/gen/lib/Model/Collection.php
index f83ffcc895..8e6624e766 100644
--- a/src/gen/lib/Model/Collection.php
+++ b/src/gen/lib/Model/Collection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTag.php b/src/gen/lib/Model/CollectionTag.php
index 521c65c90b..20211e4a9c 100644
--- a/src/gen/lib/Model/CollectionTag.php
+++ b/src/gen/lib/Model/CollectionTag.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTicketComment.php b/src/gen/lib/Model/CollectionTicketComment.php
index e5476033f6..f3e2077371 100644
--- a/src/gen/lib/Model/CollectionTicketComment.php
+++ b/src/gen/lib/Model/CollectionTicketComment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionUser.php b/src/gen/lib/Model/CollectionUser.php
index 7126b27125..fdaefb1697 100644
--- a/src/gen/lib/Model/CollectionUser.php
+++ b/src/gen/lib/Model/CollectionUser.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionsSort.php b/src/gen/lib/Model/CollectionsSort.php
index 2aea5b134f..3530768dbd 100644
--- a/src/gen/lib/Model/CollectionsSort.php
+++ b/src/gen/lib/Model/CollectionsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CommentsSort.php b/src/gen/lib/Model/CommentsSort.php
index 2c35c74c94..0997e4cfd0 100644
--- a/src/gen/lib/Model/CommentsSort.php
+++ b/src/gen/lib/Model/CommentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesFilter.php b/src/gen/lib/Model/CompaniesFilter.php
index 37298b0225..a5a5430ca6 100644
--- a/src/gen/lib/Model/CompaniesFilter.php
+++ b/src/gen/lib/Model/CompaniesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesSort.php b/src/gen/lib/Model/CompaniesSort.php
index 4f1d7e0374..77fe20792d 100644
--- a/src/gen/lib/Model/CompaniesSort.php
+++ b/src/gen/lib/Model/CompaniesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Company.php b/src/gen/lib/Model/Company.php
index 4aeef6344b..eda5c3f6f5 100644
--- a/src/gen/lib/Model/Company.php
+++ b/src/gen/lib/Model/Company.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyInfo.php b/src/gen/lib/Model/CompanyInfo.php
index e2cbc3b2f4..d15abf375f 100644
--- a/src/gen/lib/Model/CompanyInfo.php
+++ b/src/gen/lib/Model/CompanyInfo.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyRowType.php b/src/gen/lib/Model/CompanyRowType.php
index 1bb07a5f55..db58041752 100644
--- a/src/gen/lib/Model/CompanyRowType.php
+++ b/src/gen/lib/Model/CompanyRowType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Compensation.php b/src/gen/lib/Model/Compensation.php
index 9a0fec58bb..2569d8421c 100644
--- a/src/gen/lib/Model/Compensation.php
+++ b/src/gen/lib/Model/Compensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connection.php b/src/gen/lib/Model/Connection.php
index e4703221fc..2e12d7f803 100644
--- a/src/gen/lib/Model/Connection.php
+++ b/src/gen/lib/Model/Connection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionConfiguration.php b/src/gen/lib/Model/ConnectionConfiguration.php
index e6b5b80f3f..c9b7b5af12 100644
--- a/src/gen/lib/Model/ConnectionConfiguration.php
+++ b/src/gen/lib/Model/ConnectionConfiguration.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionDefaults.php b/src/gen/lib/Model/ConnectionDefaults.php
index 024b31d77a..c474f887e0 100644
--- a/src/gen/lib/Model/ConnectionDefaults.php
+++ b/src/gen/lib/Model/ConnectionDefaults.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportData.php b/src/gen/lib/Model/ConnectionImportData.php
index 8cb37e5135..3858ff9ff9 100644
--- a/src/gen/lib/Model/ConnectionImportData.php
+++ b/src/gen/lib/Model/ConnectionImportData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportDataCredentials.php b/src/gen/lib/Model/ConnectionImportDataCredentials.php
index 496f03fd31..2bae2cb207 100644
--- a/src/gen/lib/Model/ConnectionImportDataCredentials.php
+++ b/src/gen/lib/Model/ConnectionImportDataCredentials.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionMetadata.php b/src/gen/lib/Model/ConnectionMetadata.php
index 3e7640fa42..c1e6413fc1 100644
--- a/src/gen/lib/Model/ConnectionMetadata.php
+++ b/src/gen/lib/Model/ConnectionMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionState.php b/src/gen/lib/Model/ConnectionState.php
index b4384073f1..3aa1c794f3 100644
--- a/src/gen/lib/Model/ConnectionState.php
+++ b/src/gen/lib/Model/ConnectionState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionWebhook.php b/src/gen/lib/Model/ConnectionWebhook.php
index 1470ddd6a4..2107f108a2 100644
--- a/src/gen/lib/Model/ConnectionWebhook.php
+++ b/src/gen/lib/Model/ConnectionWebhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connector.php b/src/gen/lib/Model/Connector.php
index 8fcaaf19f1..9f4396f826 100644
--- a/src/gen/lib/Model/Connector.php
+++ b/src/gen/lib/Model/Connector.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorDoc.php b/src/gen/lib/Model/ConnectorDoc.php
index 2c5234a483..cad3465d28 100644
--- a/src/gen/lib/Model/ConnectorDoc.php
+++ b/src/gen/lib/Model/ConnectorDoc.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorEvent.php b/src/gen/lib/Model/ConnectorEvent.php
index 60ff475ade..5fcad74b57 100644
--- a/src/gen/lib/Model/ConnectorEvent.php
+++ b/src/gen/lib/Model/ConnectorEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes.php b/src/gen/lib/Model/ConnectorOauthScopes.php
index 8adbf63340..ce29674ec3 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes1.php b/src/gen/lib/Model/ConnectorOauthScopes1.php
index 9954aa2147..e426216680 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes1.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorResource.php b/src/gen/lib/Model/ConnectorResource.php
index f6daf46d40..25516c016e 100644
--- a/src/gen/lib/Model/ConnectorResource.php
+++ b/src/gen/lib/Model/ConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorSetting.php b/src/gen/lib/Model/ConnectorSetting.php
index dc7a3ca7cf..f8de305a29 100644
--- a/src/gen/lib/Model/ConnectorSetting.php
+++ b/src/gen/lib/Model/ConnectorSetting.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorStatus.php b/src/gen/lib/Model/ConnectorStatus.php
index c3e9629413..c73a1b3de0 100644
--- a/src/gen/lib/Model/ConnectorStatus.php
+++ b/src/gen/lib/Model/ConnectorStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorTlsSupport.php b/src/gen/lib/Model/ConnectorTlsSupport.php
index 1236cb7c25..f3cc0b9def 100644
--- a/src/gen/lib/Model/ConnectorTlsSupport.php
+++ b/src/gen/lib/Model/ConnectorTlsSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorUnifiedApis.php b/src/gen/lib/Model/ConnectorUnifiedApis.php
index 8761116fb4..5ce0be9dab 100644
--- a/src/gen/lib/Model/ConnectorUnifiedApis.php
+++ b/src/gen/lib/Model/ConnectorUnifiedApis.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorsFilter.php b/src/gen/lib/Model/ConnectorsFilter.php
index 9a6fa4c3d4..2405221870 100644
--- a/src/gen/lib/Model/ConnectorsFilter.php
+++ b/src/gen/lib/Model/ConnectorsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Consumer.php b/src/gen/lib/Model/Consumer.php
index 29c45d1574..e12668d635 100644
--- a/src/gen/lib/Model/Consumer.php
+++ b/src/gen/lib/Model/Consumer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerConnection.php b/src/gen/lib/Model/ConsumerConnection.php
index 4157ffb266..989360faef 100644
--- a/src/gen/lib/Model/ConsumerConnection.php
+++ b/src/gen/lib/Model/ConsumerConnection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerMetadata.php b/src/gen/lib/Model/ConsumerMetadata.php
index 238c8d5f49..4c171a31ba 100644
--- a/src/gen/lib/Model/ConsumerMetadata.php
+++ b/src/gen/lib/Model/ConsumerMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
index 257cbe9a01..6afa2c30bc 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
index 20cf47282e..e8d473a2f0 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Contact.php b/src/gen/lib/Model/Contact.php
index 11dfdd3bb2..e5c4295d1b 100644
--- a/src/gen/lib/Model/Contact.php
+++ b/src/gen/lib/Model/Contact.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsFilter.php b/src/gen/lib/Model/ContactsFilter.php
index 45b7e26466..9ec67b9901 100644
--- a/src/gen/lib/Model/ContactsFilter.php
+++ b/src/gen/lib/Model/ContactsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsSort.php b/src/gen/lib/Model/ContactsSort.php
index 9c7b421699..c019ecea29 100644
--- a/src/gen/lib/Model/ContactsSort.php
+++ b/src/gen/lib/Model/ContactsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CopyFolderRequest.php b/src/gen/lib/Model/CopyFolderRequest.php
index 7154943f7f..009bc871bf 100644
--- a/src/gen/lib/Model/CopyFolderRequest.php
+++ b/src/gen/lib/Model/CopyFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateActivityResponse.php b/src/gen/lib/Model/CreateActivityResponse.php
index e7dfbf3fca..2f65df1d27 100644
--- a/src/gen/lib/Model/CreateActivityResponse.php
+++ b/src/gen/lib/Model/CreateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicantResponse.php b/src/gen/lib/Model/CreateApplicantResponse.php
index 97453f2360..27e2c7bf8c 100644
--- a/src/gen/lib/Model/CreateApplicantResponse.php
+++ b/src/gen/lib/Model/CreateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicationResponse.php b/src/gen/lib/Model/CreateApplicationResponse.php
index a263ab51c4..660f8fd9f1 100644
--- a/src/gen/lib/Model/CreateApplicationResponse.php
+++ b/src/gen/lib/Model/CreateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateBillResponse.php b/src/gen/lib/Model/CreateBillResponse.php
index b68878ec10..01f07acb0b 100644
--- a/src/gen/lib/Model/CreateBillResponse.php
+++ b/src/gen/lib/Model/CreateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCommentResponse.php b/src/gen/lib/Model/CreateCommentResponse.php
index 646318f35b..f047dd7798 100644
--- a/src/gen/lib/Model/CreateCommentResponse.php
+++ b/src/gen/lib/Model/CreateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCompanyResponse.php b/src/gen/lib/Model/CreateCompanyResponse.php
index 009449aed9..a152466e46 100644
--- a/src/gen/lib/Model/CreateCompanyResponse.php
+++ b/src/gen/lib/Model/CreateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConnectionResponse.php b/src/gen/lib/Model/CreateConnectionResponse.php
index 4f2ac3f08b..ebb9482532 100644
--- a/src/gen/lib/Model/CreateConnectionResponse.php
+++ b/src/gen/lib/Model/CreateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConsumerResponse.php b/src/gen/lib/Model/CreateConsumerResponse.php
index 368d6d25d9..eb9c433ef6 100644
--- a/src/gen/lib/Model/CreateConsumerResponse.php
+++ b/src/gen/lib/Model/CreateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateContactResponse.php b/src/gen/lib/Model/CreateContactResponse.php
index 09f50b5a73..c4318e3ddb 100644
--- a/src/gen/lib/Model/CreateContactResponse.php
+++ b/src/gen/lib/Model/CreateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCreditNoteResponse.php b/src/gen/lib/Model/CreateCreditNoteResponse.php
index 2b0de984fd..0e59cb5c7b 100644
--- a/src/gen/lib/Model/CreateCreditNoteResponse.php
+++ b/src/gen/lib/Model/CreateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingRequest.php b/src/gen/lib/Model/CreateCustomMappingRequest.php
index b3618a4e64..6f2db6525d 100644
--- a/src/gen/lib/Model/CreateCustomMappingRequest.php
+++ b/src/gen/lib/Model/CreateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingResponse.php b/src/gen/lib/Model/CreateCustomMappingResponse.php
index 727f2e027e..e25cdfd3b1 100644
--- a/src/gen/lib/Model/CreateCustomMappingResponse.php
+++ b/src/gen/lib/Model/CreateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomerResponse.php b/src/gen/lib/Model/CreateCustomerResponse.php
index 34edf79ec2..717e85199f 100644
--- a/src/gen/lib/Model/CreateCustomerResponse.php
+++ b/src/gen/lib/Model/CreateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDepartmentResponse.php b/src/gen/lib/Model/CreateDepartmentResponse.php
index d4f4bc78ec..62c8ab2aa2 100644
--- a/src/gen/lib/Model/CreateDepartmentResponse.php
+++ b/src/gen/lib/Model/CreateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveGroupResponse.php b/src/gen/lib/Model/CreateDriveGroupResponse.php
index 755a626c39..3877f9a431 100644
--- a/src/gen/lib/Model/CreateDriveGroupResponse.php
+++ b/src/gen/lib/Model/CreateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveResponse.php b/src/gen/lib/Model/CreateDriveResponse.php
index 1c216277d0..7d06f8706a 100644
--- a/src/gen/lib/Model/CreateDriveResponse.php
+++ b/src/gen/lib/Model/CreateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
index a7cd2c6f50..27af7c7bf8 100644
--- a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceOrderResponse.php b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
index c2ac9cda1e..37dfa87ef5 100644
--- a/src/gen/lib/Model/CreateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEmployeeResponse.php b/src/gen/lib/Model/CreateEmployeeResponse.php
index 613145ce7e..79f519f492 100644
--- a/src/gen/lib/Model/CreateEmployeeResponse.php
+++ b/src/gen/lib/Model/CreateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileRequest.php b/src/gen/lib/Model/CreateFileRequest.php
index 976ee3d685..47616802b8 100644
--- a/src/gen/lib/Model/CreateFileRequest.php
+++ b/src/gen/lib/Model/CreateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileResponse.php b/src/gen/lib/Model/CreateFileResponse.php
index ad8383b993..390d95fa03 100644
--- a/src/gen/lib/Model/CreateFileResponse.php
+++ b/src/gen/lib/Model/CreateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderRequest.php b/src/gen/lib/Model/CreateFolderRequest.php
index e16c5e6012..633b97a05e 100644
--- a/src/gen/lib/Model/CreateFolderRequest.php
+++ b/src/gen/lib/Model/CreateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderResponse.php b/src/gen/lib/Model/CreateFolderResponse.php
index 8304389ec6..36382eac92 100644
--- a/src/gen/lib/Model/CreateFolderResponse.php
+++ b/src/gen/lib/Model/CreateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateHrisCompanyResponse.php b/src/gen/lib/Model/CreateHrisCompanyResponse.php
index 0c82f5ab21..77dc72c200 100644
--- a/src/gen/lib/Model/CreateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/CreateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceItemResponse.php b/src/gen/lib/Model/CreateInvoiceItemResponse.php
index 3e66c2ba72..3d37121d71 100644
--- a/src/gen/lib/Model/CreateInvoiceItemResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceResponse.php b/src/gen/lib/Model/CreateInvoiceResponse.php
index 20791a192c..5fcc2295da 100644
--- a/src/gen/lib/Model/CreateInvoiceResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateItemResponse.php b/src/gen/lib/Model/CreateItemResponse.php
index c16e6b079f..4679f4d8cd 100644
--- a/src/gen/lib/Model/CreateItemResponse.php
+++ b/src/gen/lib/Model/CreateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJobResponse.php b/src/gen/lib/Model/CreateJobResponse.php
index 959e3b512e..49d5847caa 100644
--- a/src/gen/lib/Model/CreateJobResponse.php
+++ b/src/gen/lib/Model/CreateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJournalEntryResponse.php b/src/gen/lib/Model/CreateJournalEntryResponse.php
index 281ad80a7c..b8b0bcbcf5 100644
--- a/src/gen/lib/Model/CreateJournalEntryResponse.php
+++ b/src/gen/lib/Model/CreateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLeadResponse.php b/src/gen/lib/Model/CreateLeadResponse.php
index 3af9bd6ac3..3550901b28 100644
--- a/src/gen/lib/Model/CreateLeadResponse.php
+++ b/src/gen/lib/Model/CreateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLedgerAccountResponse.php b/src/gen/lib/Model/CreateLedgerAccountResponse.php
index f7344585ee..f5bf6dcb3d 100644
--- a/src/gen/lib/Model/CreateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/CreateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLocationResponse.php b/src/gen/lib/Model/CreateLocationResponse.php
index f640c7f707..a82be4733f 100644
--- a/src/gen/lib/Model/CreateLocationResponse.php
+++ b/src/gen/lib/Model/CreateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMerchantResponse.php b/src/gen/lib/Model/CreateMerchantResponse.php
index 73220a76d1..ca83cd66d0 100644
--- a/src/gen/lib/Model/CreateMerchantResponse.php
+++ b/src/gen/lib/Model/CreateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMessageResponse.php b/src/gen/lib/Model/CreateMessageResponse.php
index 45f28ef34a..3e1b939dd2 100644
--- a/src/gen/lib/Model/CreateMessageResponse.php
+++ b/src/gen/lib/Model/CreateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierGroupResponse.php b/src/gen/lib/Model/CreateModifierGroupResponse.php
index ca37f99791..8c4c595d2f 100644
--- a/src/gen/lib/Model/CreateModifierGroupResponse.php
+++ b/src/gen/lib/Model/CreateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierResponse.php b/src/gen/lib/Model/CreateModifierResponse.php
index 0c3d9a9bbd..41273ba63c 100644
--- a/src/gen/lib/Model/CreateModifierResponse.php
+++ b/src/gen/lib/Model/CreateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateNoteResponse.php b/src/gen/lib/Model/CreateNoteResponse.php
index 4c152ce1e2..50a28dc069 100644
--- a/src/gen/lib/Model/CreateNoteResponse.php
+++ b/src/gen/lib/Model/CreateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOpportunityResponse.php b/src/gen/lib/Model/CreateOpportunityResponse.php
index fd97899cd4..54babec346 100644
--- a/src/gen/lib/Model/CreateOpportunityResponse.php
+++ b/src/gen/lib/Model/CreateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderResponse.php b/src/gen/lib/Model/CreateOrderResponse.php
index 01cc7eabc9..41e6bad12a 100644
--- a/src/gen/lib/Model/CreateOrderResponse.php
+++ b/src/gen/lib/Model/CreateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderTypeResponse.php b/src/gen/lib/Model/CreateOrderTypeResponse.php
index fb3ae0d7dd..0ff0a09b99 100644
--- a/src/gen/lib/Model/CreateOrderTypeResponse.php
+++ b/src/gen/lib/Model/CreateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePaymentResponse.php b/src/gen/lib/Model/CreatePaymentResponse.php
index d58fb74f3c..fdb9036e95 100644
--- a/src/gen/lib/Model/CreatePaymentResponse.php
+++ b/src/gen/lib/Model/CreatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePipelineResponse.php b/src/gen/lib/Model/CreatePipelineResponse.php
index 9b78add0a0..fdb1ae4057 100644
--- a/src/gen/lib/Model/CreatePipelineResponse.php
+++ b/src/gen/lib/Model/CreatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePosPaymentResponse.php b/src/gen/lib/Model/CreatePosPaymentResponse.php
index f850638b55..e44c9cce4e 100644
--- a/src/gen/lib/Model/CreatePosPaymentResponse.php
+++ b/src/gen/lib/Model/CreatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateProductResponse.php b/src/gen/lib/Model/CreateProductResponse.php
index 0895eb6577..0e4a5d64e9 100644
--- a/src/gen/lib/Model/CreateProductResponse.php
+++ b/src/gen/lib/Model/CreateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePurchaseOrderResponse.php b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
index 6c7e975562..6167605682 100644
--- a/src/gen/lib/Model/CreatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponse.php b/src/gen/lib/Model/CreateSessionResponse.php
index 702cc0c2e3..88974f219a 100644
--- a/src/gen/lib/Model/CreateSessionResponse.php
+++ b/src/gen/lib/Model/CreateSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponseData.php b/src/gen/lib/Model/CreateSessionResponseData.php
index ca3fb12637..5765c5222f 100644
--- a/src/gen/lib/Model/CreateSessionResponseData.php
+++ b/src/gen/lib/Model/CreateSessionResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSharedLinkResponse.php b/src/gen/lib/Model/CreateSharedLinkResponse.php
index f041386c3c..640e776d06 100644
--- a/src/gen/lib/Model/CreateSharedLinkResponse.php
+++ b/src/gen/lib/Model/CreateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSupplierResponse.php b/src/gen/lib/Model/CreateSupplierResponse.php
index 96c89f9061..c999c1243d 100644
--- a/src/gen/lib/Model/CreateSupplierResponse.php
+++ b/src/gen/lib/Model/CreateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTaxRateResponse.php b/src/gen/lib/Model/CreateTaxRateResponse.php
index c70b2df68e..432ef1e5dc 100644
--- a/src/gen/lib/Model/CreateTaxRateResponse.php
+++ b/src/gen/lib/Model/CreateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTenderResponse.php b/src/gen/lib/Model/CreateTenderResponse.php
index 0267f6d1fa..02cf7d644e 100644
--- a/src/gen/lib/Model/CreateTenderResponse.php
+++ b/src/gen/lib/Model/CreateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTicketResponse.php b/src/gen/lib/Model/CreateTicketResponse.php
index d5289bfce0..7f3f29bb57 100644
--- a/src/gen/lib/Model/CreateTicketResponse.php
+++ b/src/gen/lib/Model/CreateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTimeOffRequestResponse.php b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
index 46391eaaf6..262994302f 100644
--- a/src/gen/lib/Model/CreateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionRequest.php b/src/gen/lib/Model/CreateUploadSessionRequest.php
index 630df33851..611971094d 100644
--- a/src/gen/lib/Model/CreateUploadSessionRequest.php
+++ b/src/gen/lib/Model/CreateUploadSessionRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionResponse.php b/src/gen/lib/Model/CreateUploadSessionResponse.php
index 21ab6b3a23..f0340b7375 100644
--- a/src/gen/lib/Model/CreateUploadSessionResponse.php
+++ b/src/gen/lib/Model/CreateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUserResponse.php b/src/gen/lib/Model/CreateUserResponse.php
index d823260bf6..d6e528d121 100644
--- a/src/gen/lib/Model/CreateUserResponse.php
+++ b/src/gen/lib/Model/CreateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookRequest.php b/src/gen/lib/Model/CreateWebhookRequest.php
index c67f848d8b..cd966996fc 100644
--- a/src/gen/lib/Model/CreateWebhookRequest.php
+++ b/src/gen/lib/Model/CreateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookResponse.php b/src/gen/lib/Model/CreateWebhookResponse.php
index da4bcc0aa2..af35317bd6 100644
--- a/src/gen/lib/Model/CreateWebhookResponse.php
+++ b/src/gen/lib/Model/CreateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNote.php b/src/gen/lib/Model/CreditNote.php
index 6c5d071672..103284f4ca 100644
--- a/src/gen/lib/Model/CreditNote.php
+++ b/src/gen/lib/Model/CreditNote.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesFilter.php b/src/gen/lib/Model/CreditNotesFilter.php
index c018344898..7084366200 100644
--- a/src/gen/lib/Model/CreditNotesFilter.php
+++ b/src/gen/lib/Model/CreditNotesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesSort.php b/src/gen/lib/Model/CreditNotesSort.php
index 54b05b14d3..33ecf5ac88 100644
--- a/src/gen/lib/Model/CreditNotesSort.php
+++ b/src/gen/lib/Model/CreditNotesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CrmEventType.php b/src/gen/lib/Model/CrmEventType.php
index c07555b852..b7f4af9d75 100644
--- a/src/gen/lib/Model/CrmEventType.php
+++ b/src/gen/lib/Model/CrmEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Currency.php b/src/gen/lib/Model/Currency.php
index 6574740af6..841263591e 100644
--- a/src/gen/lib/Model/Currency.php
+++ b/src/gen/lib/Model/Currency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomField.php b/src/gen/lib/Model/CustomField.php
index 7472dcc1f1..62d68ca3e3 100644
--- a/src/gen/lib/Model/CustomField.php
+++ b/src/gen/lib/Model/CustomField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomFieldFinder.php b/src/gen/lib/Model/CustomFieldFinder.php
index 63ddf2e2de..218d71d494 100644
--- a/src/gen/lib/Model/CustomFieldFinder.php
+++ b/src/gen/lib/Model/CustomFieldFinder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomMapping.php b/src/gen/lib/Model/CustomMapping.php
index 38b1d37319..81f02a2506 100644
--- a/src/gen/lib/Model/CustomMapping.php
+++ b/src/gen/lib/Model/CustomMapping.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Customer.php b/src/gen/lib/Model/Customer.php
index b23c723350..053e9e80a6 100644
--- a/src/gen/lib/Model/Customer.php
+++ b/src/gen/lib/Model/Customer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersFilter.php b/src/gen/lib/Model/CustomersFilter.php
index ad76d3259a..9dcb7515b4 100644
--- a/src/gen/lib/Model/CustomersFilter.php
+++ b/src/gen/lib/Model/CustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersSort.php b/src/gen/lib/Model/CustomersSort.php
index ebc6bf8544..2758fb9df8 100644
--- a/src/gen/lib/Model/CustomersSort.php
+++ b/src/gen/lib/Model/CustomersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Deduction.php b/src/gen/lib/Model/Deduction.php
index 6a3641998d..3525833b3a 100644
--- a/src/gen/lib/Model/Deduction.php
+++ b/src/gen/lib/Model/Deduction.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteActivityResponse.php b/src/gen/lib/Model/DeleteActivityResponse.php
index b84084c8d1..0af9d95da4 100644
--- a/src/gen/lib/Model/DeleteActivityResponse.php
+++ b/src/gen/lib/Model/DeleteActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicantResponse.php b/src/gen/lib/Model/DeleteApplicantResponse.php
index 19b0585bc6..44715a805c 100644
--- a/src/gen/lib/Model/DeleteApplicantResponse.php
+++ b/src/gen/lib/Model/DeleteApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicationResponse.php b/src/gen/lib/Model/DeleteApplicationResponse.php
index 6b0b1060c1..fa8bddba9b 100644
--- a/src/gen/lib/Model/DeleteApplicationResponse.php
+++ b/src/gen/lib/Model/DeleteApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteBillResponse.php b/src/gen/lib/Model/DeleteBillResponse.php
index 5bcb724f76..7167fce068 100644
--- a/src/gen/lib/Model/DeleteBillResponse.php
+++ b/src/gen/lib/Model/DeleteBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCommentResponse.php b/src/gen/lib/Model/DeleteCommentResponse.php
index 6b72114a12..41dd411cca 100644
--- a/src/gen/lib/Model/DeleteCommentResponse.php
+++ b/src/gen/lib/Model/DeleteCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCompanyResponse.php b/src/gen/lib/Model/DeleteCompanyResponse.php
index 1bb7e3c09c..e60877d9dc 100644
--- a/src/gen/lib/Model/DeleteCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteConsumerResponse.php b/src/gen/lib/Model/DeleteConsumerResponse.php
index c5dbf6cc5b..76bbba4c15 100644
--- a/src/gen/lib/Model/DeleteConsumerResponse.php
+++ b/src/gen/lib/Model/DeleteConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteContactResponse.php b/src/gen/lib/Model/DeleteContactResponse.php
index 933d47e170..7d157f1e78 100644
--- a/src/gen/lib/Model/DeleteContactResponse.php
+++ b/src/gen/lib/Model/DeleteContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCreditNoteResponse.php b/src/gen/lib/Model/DeleteCreditNoteResponse.php
index 93385e3d83..331fdcb6d6 100644
--- a/src/gen/lib/Model/DeleteCreditNoteResponse.php
+++ b/src/gen/lib/Model/DeleteCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCustomerResponse.php b/src/gen/lib/Model/DeleteCustomerResponse.php
index da79fda170..d244065bfa 100644
--- a/src/gen/lib/Model/DeleteCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDepartmentResponse.php b/src/gen/lib/Model/DeleteDepartmentResponse.php
index e0ba9656fc..08f9947740 100644
--- a/src/gen/lib/Model/DeleteDepartmentResponse.php
+++ b/src/gen/lib/Model/DeleteDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveGroupResponse.php b/src/gen/lib/Model/DeleteDriveGroupResponse.php
index 084ae86efe..d92c780db1 100644
--- a/src/gen/lib/Model/DeleteDriveGroupResponse.php
+++ b/src/gen/lib/Model/DeleteDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveResponse.php b/src/gen/lib/Model/DeleteDriveResponse.php
index 5d33179f6e..e86d31deac 100644
--- a/src/gen/lib/Model/DeleteDriveResponse.php
+++ b/src/gen/lib/Model/DeleteDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
index 698fe88544..fec52ff747 100644
--- a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
index 38061a16a3..307f74cc9d 100644
--- a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEmployeeResponse.php b/src/gen/lib/Model/DeleteEmployeeResponse.php
index 635517fe13..0ee924797c 100644
--- a/src/gen/lib/Model/DeleteEmployeeResponse.php
+++ b/src/gen/lib/Model/DeleteEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFileResponse.php b/src/gen/lib/Model/DeleteFileResponse.php
index 010511a88d..ac012af88c 100644
--- a/src/gen/lib/Model/DeleteFileResponse.php
+++ b/src/gen/lib/Model/DeleteFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFolderResponse.php b/src/gen/lib/Model/DeleteFolderResponse.php
index 71d68d70e6..016aa61d6e 100644
--- a/src/gen/lib/Model/DeleteFolderResponse.php
+++ b/src/gen/lib/Model/DeleteFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteHrisCompanyResponse.php b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
index be3cc170fa..3d0d52d117 100644
--- a/src/gen/lib/Model/DeleteHrisCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteInvoiceResponse.php b/src/gen/lib/Model/DeleteInvoiceResponse.php
index a7602e1391..4ebb089e6f 100644
--- a/src/gen/lib/Model/DeleteInvoiceResponse.php
+++ b/src/gen/lib/Model/DeleteInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteItemResponse.php b/src/gen/lib/Model/DeleteItemResponse.php
index 1dab0b2bb2..a100556ecf 100644
--- a/src/gen/lib/Model/DeleteItemResponse.php
+++ b/src/gen/lib/Model/DeleteItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJobResponse.php b/src/gen/lib/Model/DeleteJobResponse.php
index 9f4eecd17f..e206bee9d5 100644
--- a/src/gen/lib/Model/DeleteJobResponse.php
+++ b/src/gen/lib/Model/DeleteJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJournalEntryResponse.php b/src/gen/lib/Model/DeleteJournalEntryResponse.php
index 5bec0fabd4..390a8014fe 100644
--- a/src/gen/lib/Model/DeleteJournalEntryResponse.php
+++ b/src/gen/lib/Model/DeleteJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLeadResponse.php b/src/gen/lib/Model/DeleteLeadResponse.php
index 4d1b3ddc76..0a8a562adc 100644
--- a/src/gen/lib/Model/DeleteLeadResponse.php
+++ b/src/gen/lib/Model/DeleteLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLedgerAccountResponse.php b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
index 59a3be1cfb..4bf6fedfdf 100644
--- a/src/gen/lib/Model/DeleteLedgerAccountResponse.php
+++ b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLocationResponse.php b/src/gen/lib/Model/DeleteLocationResponse.php
index bd1ba72426..820d9948c5 100644
--- a/src/gen/lib/Model/DeleteLocationResponse.php
+++ b/src/gen/lib/Model/DeleteLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMerchantResponse.php b/src/gen/lib/Model/DeleteMerchantResponse.php
index 4da571cb78..5b39a5389f 100644
--- a/src/gen/lib/Model/DeleteMerchantResponse.php
+++ b/src/gen/lib/Model/DeleteMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMessageResponse.php b/src/gen/lib/Model/DeleteMessageResponse.php
index 796aa8194f..758335a7bb 100644
--- a/src/gen/lib/Model/DeleteMessageResponse.php
+++ b/src/gen/lib/Model/DeleteMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierGroupResponse.php b/src/gen/lib/Model/DeleteModifierGroupResponse.php
index dee0a35b4f..ad4604a87d 100644
--- a/src/gen/lib/Model/DeleteModifierGroupResponse.php
+++ b/src/gen/lib/Model/DeleteModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierResponse.php b/src/gen/lib/Model/DeleteModifierResponse.php
index 9ad48ff0ee..a7254a6759 100644
--- a/src/gen/lib/Model/DeleteModifierResponse.php
+++ b/src/gen/lib/Model/DeleteModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteNoteResponse.php b/src/gen/lib/Model/DeleteNoteResponse.php
index 4e2f8d38d0..07cb308f76 100644
--- a/src/gen/lib/Model/DeleteNoteResponse.php
+++ b/src/gen/lib/Model/DeleteNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOpportunityResponse.php b/src/gen/lib/Model/DeleteOpportunityResponse.php
index 7ee5853320..4534edc884 100644
--- a/src/gen/lib/Model/DeleteOpportunityResponse.php
+++ b/src/gen/lib/Model/DeleteOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderResponse.php b/src/gen/lib/Model/DeleteOrderResponse.php
index 4186c357c3..d771ea81da 100644
--- a/src/gen/lib/Model/DeleteOrderResponse.php
+++ b/src/gen/lib/Model/DeleteOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderTypeResponse.php b/src/gen/lib/Model/DeleteOrderTypeResponse.php
index 7d0b93d3b2..642c3e5e08 100644
--- a/src/gen/lib/Model/DeleteOrderTypeResponse.php
+++ b/src/gen/lib/Model/DeleteOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePaymentResponse.php b/src/gen/lib/Model/DeletePaymentResponse.php
index de77483240..260de7da15 100644
--- a/src/gen/lib/Model/DeletePaymentResponse.php
+++ b/src/gen/lib/Model/DeletePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePipelineResponse.php b/src/gen/lib/Model/DeletePipelineResponse.php
index acf699e703..f69fffb5bb 100644
--- a/src/gen/lib/Model/DeletePipelineResponse.php
+++ b/src/gen/lib/Model/DeletePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePosPaymentResponse.php b/src/gen/lib/Model/DeletePosPaymentResponse.php
index 798cb2ab23..f4f6753e4b 100644
--- a/src/gen/lib/Model/DeletePosPaymentResponse.php
+++ b/src/gen/lib/Model/DeletePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteProductResponse.php b/src/gen/lib/Model/DeleteProductResponse.php
index ae6295dbb2..6aac9dc4a9 100644
--- a/src/gen/lib/Model/DeleteProductResponse.php
+++ b/src/gen/lib/Model/DeleteProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePurchaseOrderResponse.php b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
index 65b9dd8b14..2f259988e2 100644
--- a/src/gen/lib/Model/DeletePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSharedLinkResponse.php b/src/gen/lib/Model/DeleteSharedLinkResponse.php
index 7e694e7988..7a98482552 100644
--- a/src/gen/lib/Model/DeleteSharedLinkResponse.php
+++ b/src/gen/lib/Model/DeleteSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSupplierResponse.php b/src/gen/lib/Model/DeleteSupplierResponse.php
index ac9c651e51..1697f12db2 100644
--- a/src/gen/lib/Model/DeleteSupplierResponse.php
+++ b/src/gen/lib/Model/DeleteSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTaxRateResponse.php b/src/gen/lib/Model/DeleteTaxRateResponse.php
index cceb25b924..7d166861c1 100644
--- a/src/gen/lib/Model/DeleteTaxRateResponse.php
+++ b/src/gen/lib/Model/DeleteTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTenderResponse.php b/src/gen/lib/Model/DeleteTenderResponse.php
index fd4c60d3d8..26d3791182 100644
--- a/src/gen/lib/Model/DeleteTenderResponse.php
+++ b/src/gen/lib/Model/DeleteTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTicketResponse.php b/src/gen/lib/Model/DeleteTicketResponse.php
index 0de347d656..8f6d3ee340 100644
--- a/src/gen/lib/Model/DeleteTicketResponse.php
+++ b/src/gen/lib/Model/DeleteTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
index 9744a196b7..87c8a4f50f 100644
--- a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUploadSessionResponse.php b/src/gen/lib/Model/DeleteUploadSessionResponse.php
index bf1b88db40..6a06edf226 100644
--- a/src/gen/lib/Model/DeleteUploadSessionResponse.php
+++ b/src/gen/lib/Model/DeleteUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUserResponse.php b/src/gen/lib/Model/DeleteUserResponse.php
index 423836af58..93e9327a5a 100644
--- a/src/gen/lib/Model/DeleteUserResponse.php
+++ b/src/gen/lib/Model/DeleteUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteWebhookResponse.php b/src/gen/lib/Model/DeleteWebhookResponse.php
index 12124c6408..f707c8104c 100644
--- a/src/gen/lib/Model/DeleteWebhookResponse.php
+++ b/src/gen/lib/Model/DeleteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Department.php b/src/gen/lib/Model/Department.php
index 83b3637537..8da7255191 100644
--- a/src/gen/lib/Model/Department.php
+++ b/src/gen/lib/Model/Department.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Drive.php b/src/gen/lib/Model/Drive.php
index e4fb72cb5e..5f252d5519 100644
--- a/src/gen/lib/Model/Drive.php
+++ b/src/gen/lib/Model/Drive.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroup.php b/src/gen/lib/Model/DriveGroup.php
index 394d357e0c..2482ae9a39 100644
--- a/src/gen/lib/Model/DriveGroup.php
+++ b/src/gen/lib/Model/DriveGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroupsFilter.php b/src/gen/lib/Model/DriveGroupsFilter.php
index 99caa2bcc3..c9f8fc9640 100644
--- a/src/gen/lib/Model/DriveGroupsFilter.php
+++ b/src/gen/lib/Model/DriveGroupsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DrivesFilter.php b/src/gen/lib/Model/DrivesFilter.php
index 111b36136f..c9cfe673cd 100644
--- a/src/gen/lib/Model/DrivesFilter.php
+++ b/src/gen/lib/Model/DrivesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceAddress.php b/src/gen/lib/Model/EcommerceAddress.php
index 914105d17c..daa420a86e 100644
--- a/src/gen/lib/Model/EcommerceAddress.php
+++ b/src/gen/lib/Model/EcommerceAddress.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomer.php b/src/gen/lib/Model/EcommerceCustomer.php
index 9951dde740..07ec6bcd15 100644
--- a/src/gen/lib/Model/EcommerceCustomer.php
+++ b/src/gen/lib/Model/EcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomerAddresses.php b/src/gen/lib/Model/EcommerceCustomerAddresses.php
index 2f633811d8..d270f2d078 100644
--- a/src/gen/lib/Model/EcommerceCustomerAddresses.php
+++ b/src/gen/lib/Model/EcommerceCustomerAddresses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomersFilter.php b/src/gen/lib/Model/EcommerceCustomersFilter.php
index 642a424270..767ae27220 100644
--- a/src/gen/lib/Model/EcommerceCustomersFilter.php
+++ b/src/gen/lib/Model/EcommerceCustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceDiscount.php b/src/gen/lib/Model/EcommerceDiscount.php
index fb937b25a5..c61756e71a 100644
--- a/src/gen/lib/Model/EcommerceDiscount.php
+++ b/src/gen/lib/Model/EcommerceDiscount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrder.php b/src/gen/lib/Model/EcommerceOrder.php
index b94fc6ee0d..e7d1d6cfd4 100644
--- a/src/gen/lib/Model/EcommerceOrder.php
+++ b/src/gen/lib/Model/EcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderLineItem.php b/src/gen/lib/Model/EcommerceOrderLineItem.php
index 4fe2a9597b..9b52e97c28 100644
--- a/src/gen/lib/Model/EcommerceOrderLineItem.php
+++ b/src/gen/lib/Model/EcommerceOrderLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderStatus.php b/src/gen/lib/Model/EcommerceOrderStatus.php
index 3accc26b30..8e6d9eb938 100644
--- a/src/gen/lib/Model/EcommerceOrderStatus.php
+++ b/src/gen/lib/Model/EcommerceOrderStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrdersFilter.php b/src/gen/lib/Model/EcommerceOrdersFilter.php
index b8220b206a..06d824472d 100644
--- a/src/gen/lib/Model/EcommerceOrdersFilter.php
+++ b/src/gen/lib/Model/EcommerceOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProduct.php b/src/gen/lib/Model/EcommerceProduct.php
index 8ae75f3d0e..d1213b94f1 100644
--- a/src/gen/lib/Model/EcommerceProduct.php
+++ b/src/gen/lib/Model/EcommerceProduct.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductCategories.php b/src/gen/lib/Model/EcommerceProductCategories.php
index 41d250da8e..9a83d200ec 100644
--- a/src/gen/lib/Model/EcommerceProductCategories.php
+++ b/src/gen/lib/Model/EcommerceProductCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages.php b/src/gen/lib/Model/EcommerceProductImages.php
index b489489a3f..26c75beecc 100644
--- a/src/gen/lib/Model/EcommerceProductImages.php
+++ b/src/gen/lib/Model/EcommerceProductImages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages1.php b/src/gen/lib/Model/EcommerceProductImages1.php
index 3f907a22b3..14cd7b84e2 100644
--- a/src/gen/lib/Model/EcommerceProductImages1.php
+++ b/src/gen/lib/Model/EcommerceProductImages1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions.php b/src/gen/lib/Model/EcommerceProductOptions.php
index b8c713f1e0..ce915fe31c 100644
--- a/src/gen/lib/Model/EcommerceProductOptions.php
+++ b/src/gen/lib/Model/EcommerceProductOptions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions1.php b/src/gen/lib/Model/EcommerceProductOptions1.php
index 1dede70b9c..13875f02fd 100644
--- a/src/gen/lib/Model/EcommerceProductOptions1.php
+++ b/src/gen/lib/Model/EcommerceProductOptions1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductVariants.php b/src/gen/lib/Model/EcommerceProductVariants.php
index 29bc9f9450..50e828db9e 100644
--- a/src/gen/lib/Model/EcommerceProductVariants.php
+++ b/src/gen/lib/Model/EcommerceProductVariants.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceStore.php b/src/gen/lib/Model/EcommerceStore.php
index b031ac6953..810fa6d34f 100644
--- a/src/gen/lib/Model/EcommerceStore.php
+++ b/src/gen/lib/Model/EcommerceStore.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Email.php b/src/gen/lib/Model/Email.php
index e84eb12586..4c806c12e0 100644
--- a/src/gen/lib/Model/Email.php
+++ b/src/gen/lib/Model/Email.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Employee.php b/src/gen/lib/Model/Employee.php
index 531f57c730..8d3175932f 100644
--- a/src/gen/lib/Model/Employee.php
+++ b/src/gen/lib/Model/Employee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeCompensation.php b/src/gen/lib/Model/EmployeeCompensation.php
index 25bd972d6d..f665724699 100644
--- a/src/gen/lib/Model/EmployeeCompensation.php
+++ b/src/gen/lib/Model/EmployeeCompensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeEmploymentRole.php b/src/gen/lib/Model/EmployeeEmploymentRole.php
index 753715f894..011e35903d 100644
--- a/src/gen/lib/Model/EmployeeEmploymentRole.php
+++ b/src/gen/lib/Model/EmployeeEmploymentRole.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeJob.php b/src/gen/lib/Model/EmployeeJob.php
index 225d216a6f..336d8db84e 100644
--- a/src/gen/lib/Model/EmployeeJob.php
+++ b/src/gen/lib/Model/EmployeeJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeList.php b/src/gen/lib/Model/EmployeeList.php
index 1e7a587f04..e24889c0d4 100644
--- a/src/gen/lib/Model/EmployeeList.php
+++ b/src/gen/lib/Model/EmployeeList.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeManager.php b/src/gen/lib/Model/EmployeeManager.php
index 7294b5492c..c0ca96c399 100644
--- a/src/gen/lib/Model/EmployeeManager.php
+++ b/src/gen/lib/Model/EmployeeManager.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeePayroll.php b/src/gen/lib/Model/EmployeePayroll.php
index dd75d9105c..ba05891c13 100644
--- a/src/gen/lib/Model/EmployeePayroll.php
+++ b/src/gen/lib/Model/EmployeePayroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeSchedules.php b/src/gen/lib/Model/EmployeeSchedules.php
index 535df05dc3..d1af6c095d 100644
--- a/src/gen/lib/Model/EmployeeSchedules.php
+++ b/src/gen/lib/Model/EmployeeSchedules.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesFilter.php b/src/gen/lib/Model/EmployeesFilter.php
index a726dbdfca..43234c7962 100644
--- a/src/gen/lib/Model/EmployeesFilter.php
+++ b/src/gen/lib/Model/EmployeesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesSort.php b/src/gen/lib/Model/EmployeesSort.php
index d39a234c4e..681c95b362 100644
--- a/src/gen/lib/Model/EmployeesSort.php
+++ b/src/gen/lib/Model/EmployeesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmploymentStatus.php b/src/gen/lib/Model/EmploymentStatus.php
index e3caeceb67..b371fff539 100644
--- a/src/gen/lib/Model/EmploymentStatus.php
+++ b/src/gen/lib/Model/EmploymentStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Error.php b/src/gen/lib/Model/Error.php
index 72132fed70..6cdd88c8af 100644
--- a/src/gen/lib/Model/Error.php
+++ b/src/gen/lib/Model/Error.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ExecuteWebhookResponse.php b/src/gen/lib/Model/ExecuteWebhookResponse.php
index 4391fb8347..7824030bfb 100644
--- a/src/gen/lib/Model/ExecuteWebhookResponse.php
+++ b/src/gen/lib/Model/ExecuteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileStorageEventType.php b/src/gen/lib/Model/FileStorageEventType.php
index ae04ea2e06..b78b797b10 100644
--- a/src/gen/lib/Model/FileStorageEventType.php
+++ b/src/gen/lib/Model/FileStorageEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileType.php b/src/gen/lib/Model/FileType.php
index b38a3e73c5..bd80edb4f7 100644
--- a/src/gen/lib/Model/FileType.php
+++ b/src/gen/lib/Model/FileType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesFilter.php b/src/gen/lib/Model/FilesFilter.php
index 3c85a70cd0..c67b6d77dd 100644
--- a/src/gen/lib/Model/FilesFilter.php
+++ b/src/gen/lib/Model/FilesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSearch.php b/src/gen/lib/Model/FilesSearch.php
index 90e1720fdd..6ac1a6af8e 100644
--- a/src/gen/lib/Model/FilesSearch.php
+++ b/src/gen/lib/Model/FilesSearch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSort.php b/src/gen/lib/Model/FilesSort.php
index a605db26f1..2e9e021a89 100644
--- a/src/gen/lib/Model/FilesSort.php
+++ b/src/gen/lib/Model/FilesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Folder.php b/src/gen/lib/Model/Folder.php
index 190ada87e5..434835b9bb 100644
--- a/src/gen/lib/Model/Folder.php
+++ b/src/gen/lib/Model/Folder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormField.php b/src/gen/lib/Model/FormField.php
index 710c1ea9fa..b761203397 100644
--- a/src/gen/lib/Model/FormField.php
+++ b/src/gen/lib/Model/FormField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOption.php b/src/gen/lib/Model/FormFieldOption.php
index 75541cff3d..e030751f15 100644
--- a/src/gen/lib/Model/FormFieldOption.php
+++ b/src/gen/lib/Model/FormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOptionGroup.php b/src/gen/lib/Model/FormFieldOptionGroup.php
index 6ef194de2b..dfcdaf015a 100644
--- a/src/gen/lib/Model/FormFieldOptionGroup.php
+++ b/src/gen/lib/Model/FormFieldOptionGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Gender.php b/src/gen/lib/Model/Gender.php
index c7a2addb6e..2136b0a2d6 100644
--- a/src/gen/lib/Model/Gender.php
+++ b/src/gen/lib/Model/Gender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetActivitiesResponse.php b/src/gen/lib/Model/GetActivitiesResponse.php
index a5b170b4d6..6e6db1353e 100644
--- a/src/gen/lib/Model/GetActivitiesResponse.php
+++ b/src/gen/lib/Model/GetActivitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetActivityResponse.php b/src/gen/lib/Model/GetActivityResponse.php
index 7dabb538c8..b04787b292 100644
--- a/src/gen/lib/Model/GetActivityResponse.php
+++ b/src/gen/lib/Model/GetActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceCoverageResponse.php b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
index 418f24ab51..38c189973f 100644
--- a/src/gen/lib/Model/GetApiResourceCoverageResponse.php
+++ b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceResponse.php b/src/gen/lib/Model/GetApiResourceResponse.php
index 6147002c03..d254993305 100644
--- a/src/gen/lib/Model/GetApiResourceResponse.php
+++ b/src/gen/lib/Model/GetApiResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResponse.php b/src/gen/lib/Model/GetApiResponse.php
index 049a995854..ddc5c82e03 100644
--- a/src/gen/lib/Model/GetApiResponse.php
+++ b/src/gen/lib/Model/GetApiResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApisResponse.php b/src/gen/lib/Model/GetApisResponse.php
index 513d8f13a2..e5c3b7974a 100644
--- a/src/gen/lib/Model/GetApisResponse.php
+++ b/src/gen/lib/Model/GetApisResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantResponse.php b/src/gen/lib/Model/GetApplicantResponse.php
index 36b2aad946..b89d15866e 100644
--- a/src/gen/lib/Model/GetApplicantResponse.php
+++ b/src/gen/lib/Model/GetApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantsResponse.php b/src/gen/lib/Model/GetApplicantsResponse.php
index 74fc20a024..1a4e9e8ae7 100644
--- a/src/gen/lib/Model/GetApplicantsResponse.php
+++ b/src/gen/lib/Model/GetApplicantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationResponse.php b/src/gen/lib/Model/GetApplicationResponse.php
index cb084684a7..06ea52475d 100644
--- a/src/gen/lib/Model/GetApplicationResponse.php
+++ b/src/gen/lib/Model/GetApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationsResponse.php b/src/gen/lib/Model/GetApplicationsResponse.php
index 168771a652..377dfce7a1 100644
--- a/src/gen/lib/Model/GetApplicationsResponse.php
+++ b/src/gen/lib/Model/GetApplicationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBalanceSheetResponse.php b/src/gen/lib/Model/GetBalanceSheetResponse.php
index aa572bbabf..d9b0bf4835 100644
--- a/src/gen/lib/Model/GetBalanceSheetResponse.php
+++ b/src/gen/lib/Model/GetBalanceSheetResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillResponse.php b/src/gen/lib/Model/GetBillResponse.php
index 63f9939339..93a4145435 100644
--- a/src/gen/lib/Model/GetBillResponse.php
+++ b/src/gen/lib/Model/GetBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillsResponse.php b/src/gen/lib/Model/GetBillsResponse.php
index e238047551..d946421f75 100644
--- a/src/gen/lib/Model/GetBillsResponse.php
+++ b/src/gen/lib/Model/GetBillsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionResponse.php b/src/gen/lib/Model/GetCollectionResponse.php
index d9fc1f8f69..a9a2d50ad2 100644
--- a/src/gen/lib/Model/GetCollectionResponse.php
+++ b/src/gen/lib/Model/GetCollectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionTagsResponse.php b/src/gen/lib/Model/GetCollectionTagsResponse.php
index b14ab0d610..c544ea50a0 100644
--- a/src/gen/lib/Model/GetCollectionTagsResponse.php
+++ b/src/gen/lib/Model/GetCollectionTagsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUserResponse.php b/src/gen/lib/Model/GetCollectionUserResponse.php
index 36dd686e0b..3c1f71f219 100644
--- a/src/gen/lib/Model/GetCollectionUserResponse.php
+++ b/src/gen/lib/Model/GetCollectionUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUsersResponse.php b/src/gen/lib/Model/GetCollectionUsersResponse.php
index a87ae6c710..cf823665aa 100644
--- a/src/gen/lib/Model/GetCollectionUsersResponse.php
+++ b/src/gen/lib/Model/GetCollectionUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionsResponse.php b/src/gen/lib/Model/GetCollectionsResponse.php
index bcde6b54c4..f76c3dec86 100644
--- a/src/gen/lib/Model/GetCollectionsResponse.php
+++ b/src/gen/lib/Model/GetCollectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentResponse.php b/src/gen/lib/Model/GetCommentResponse.php
index 612ede0d88..27da2d0f74 100644
--- a/src/gen/lib/Model/GetCommentResponse.php
+++ b/src/gen/lib/Model/GetCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentsResponse.php b/src/gen/lib/Model/GetCommentsResponse.php
index 51c9fe0d6e..d2db2fdd6c 100644
--- a/src/gen/lib/Model/GetCommentsResponse.php
+++ b/src/gen/lib/Model/GetCommentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompaniesResponse.php b/src/gen/lib/Model/GetCompaniesResponse.php
index 74ef0adcd9..2d236e2d1e 100644
--- a/src/gen/lib/Model/GetCompaniesResponse.php
+++ b/src/gen/lib/Model/GetCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyInfoResponse.php b/src/gen/lib/Model/GetCompanyInfoResponse.php
index b3c818d894..5b6289c550 100644
--- a/src/gen/lib/Model/GetCompanyInfoResponse.php
+++ b/src/gen/lib/Model/GetCompanyInfoResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyResponse.php b/src/gen/lib/Model/GetCompanyResponse.php
index bfd87a0233..726bb9dc15 100644
--- a/src/gen/lib/Model/GetCompanyResponse.php
+++ b/src/gen/lib/Model/GetCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionResponse.php b/src/gen/lib/Model/GetConnectionResponse.php
index aa60e7f2f4..71e91d482d 100644
--- a/src/gen/lib/Model/GetConnectionResponse.php
+++ b/src/gen/lib/Model/GetConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionsResponse.php b/src/gen/lib/Model/GetConnectionsResponse.php
index 9cd54d1e9a..5ea750a83f 100644
--- a/src/gen/lib/Model/GetConnectionsResponse.php
+++ b/src/gen/lib/Model/GetConnectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
index 90e1147c1c..155bf74991 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
index 9fbd1c1f3f..eeee89f999 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceResponse.php b/src/gen/lib/Model/GetConnectorResourceResponse.php
index a1a3f29a9a..eca806fb49 100644
--- a/src/gen/lib/Model/GetConnectorResourceResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
index ff8a552a02..6f0552f885 100644
--- a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResponse.php b/src/gen/lib/Model/GetConnectorResponse.php
index 28b9f17c50..35b58fc2a7 100644
--- a/src/gen/lib/Model/GetConnectorResponse.php
+++ b/src/gen/lib/Model/GetConnectorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorsResponse.php b/src/gen/lib/Model/GetConnectorsResponse.php
index 13e550b7fc..c25e41a397 100644
--- a/src/gen/lib/Model/GetConnectorsResponse.php
+++ b/src/gen/lib/Model/GetConnectorsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumerResponse.php b/src/gen/lib/Model/GetConsumerResponse.php
index 0aa16a819b..6b57b0dbde 100644
--- a/src/gen/lib/Model/GetConsumerResponse.php
+++ b/src/gen/lib/Model/GetConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponse.php b/src/gen/lib/Model/GetConsumersResponse.php
index c94db6d459..7dde97c084 100644
--- a/src/gen/lib/Model/GetConsumersResponse.php
+++ b/src/gen/lib/Model/GetConsumersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponseData.php b/src/gen/lib/Model/GetConsumersResponseData.php
index 1df10fd844..8c1a9d897e 100644
--- a/src/gen/lib/Model/GetConsumersResponseData.php
+++ b/src/gen/lib/Model/GetConsumersResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactResponse.php b/src/gen/lib/Model/GetContactResponse.php
index f3ab783b89..968ddc3bd8 100644
--- a/src/gen/lib/Model/GetContactResponse.php
+++ b/src/gen/lib/Model/GetContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactsResponse.php b/src/gen/lib/Model/GetContactsResponse.php
index b4fe39ea80..da283e5588 100644
--- a/src/gen/lib/Model/GetContactsResponse.php
+++ b/src/gen/lib/Model/GetContactsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNoteResponse.php b/src/gen/lib/Model/GetCreditNoteResponse.php
index 05acf9be14..120214fe3a 100644
--- a/src/gen/lib/Model/GetCreditNoteResponse.php
+++ b/src/gen/lib/Model/GetCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNotesResponse.php b/src/gen/lib/Model/GetCreditNotesResponse.php
index bb9832df02..f2ed1e2f45 100644
--- a/src/gen/lib/Model/GetCreditNotesResponse.php
+++ b/src/gen/lib/Model/GetCreditNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomFieldsResponse.php b/src/gen/lib/Model/GetCustomFieldsResponse.php
index 7c43b9dbb7..d107623e50 100644
--- a/src/gen/lib/Model/GetCustomFieldsResponse.php
+++ b/src/gen/lib/Model/GetCustomFieldsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomMappingResponse.php b/src/gen/lib/Model/GetCustomMappingResponse.php
index 04fddc3cc5..a0b6e5a018 100644
--- a/src/gen/lib/Model/GetCustomMappingResponse.php
+++ b/src/gen/lib/Model/GetCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomerResponse.php b/src/gen/lib/Model/GetCustomerResponse.php
index 50ab689d45..aa17231f33 100644
--- a/src/gen/lib/Model/GetCustomerResponse.php
+++ b/src/gen/lib/Model/GetCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomersResponse.php b/src/gen/lib/Model/GetCustomersResponse.php
index 550f983664..62894bcde3 100644
--- a/src/gen/lib/Model/GetCustomersResponse.php
+++ b/src/gen/lib/Model/GetCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentResponse.php b/src/gen/lib/Model/GetDepartmentResponse.php
index e892fa757c..a17af2fd4a 100644
--- a/src/gen/lib/Model/GetDepartmentResponse.php
+++ b/src/gen/lib/Model/GetDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentsResponse.php b/src/gen/lib/Model/GetDepartmentsResponse.php
index 4faeb985bf..82d5cc588b 100644
--- a/src/gen/lib/Model/GetDepartmentsResponse.php
+++ b/src/gen/lib/Model/GetDepartmentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupResponse.php b/src/gen/lib/Model/GetDriveGroupResponse.php
index 33325757a8..8ae0f3a991 100644
--- a/src/gen/lib/Model/GetDriveGroupResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupsResponse.php b/src/gen/lib/Model/GetDriveGroupsResponse.php
index 8950a63252..cd2ec384d7 100644
--- a/src/gen/lib/Model/GetDriveGroupsResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveResponse.php b/src/gen/lib/Model/GetDriveResponse.php
index de5ce6740d..708a1821d0 100644
--- a/src/gen/lib/Model/GetDriveResponse.php
+++ b/src/gen/lib/Model/GetDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDrivesResponse.php b/src/gen/lib/Model/GetDrivesResponse.php
index 24bf2181ca..df5f4a2d71 100644
--- a/src/gen/lib/Model/GetDrivesResponse.php
+++ b/src/gen/lib/Model/GetDrivesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomerResponse.php b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
index 5132ee9430..d47cd224d5 100644
--- a/src/gen/lib/Model/GetEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomersResponse.php b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
index d4e9d50cf4..e77375f83f 100644
--- a/src/gen/lib/Model/GetEcommerceCustomersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrderResponse.php b/src/gen/lib/Model/GetEcommerceOrderResponse.php
index bb7727890a..44af677f01 100644
--- a/src/gen/lib/Model/GetEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrdersResponse.php b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
index 5cef313b10..ba58df2ab9 100644
--- a/src/gen/lib/Model/GetEcommerceOrdersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollResponse.php b/src/gen/lib/Model/GetEmployeePayrollResponse.php
index bdc9bda882..ebe99f1ea1 100644
--- a/src/gen/lib/Model/GetEmployeePayrollResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollsResponse.php b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
index a9a9f32c05..fba2636633 100644
--- a/src/gen/lib/Model/GetEmployeePayrollsResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeResponse.php b/src/gen/lib/Model/GetEmployeeResponse.php
index 80de076901..c90e7dcb65 100644
--- a/src/gen/lib/Model/GetEmployeeResponse.php
+++ b/src/gen/lib/Model/GetEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
index 580e5ecd58..1271c8075c 100644
--- a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
+++ b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeesResponse.php b/src/gen/lib/Model/GetEmployeesResponse.php
index fd2f144baf..4db39c7025 100644
--- a/src/gen/lib/Model/GetEmployeesResponse.php
+++ b/src/gen/lib/Model/GetEmployeesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFileResponse.php b/src/gen/lib/Model/GetFileResponse.php
index ccb5fe1faa..7d8121839d 100644
--- a/src/gen/lib/Model/GetFileResponse.php
+++ b/src/gen/lib/Model/GetFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFilesResponse.php b/src/gen/lib/Model/GetFilesResponse.php
index 5e6b6cd137..86eeefc6a2 100644
--- a/src/gen/lib/Model/GetFilesResponse.php
+++ b/src/gen/lib/Model/GetFilesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFolderResponse.php b/src/gen/lib/Model/GetFolderResponse.php
index 389f08d586..fb0ba44221 100644
--- a/src/gen/lib/Model/GetFolderResponse.php
+++ b/src/gen/lib/Model/GetFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFoldersResponse.php b/src/gen/lib/Model/GetFoldersResponse.php
index b75412f05c..4b359a4235 100644
--- a/src/gen/lib/Model/GetFoldersResponse.php
+++ b/src/gen/lib/Model/GetFoldersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompaniesResponse.php b/src/gen/lib/Model/GetHrisCompaniesResponse.php
index c0fc139c11..0332b16ce9 100644
--- a/src/gen/lib/Model/GetHrisCompaniesResponse.php
+++ b/src/gen/lib/Model/GetHrisCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompanyResponse.php b/src/gen/lib/Model/GetHrisCompanyResponse.php
index 1773a530f7..6f8b3a1924 100644
--- a/src/gen/lib/Model/GetHrisCompanyResponse.php
+++ b/src/gen/lib/Model/GetHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobResponse.php b/src/gen/lib/Model/GetHrisJobResponse.php
index 95ecfe89fa..1f540d28a7 100644
--- a/src/gen/lib/Model/GetHrisJobResponse.php
+++ b/src/gen/lib/Model/GetHrisJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobsResponse.php b/src/gen/lib/Model/GetHrisJobsResponse.php
index 59e4252742..080ea530a5 100644
--- a/src/gen/lib/Model/GetHrisJobsResponse.php
+++ b/src/gen/lib/Model/GetHrisJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemResponse.php b/src/gen/lib/Model/GetInvoiceItemResponse.php
index 141bfb1bba..59b77cc78f 100644
--- a/src/gen/lib/Model/GetInvoiceItemResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemsResponse.php b/src/gen/lib/Model/GetInvoiceItemsResponse.php
index b42bb22094..7a8924665c 100644
--- a/src/gen/lib/Model/GetInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceResponse.php b/src/gen/lib/Model/GetInvoiceResponse.php
index f3fa5f54f3..c95360c944 100644
--- a/src/gen/lib/Model/GetInvoiceResponse.php
+++ b/src/gen/lib/Model/GetInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoicesResponse.php b/src/gen/lib/Model/GetInvoicesResponse.php
index 6bdc84f073..906090a3c1 100644
--- a/src/gen/lib/Model/GetInvoicesResponse.php
+++ b/src/gen/lib/Model/GetInvoicesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemResponse.php b/src/gen/lib/Model/GetItemResponse.php
index 8b3200928c..8941717534 100644
--- a/src/gen/lib/Model/GetItemResponse.php
+++ b/src/gen/lib/Model/GetItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemsResponse.php b/src/gen/lib/Model/GetItemsResponse.php
index 963cbed4df..d4c0260f62 100644
--- a/src/gen/lib/Model/GetItemsResponse.php
+++ b/src/gen/lib/Model/GetItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobResponse.php b/src/gen/lib/Model/GetJobResponse.php
index a08e513d5d..db710b239d 100644
--- a/src/gen/lib/Model/GetJobResponse.php
+++ b/src/gen/lib/Model/GetJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobsResponse.php b/src/gen/lib/Model/GetJobsResponse.php
index 0220462815..c80e400439 100644
--- a/src/gen/lib/Model/GetJobsResponse.php
+++ b/src/gen/lib/Model/GetJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntriesResponse.php b/src/gen/lib/Model/GetJournalEntriesResponse.php
index 6415c2e20d..e44251b60a 100644
--- a/src/gen/lib/Model/GetJournalEntriesResponse.php
+++ b/src/gen/lib/Model/GetJournalEntriesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntryResponse.php b/src/gen/lib/Model/GetJournalEntryResponse.php
index ccf1837424..4c694fdce5 100644
--- a/src/gen/lib/Model/GetJournalEntryResponse.php
+++ b/src/gen/lib/Model/GetJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadResponse.php b/src/gen/lib/Model/GetLeadResponse.php
index 57e0cb5efa..3b11333e51 100644
--- a/src/gen/lib/Model/GetLeadResponse.php
+++ b/src/gen/lib/Model/GetLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadsResponse.php b/src/gen/lib/Model/GetLeadsResponse.php
index bad6a65b41..ce1a2471d8 100644
--- a/src/gen/lib/Model/GetLeadsResponse.php
+++ b/src/gen/lib/Model/GetLeadsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountResponse.php b/src/gen/lib/Model/GetLedgerAccountResponse.php
index c5617ca518..44ff2ce871 100644
--- a/src/gen/lib/Model/GetLedgerAccountResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountsResponse.php b/src/gen/lib/Model/GetLedgerAccountsResponse.php
index 5221ff3e2e..bbebb9b83b 100644
--- a/src/gen/lib/Model/GetLedgerAccountsResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationResponse.php b/src/gen/lib/Model/GetLocationResponse.php
index f7475b62ac..058c593e15 100644
--- a/src/gen/lib/Model/GetLocationResponse.php
+++ b/src/gen/lib/Model/GetLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationsResponse.php b/src/gen/lib/Model/GetLocationsResponse.php
index fac2ee6407..0ee6aed204 100644
--- a/src/gen/lib/Model/GetLocationsResponse.php
+++ b/src/gen/lib/Model/GetLocationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLogsResponse.php b/src/gen/lib/Model/GetLogsResponse.php
index 571e1bf3fa..7dbc47bff3 100644
--- a/src/gen/lib/Model/GetLogsResponse.php
+++ b/src/gen/lib/Model/GetLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantResponse.php b/src/gen/lib/Model/GetMerchantResponse.php
index 3f581ab582..ea7af832ec 100644
--- a/src/gen/lib/Model/GetMerchantResponse.php
+++ b/src/gen/lib/Model/GetMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantsResponse.php b/src/gen/lib/Model/GetMerchantsResponse.php
index 2612362309..680df3379d 100644
--- a/src/gen/lib/Model/GetMerchantsResponse.php
+++ b/src/gen/lib/Model/GetMerchantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessageResponse.php b/src/gen/lib/Model/GetMessageResponse.php
index e1e1c03275..3fecc1c965 100644
--- a/src/gen/lib/Model/GetMessageResponse.php
+++ b/src/gen/lib/Model/GetMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessagesResponse.php b/src/gen/lib/Model/GetMessagesResponse.php
index 8a71a86395..d7d5f5c385 100644
--- a/src/gen/lib/Model/GetMessagesResponse.php
+++ b/src/gen/lib/Model/GetMessagesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupResponse.php b/src/gen/lib/Model/GetModifierGroupResponse.php
index 92cf91926b..4f6f7ad99d 100644
--- a/src/gen/lib/Model/GetModifierGroupResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupsResponse.php b/src/gen/lib/Model/GetModifierGroupsResponse.php
index 422fd88608..effb56cdab 100644
--- a/src/gen/lib/Model/GetModifierGroupsResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierResponse.php b/src/gen/lib/Model/GetModifierResponse.php
index eb5d62a0a5..0e52806278 100644
--- a/src/gen/lib/Model/GetModifierResponse.php
+++ b/src/gen/lib/Model/GetModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifiersResponse.php b/src/gen/lib/Model/GetModifiersResponse.php
index 6d686b2b1d..0df92a3ef8 100644
--- a/src/gen/lib/Model/GetModifiersResponse.php
+++ b/src/gen/lib/Model/GetModifiersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNoteResponse.php b/src/gen/lib/Model/GetNoteResponse.php
index 922ffb8610..b1fbbeeeb8 100644
--- a/src/gen/lib/Model/GetNoteResponse.php
+++ b/src/gen/lib/Model/GetNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNotesResponse.php b/src/gen/lib/Model/GetNotesResponse.php
index a50dc98b03..9d15f64853 100644
--- a/src/gen/lib/Model/GetNotesResponse.php
+++ b/src/gen/lib/Model/GetNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunitiesResponse.php b/src/gen/lib/Model/GetOpportunitiesResponse.php
index 30f6f053a6..e5337c308f 100644
--- a/src/gen/lib/Model/GetOpportunitiesResponse.php
+++ b/src/gen/lib/Model/GetOpportunitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunityResponse.php b/src/gen/lib/Model/GetOpportunityResponse.php
index 1e159b50b5..7ac4e802c4 100644
--- a/src/gen/lib/Model/GetOpportunityResponse.php
+++ b/src/gen/lib/Model/GetOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderResponse.php b/src/gen/lib/Model/GetOrderResponse.php
index 7f237f066c..2b454b120c 100644
--- a/src/gen/lib/Model/GetOrderResponse.php
+++ b/src/gen/lib/Model/GetOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypeResponse.php b/src/gen/lib/Model/GetOrderTypeResponse.php
index 6df82a7c7b..55e23df29c 100644
--- a/src/gen/lib/Model/GetOrderTypeResponse.php
+++ b/src/gen/lib/Model/GetOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypesResponse.php b/src/gen/lib/Model/GetOrderTypesResponse.php
index d9ead79632..56fa692aa5 100644
--- a/src/gen/lib/Model/GetOrderTypesResponse.php
+++ b/src/gen/lib/Model/GetOrderTypesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrdersResponse.php b/src/gen/lib/Model/GetOrdersResponse.php
index fc1d84c192..9cda6a47d4 100644
--- a/src/gen/lib/Model/GetOrdersResponse.php
+++ b/src/gen/lib/Model/GetOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentResponse.php b/src/gen/lib/Model/GetPaymentResponse.php
index d8c5380c02..376f59151c 100644
--- a/src/gen/lib/Model/GetPaymentResponse.php
+++ b/src/gen/lib/Model/GetPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentsResponse.php b/src/gen/lib/Model/GetPaymentsResponse.php
index da4da9d4b1..7cbe61933c 100644
--- a/src/gen/lib/Model/GetPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollResponse.php b/src/gen/lib/Model/GetPayrollResponse.php
index 3a1752cfc2..43c16f59bf 100644
--- a/src/gen/lib/Model/GetPayrollResponse.php
+++ b/src/gen/lib/Model/GetPayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollsResponse.php b/src/gen/lib/Model/GetPayrollsResponse.php
index b504d43a22..bfc0b5a281 100644
--- a/src/gen/lib/Model/GetPayrollsResponse.php
+++ b/src/gen/lib/Model/GetPayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelineResponse.php b/src/gen/lib/Model/GetPipelineResponse.php
index 6a269eebca..2a427ffd62 100644
--- a/src/gen/lib/Model/GetPipelineResponse.php
+++ b/src/gen/lib/Model/GetPipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelinesResponse.php b/src/gen/lib/Model/GetPipelinesResponse.php
index b29f9e4325..691cde08de 100644
--- a/src/gen/lib/Model/GetPipelinesResponse.php
+++ b/src/gen/lib/Model/GetPipelinesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentResponse.php b/src/gen/lib/Model/GetPosPaymentResponse.php
index 8cb71baf57..377b0f1f60 100644
--- a/src/gen/lib/Model/GetPosPaymentResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentsResponse.php b/src/gen/lib/Model/GetPosPaymentsResponse.php
index ed8c019c23..415b261ef3 100644
--- a/src/gen/lib/Model/GetPosPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductResponse.php b/src/gen/lib/Model/GetProductResponse.php
index c4d1e3093e..aa4078033d 100644
--- a/src/gen/lib/Model/GetProductResponse.php
+++ b/src/gen/lib/Model/GetProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductsResponse.php b/src/gen/lib/Model/GetProductsResponse.php
index d6d6339553..e0590757a9 100644
--- a/src/gen/lib/Model/GetProductsResponse.php
+++ b/src/gen/lib/Model/GetProductsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProfitAndLossResponse.php b/src/gen/lib/Model/GetProfitAndLossResponse.php
index 7535007d35..1b2cc78b10 100644
--- a/src/gen/lib/Model/GetProfitAndLossResponse.php
+++ b/src/gen/lib/Model/GetProfitAndLossResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrderResponse.php b/src/gen/lib/Model/GetPurchaseOrderResponse.php
index 0fc5529559..fa0e99aa67 100644
--- a/src/gen/lib/Model/GetPurchaseOrderResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrdersResponse.php b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
index 90e5e5e032..692294a7fe 100644
--- a/src/gen/lib/Model/GetPurchaseOrdersResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceExampleResponse.php b/src/gen/lib/Model/GetResourceExampleResponse.php
index 4799bbc0bb..dc73775e92 100644
--- a/src/gen/lib/Model/GetResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceSchemaResponse.php b/src/gen/lib/Model/GetResourceSchemaResponse.php
index 4f1e31422b..3302269ae4 100644
--- a/src/gen/lib/Model/GetResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinkResponse.php b/src/gen/lib/Model/GetSharedLinkResponse.php
index b7384f9622..f4d05f51d5 100644
--- a/src/gen/lib/Model/GetSharedLinkResponse.php
+++ b/src/gen/lib/Model/GetSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinksResponse.php b/src/gen/lib/Model/GetSharedLinksResponse.php
index e4a18f9cc7..f4f06e6c73 100644
--- a/src/gen/lib/Model/GetSharedLinksResponse.php
+++ b/src/gen/lib/Model/GetSharedLinksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoreResponse.php b/src/gen/lib/Model/GetStoreResponse.php
index ecdeebb912..8cb71aedc0 100644
--- a/src/gen/lib/Model/GetStoreResponse.php
+++ b/src/gen/lib/Model/GetStoreResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoresResponse.php b/src/gen/lib/Model/GetStoresResponse.php
index ec931647f3..2b803b7cee 100644
--- a/src/gen/lib/Model/GetStoresResponse.php
+++ b/src/gen/lib/Model/GetStoresResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSubsidiariesResponse.php b/src/gen/lib/Model/GetSubsidiariesResponse.php
index e3613e6037..f460c46eb9 100644
--- a/src/gen/lib/Model/GetSubsidiariesResponse.php
+++ b/src/gen/lib/Model/GetSubsidiariesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSubsidiaryResponse.php b/src/gen/lib/Model/GetSubsidiaryResponse.php
index f940a90205..69a4a76e3d 100644
--- a/src/gen/lib/Model/GetSubsidiaryResponse.php
+++ b/src/gen/lib/Model/GetSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSupplierResponse.php b/src/gen/lib/Model/GetSupplierResponse.php
index 4db5a31317..c5bb6a8865 100644
--- a/src/gen/lib/Model/GetSupplierResponse.php
+++ b/src/gen/lib/Model/GetSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSuppliersResponse.php b/src/gen/lib/Model/GetSuppliersResponse.php
index dc9308f248..147b37c838 100644
--- a/src/gen/lib/Model/GetSuppliersResponse.php
+++ b/src/gen/lib/Model/GetSuppliersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRateResponse.php b/src/gen/lib/Model/GetTaxRateResponse.php
index d8376fdf97..b1c53e4740 100644
--- a/src/gen/lib/Model/GetTaxRateResponse.php
+++ b/src/gen/lib/Model/GetTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRatesResponse.php b/src/gen/lib/Model/GetTaxRatesResponse.php
index 9a4ebbe404..dfa870819b 100644
--- a/src/gen/lib/Model/GetTaxRatesResponse.php
+++ b/src/gen/lib/Model/GetTaxRatesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTenderResponse.php b/src/gen/lib/Model/GetTenderResponse.php
index e6349d0c74..a8541781b0 100644
--- a/src/gen/lib/Model/GetTenderResponse.php
+++ b/src/gen/lib/Model/GetTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTendersResponse.php b/src/gen/lib/Model/GetTendersResponse.php
index 279782299d..47d69abf96 100644
--- a/src/gen/lib/Model/GetTendersResponse.php
+++ b/src/gen/lib/Model/GetTendersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketResponse.php b/src/gen/lib/Model/GetTicketResponse.php
index d954ed0df7..e487718732 100644
--- a/src/gen/lib/Model/GetTicketResponse.php
+++ b/src/gen/lib/Model/GetTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketsResponse.php b/src/gen/lib/Model/GetTicketsResponse.php
index 7783fcf5ab..94fd284c73 100644
--- a/src/gen/lib/Model/GetTicketsResponse.php
+++ b/src/gen/lib/Model/GetTicketsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestResponse.php b/src/gen/lib/Model/GetTimeOffRequestResponse.php
index 278a676049..deef7038f6 100644
--- a/src/gen/lib/Model/GetTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestsResponse.php b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
index ca1d28a08b..ea9a4b3a76 100644
--- a/src/gen/lib/Model/GetTimeOffRequestsResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUploadSessionResponse.php b/src/gen/lib/Model/GetUploadSessionResponse.php
index 723494774a..98f45dee11 100644
--- a/src/gen/lib/Model/GetUploadSessionResponse.php
+++ b/src/gen/lib/Model/GetUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUserResponse.php b/src/gen/lib/Model/GetUserResponse.php
index 998b28b561..29e68e11c1 100644
--- a/src/gen/lib/Model/GetUserResponse.php
+++ b/src/gen/lib/Model/GetUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUsersResponse.php b/src/gen/lib/Model/GetUsersResponse.php
index 7ad40a7294..f113b0ac3d 100644
--- a/src/gen/lib/Model/GetUsersResponse.php
+++ b/src/gen/lib/Model/GetUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookEventLogsResponse.php b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
index 0335f6aead..d9724b1e6b 100644
--- a/src/gen/lib/Model/GetWebhookEventLogsResponse.php
+++ b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookResponse.php b/src/gen/lib/Model/GetWebhookResponse.php
index 9bcaa9098d..83e12e30ed 100644
--- a/src/gen/lib/Model/GetWebhookResponse.php
+++ b/src/gen/lib/Model/GetWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhooksResponse.php b/src/gen/lib/Model/GetWebhooksResponse.php
index 6a6ede7a4c..7021de7620 100644
--- a/src/gen/lib/Model/GetWebhooksResponse.php
+++ b/src/gen/lib/Model/GetWebhooksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisCompany.php b/src/gen/lib/Model/HrisCompany.php
index 96216c0748..c35ca9c89c 100644
--- a/src/gen/lib/Model/HrisCompany.php
+++ b/src/gen/lib/Model/HrisCompany.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisEventType.php b/src/gen/lib/Model/HrisEventType.php
index cda67d5e5e..271a8140c1 100644
--- a/src/gen/lib/Model/HrisEventType.php
+++ b/src/gen/lib/Model/HrisEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJob.php b/src/gen/lib/Model/HrisJob.php
index d3dd99c7ac..c8129444c5 100644
--- a/src/gen/lib/Model/HrisJob.php
+++ b/src/gen/lib/Model/HrisJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobLocation.php b/src/gen/lib/Model/HrisJobLocation.php
index a01349ceeb..f60e420410 100644
--- a/src/gen/lib/Model/HrisJobLocation.php
+++ b/src/gen/lib/Model/HrisJobLocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobs.php b/src/gen/lib/Model/HrisJobs.php
index f557cab07a..be36c67958 100644
--- a/src/gen/lib/Model/HrisJobs.php
+++ b/src/gen/lib/Model/HrisJobs.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IntegrationState.php b/src/gen/lib/Model/IntegrationState.php
index 824f41e589..74e030929e 100644
--- a/src/gen/lib/Model/IntegrationState.php
+++ b/src/gen/lib/Model/IntegrationState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Invoice.php b/src/gen/lib/Model/Invoice.php
index 1f951ca315..e10b012c5c 100644
--- a/src/gen/lib/Model/Invoice.php
+++ b/src/gen/lib/Model/Invoice.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItem.php b/src/gen/lib/Model/InvoiceItem.php
index fc84001ddd..d96191818a 100644
--- a/src/gen/lib/Model/InvoiceItem.php
+++ b/src/gen/lib/Model/InvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemSalesDetails.php b/src/gen/lib/Model/InvoiceItemSalesDetails.php
index bbf7b9894b..eb8f71268a 100644
--- a/src/gen/lib/Model/InvoiceItemSalesDetails.php
+++ b/src/gen/lib/Model/InvoiceItemSalesDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemsFilter.php b/src/gen/lib/Model/InvoiceItemsFilter.php
index c76d0c0765..259329b1de 100644
--- a/src/gen/lib/Model/InvoiceItemsFilter.php
+++ b/src/gen/lib/Model/InvoiceItemsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceLineItem.php b/src/gen/lib/Model/InvoiceLineItem.php
index 084a21d3d9..c2c3456e5c 100644
--- a/src/gen/lib/Model/InvoiceLineItem.php
+++ b/src/gen/lib/Model/InvoiceLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceResponse.php b/src/gen/lib/Model/InvoiceResponse.php
index 40d751c4c2..6bbac5736f 100644
--- a/src/gen/lib/Model/InvoiceResponse.php
+++ b/src/gen/lib/Model/InvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesFilter.php b/src/gen/lib/Model/InvoicesFilter.php
index 571283cefa..a51394e4b5 100644
--- a/src/gen/lib/Model/InvoicesFilter.php
+++ b/src/gen/lib/Model/InvoicesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesSort.php b/src/gen/lib/Model/InvoicesSort.php
index 13583b6a35..36fc76991d 100644
--- a/src/gen/lib/Model/InvoicesSort.php
+++ b/src/gen/lib/Model/InvoicesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssueTrackingEventType.php b/src/gen/lib/Model/IssueTrackingEventType.php
index b2d0493192..c7cfe27248 100644
--- a/src/gen/lib/Model/IssueTrackingEventType.php
+++ b/src/gen/lib/Model/IssueTrackingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssuesFilter.php b/src/gen/lib/Model/IssuesFilter.php
index 3dec9037f0..da1403ab14 100644
--- a/src/gen/lib/Model/IssuesFilter.php
+++ b/src/gen/lib/Model/IssuesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Item.php b/src/gen/lib/Model/Item.php
index 406169295d..ee01a8947c 100644
--- a/src/gen/lib/Model/Item.php
+++ b/src/gen/lib/Model/Item.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Job.php b/src/gen/lib/Model/Job.php
index 1302542e1b..449f136a20 100644
--- a/src/gen/lib/Model/Job.php
+++ b/src/gen/lib/Model/Job.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobLinks.php b/src/gen/lib/Model/JobLinks.php
index bfaed1825f..94c55d4993 100644
--- a/src/gen/lib/Model/JobLinks.php
+++ b/src/gen/lib/Model/JobLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobSalary.php b/src/gen/lib/Model/JobSalary.php
index 99c706f828..9514e183d5 100644
--- a/src/gen/lib/Model/JobSalary.php
+++ b/src/gen/lib/Model/JobSalary.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobStatus.php b/src/gen/lib/Model/JobStatus.php
index 1d79329d25..10001d01b6 100644
--- a/src/gen/lib/Model/JobStatus.php
+++ b/src/gen/lib/Model/JobStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesFilter.php b/src/gen/lib/Model/JournalEntriesFilter.php
index e6214a698a..2ade27a844 100644
--- a/src/gen/lib/Model/JournalEntriesFilter.php
+++ b/src/gen/lib/Model/JournalEntriesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesSort.php b/src/gen/lib/Model/JournalEntriesSort.php
index 41d2b152cf..b2854bbba5 100644
--- a/src/gen/lib/Model/JournalEntriesSort.php
+++ b/src/gen/lib/Model/JournalEntriesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntry.php b/src/gen/lib/Model/JournalEntry.php
index 2c0315c234..1436985f7a 100644
--- a/src/gen/lib/Model/JournalEntry.php
+++ b/src/gen/lib/Model/JournalEntry.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntryLineItem.php b/src/gen/lib/Model/JournalEntryLineItem.php
index bd113c84ac..2ad3eeb545 100644
--- a/src/gen/lib/Model/JournalEntryLineItem.php
+++ b/src/gen/lib/Model/JournalEntryLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Lead.php b/src/gen/lib/Model/Lead.php
index 13773d69ac..36c80179dd 100644
--- a/src/gen/lib/Model/Lead.php
+++ b/src/gen/lib/Model/Lead.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadEventType.php b/src/gen/lib/Model/LeadEventType.php
index b32380bea7..aea0248ce9 100644
--- a/src/gen/lib/Model/LeadEventType.php
+++ b/src/gen/lib/Model/LeadEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsFilter.php b/src/gen/lib/Model/LeadsFilter.php
index e2d17f19d0..201cabdd23 100644
--- a/src/gen/lib/Model/LeadsFilter.php
+++ b/src/gen/lib/Model/LeadsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsSort.php b/src/gen/lib/Model/LeadsSort.php
index 4e85e34d30..7f68809c92 100644
--- a/src/gen/lib/Model/LeadsSort.php
+++ b/src/gen/lib/Model/LeadsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccount.php b/src/gen/lib/Model/LedgerAccount.php
index c50b30f622..52ac9e42a7 100644
--- a/src/gen/lib/Model/LedgerAccount.php
+++ b/src/gen/lib/Model/LedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountCategories.php b/src/gen/lib/Model/LedgerAccountCategories.php
index 9b75885b37..b0da5b27d1 100644
--- a/src/gen/lib/Model/LedgerAccountCategories.php
+++ b/src/gen/lib/Model/LedgerAccountCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountParentAccount.php b/src/gen/lib/Model/LedgerAccountParentAccount.php
index 0860f4db4e..435f099bdb 100644
--- a/src/gen/lib/Model/LedgerAccountParentAccount.php
+++ b/src/gen/lib/Model/LedgerAccountParentAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsFilter.php b/src/gen/lib/Model/LedgerAccountsFilter.php
index cdfcdcc1e4..62fff63438 100644
--- a/src/gen/lib/Model/LedgerAccountsFilter.php
+++ b/src/gen/lib/Model/LedgerAccountsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsSort.php b/src/gen/lib/Model/LedgerAccountsSort.php
index 2135af0105..4dc3e40b7b 100644
--- a/src/gen/lib/Model/LedgerAccountsSort.php
+++ b/src/gen/lib/Model/LedgerAccountsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedConnectorResource.php b/src/gen/lib/Model/LinkedConnectorResource.php
index d20514d8b8..e0d8b626c8 100644
--- a/src/gen/lib/Model/LinkedConnectorResource.php
+++ b/src/gen/lib/Model/LinkedConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedCustomer.php b/src/gen/lib/Model/LinkedCustomer.php
index 43905e1ecd..d6ab70745c 100644
--- a/src/gen/lib/Model/LinkedCustomer.php
+++ b/src/gen/lib/Model/LinkedCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceCustomer.php b/src/gen/lib/Model/LinkedEcommerceCustomer.php
index 4ee35d92e1..792bb1b8fd 100644
--- a/src/gen/lib/Model/LinkedEcommerceCustomer.php
+++ b/src/gen/lib/Model/LinkedEcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceOrder.php b/src/gen/lib/Model/LinkedEcommerceOrder.php
index 97b62ba6d1..f6b9370713 100644
--- a/src/gen/lib/Model/LinkedEcommerceOrder.php
+++ b/src/gen/lib/Model/LinkedEcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedFolder.php b/src/gen/lib/Model/LinkedFolder.php
index 6893a149ef..b31f797b70 100644
--- a/src/gen/lib/Model/LinkedFolder.php
+++ b/src/gen/lib/Model/LinkedFolder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedInvoiceItem.php b/src/gen/lib/Model/LinkedInvoiceItem.php
index 53f957e9bd..2c2110be7e 100644
--- a/src/gen/lib/Model/LinkedInvoiceItem.php
+++ b/src/gen/lib/Model/LinkedInvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedLedgerAccount.php b/src/gen/lib/Model/LinkedLedgerAccount.php
index e781530a96..4ad2ca8608 100644
--- a/src/gen/lib/Model/LinkedLedgerAccount.php
+++ b/src/gen/lib/Model/LinkedLedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedParentCustomer.php b/src/gen/lib/Model/LinkedParentCustomer.php
index 6286e23a47..df2aa458af 100644
--- a/src/gen/lib/Model/LinkedParentCustomer.php
+++ b/src/gen/lib/Model/LinkedParentCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedSupplier.php b/src/gen/lib/Model/LinkedSupplier.php
index 2f7aea53dc..9d4f433f64 100644
--- a/src/gen/lib/Model/LinkedSupplier.php
+++ b/src/gen/lib/Model/LinkedSupplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTaxRate.php b/src/gen/lib/Model/LinkedTaxRate.php
index f12d0810e6..c8bba08028 100644
--- a/src/gen/lib/Model/LinkedTaxRate.php
+++ b/src/gen/lib/Model/LinkedTaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTrackingCategory.php b/src/gen/lib/Model/LinkedTrackingCategory.php
index 09d8b693c5..cb3078e574 100644
--- a/src/gen/lib/Model/LinkedTrackingCategory.php
+++ b/src/gen/lib/Model/LinkedTrackingCategory.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Links.php b/src/gen/lib/Model/Links.php
index dd1db6b1fa..d76e5a5341 100644
--- a/src/gen/lib/Model/Links.php
+++ b/src/gen/lib/Model/Links.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Location.php b/src/gen/lib/Model/Location.php
index 4a5938ea14..5753e45b67 100644
--- a/src/gen/lib/Model/Location.php
+++ b/src/gen/lib/Model/Location.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Log.php b/src/gen/lib/Model/Log.php
index 5c5ad7214a..aa875d1443 100644
--- a/src/gen/lib/Model/Log.php
+++ b/src/gen/lib/Model/Log.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogOperation.php b/src/gen/lib/Model/LogOperation.php
index cf67a69ecf..aa07a433b1 100644
--- a/src/gen/lib/Model/LogOperation.php
+++ b/src/gen/lib/Model/LogOperation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogService.php b/src/gen/lib/Model/LogService.php
index b6e66c53dc..881b80a378 100644
--- a/src/gen/lib/Model/LogService.php
+++ b/src/gen/lib/Model/LogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogsFilter.php b/src/gen/lib/Model/LogsFilter.php
index fd66b8459a..20e596fb0f 100644
--- a/src/gen/lib/Model/LogsFilter.php
+++ b/src/gen/lib/Model/LogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Merchant.php b/src/gen/lib/Model/Merchant.php
index e3cf8d6615..08b0a449c3 100644
--- a/src/gen/lib/Model/Merchant.php
+++ b/src/gen/lib/Model/Merchant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Message.php b/src/gen/lib/Model/Message.php
index 14b3dea6bf..f95ace8646 100644
--- a/src/gen/lib/Model/Message.php
+++ b/src/gen/lib/Model/Message.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Meta.php b/src/gen/lib/Model/Meta.php
index 899ead14a0..dc7bfef844 100644
--- a/src/gen/lib/Model/Meta.php
+++ b/src/gen/lib/Model/Meta.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/MetaCursors.php b/src/gen/lib/Model/MetaCursors.php
index b52c4a247e..f73ef24c29 100644
--- a/src/gen/lib/Model/MetaCursors.php
+++ b/src/gen/lib/Model/MetaCursors.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModelInterface.php b/src/gen/lib/Model/ModelInterface.php
index 5a552c4bd1..e806afcdb4 100644
--- a/src/gen/lib/Model/ModelInterface.php
+++ b/src/gen/lib/Model/ModelInterface.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Modifier.php b/src/gen/lib/Model/Modifier.php
index fb13004653..40ed7f5555 100644
--- a/src/gen/lib/Model/Modifier.php
+++ b/src/gen/lib/Model/Modifier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroup.php b/src/gen/lib/Model/ModifierGroup.php
index 08efb12ee4..c97273ff85 100644
--- a/src/gen/lib/Model/ModifierGroup.php
+++ b/src/gen/lib/Model/ModifierGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroupFilter.php b/src/gen/lib/Model/ModifierGroupFilter.php
index 8c53b680ca..0a3047affb 100644
--- a/src/gen/lib/Model/ModifierGroupFilter.php
+++ b/src/gen/lib/Model/ModifierGroupFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotFoundResponse.php b/src/gen/lib/Model/NotFoundResponse.php
index 350989eb81..8f8dadb9c8 100644
--- a/src/gen/lib/Model/NotFoundResponse.php
+++ b/src/gen/lib/Model/NotFoundResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotImplementedResponse.php b/src/gen/lib/Model/NotImplementedResponse.php
index c1b770f819..7e4093ef16 100644
--- a/src/gen/lib/Model/NotImplementedResponse.php
+++ b/src/gen/lib/Model/NotImplementedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Note.php b/src/gen/lib/Model/Note.php
index 02b1569b74..6fc0d315c2 100644
--- a/src/gen/lib/Model/Note.php
+++ b/src/gen/lib/Model/Note.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OAuthGrantType.php b/src/gen/lib/Model/OAuthGrantType.php
index d16ab28567..2e5940a91a 100644
--- a/src/gen/lib/Model/OAuthGrantType.php
+++ b/src/gen/lib/Model/OAuthGrantType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Offer.php b/src/gen/lib/Model/Offer.php
index 60b049f71e..92f775ff08 100644
--- a/src/gen/lib/Model/Offer.php
+++ b/src/gen/lib/Model/Offer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesFilter.php b/src/gen/lib/Model/OpportunitiesFilter.php
index 684f1c686e..019cd95d24 100644
--- a/src/gen/lib/Model/OpportunitiesFilter.php
+++ b/src/gen/lib/Model/OpportunitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesSort.php b/src/gen/lib/Model/OpportunitiesSort.php
index 34abaa0f6c..23b7fe7ac1 100644
--- a/src/gen/lib/Model/OpportunitiesSort.php
+++ b/src/gen/lib/Model/OpportunitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Opportunity.php b/src/gen/lib/Model/Opportunity.php
index f64369b13b..88d6a49c2e 100644
--- a/src/gen/lib/Model/Opportunity.php
+++ b/src/gen/lib/Model/Opportunity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Order.php b/src/gen/lib/Model/Order.php
index a7fec5da80..1d9f89208d 100644
--- a/src/gen/lib/Model/Order.php
+++ b/src/gen/lib/Model/Order.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderCustomers.php b/src/gen/lib/Model/OrderCustomers.php
index e9d3e6de45..1b5859ce76 100644
--- a/src/gen/lib/Model/OrderCustomers.php
+++ b/src/gen/lib/Model/OrderCustomers.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderDiscounts.php b/src/gen/lib/Model/OrderDiscounts.php
index af1a98540e..1e285e58e1 100644
--- a/src/gen/lib/Model/OrderDiscounts.php
+++ b/src/gen/lib/Model/OrderDiscounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderFulfillments.php b/src/gen/lib/Model/OrderFulfillments.php
index 5e27c5ac6f..fe3c40b37b 100644
--- a/src/gen/lib/Model/OrderFulfillments.php
+++ b/src/gen/lib/Model/OrderFulfillments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderLineItems.php b/src/gen/lib/Model/OrderLineItems.php
index 344b120034..f7cecd7254 100644
--- a/src/gen/lib/Model/OrderLineItems.php
+++ b/src/gen/lib/Model/OrderLineItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPayments.php b/src/gen/lib/Model/OrderPayments.php
index acdc99aa7a..38df524dea 100644
--- a/src/gen/lib/Model/OrderPayments.php
+++ b/src/gen/lib/Model/OrderPayments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetails.php b/src/gen/lib/Model/OrderPickupDetails.php
index 9de4b0a2e7..21a076500f 100644
--- a/src/gen/lib/Model/OrderPickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
index 7ffc4a4527..3242cb4dcf 100644
--- a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsRecipient.php b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
index 9956503128..4b8dfbd826 100644
--- a/src/gen/lib/Model/OrderPickupDetailsRecipient.php
+++ b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderRefunds.php b/src/gen/lib/Model/OrderRefunds.php
index 3efa39bdaf..66944a651c 100644
--- a/src/gen/lib/Model/OrderRefunds.php
+++ b/src/gen/lib/Model/OrderRefunds.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderTenders.php b/src/gen/lib/Model/OrderTenders.php
index d66ebee18e..dca84c848a 100644
--- a/src/gen/lib/Model/OrderTenders.php
+++ b/src/gen/lib/Model/OrderTenders.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderType.php b/src/gen/lib/Model/OrderType.php
index 77f35a1bc5..7c47d7ff49 100644
--- a/src/gen/lib/Model/OrderType.php
+++ b/src/gen/lib/Model/OrderType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Owner.php b/src/gen/lib/Model/Owner.php
index 2dc322b8ef..8080e8b263 100644
--- a/src/gen/lib/Model/Owner.php
+++ b/src/gen/lib/Model/Owner.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaginationCoverage.php b/src/gen/lib/Model/PaginationCoverage.php
index dd27db4935..773033e031 100644
--- a/src/gen/lib/Model/PaginationCoverage.php
+++ b/src/gen/lib/Model/PaginationCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PassThroughQuery.php b/src/gen/lib/Model/PassThroughQuery.php
index f4db52dff8..068b9f74b8 100644
--- a/src/gen/lib/Model/PassThroughQuery.php
+++ b/src/gen/lib/Model/PassThroughQuery.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payment.php b/src/gen/lib/Model/Payment.php
index cfe388b426..8ec3329018 100644
--- a/src/gen/lib/Model/Payment.php
+++ b/src/gen/lib/Model/Payment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentAllocations.php b/src/gen/lib/Model/PaymentAllocations.php
index 8ec3bc6576..b516aeb6d0 100644
--- a/src/gen/lib/Model/PaymentAllocations.php
+++ b/src/gen/lib/Model/PaymentAllocations.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentCard.php b/src/gen/lib/Model/PaymentCard.php
index b2fd3e9a9a..20ada43d5e 100644
--- a/src/gen/lib/Model/PaymentCard.php
+++ b/src/gen/lib/Model/PaymentCard.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentFrequency.php b/src/gen/lib/Model/PaymentFrequency.php
index 501991ce66..e7e98ac44e 100644
--- a/src/gen/lib/Model/PaymentFrequency.php
+++ b/src/gen/lib/Model/PaymentFrequency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentRequiredResponse.php b/src/gen/lib/Model/PaymentRequiredResponse.php
index 13ab7e178e..1063e43bb1 100644
--- a/src/gen/lib/Model/PaymentRequiredResponse.php
+++ b/src/gen/lib/Model/PaymentRequiredResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentUnit.php b/src/gen/lib/Model/PaymentUnit.php
index 0894257d01..6520936f33 100644
--- a/src/gen/lib/Model/PaymentUnit.php
+++ b/src/gen/lib/Model/PaymentUnit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsFilter.php b/src/gen/lib/Model/PaymentsFilter.php
index 18993fe2aa..64aabed803 100644
--- a/src/gen/lib/Model/PaymentsFilter.php
+++ b/src/gen/lib/Model/PaymentsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsSort.php b/src/gen/lib/Model/PaymentsSort.php
index 1a8b7a9d99..85bdec698a 100644
--- a/src/gen/lib/Model/PaymentsSort.php
+++ b/src/gen/lib/Model/PaymentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payroll.php b/src/gen/lib/Model/Payroll.php
index 9bb8a37dfc..f24d6044e6 100644
--- a/src/gen/lib/Model/Payroll.php
+++ b/src/gen/lib/Model/Payroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollTotals.php b/src/gen/lib/Model/PayrollTotals.php
index fc3341db24..e8ae7026ef 100644
--- a/src/gen/lib/Model/PayrollTotals.php
+++ b/src/gen/lib/Model/PayrollTotals.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollsFilter.php b/src/gen/lib/Model/PayrollsFilter.php
index 6b64b3bdab..191ba5a371 100644
--- a/src/gen/lib/Model/PayrollsFilter.php
+++ b/src/gen/lib/Model/PayrollsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Person.php b/src/gen/lib/Model/Person.php
index d2e1e87535..207e7658cf 100644
--- a/src/gen/lib/Model/Person.php
+++ b/src/gen/lib/Model/Person.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PhoneNumber.php b/src/gen/lib/Model/PhoneNumber.php
index 96e3d6eaab..62d86342e7 100644
--- a/src/gen/lib/Model/PhoneNumber.php
+++ b/src/gen/lib/Model/PhoneNumber.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Pipeline.php b/src/gen/lib/Model/Pipeline.php
index 993c394c71..9b1c8cea47 100644
--- a/src/gen/lib/Model/Pipeline.php
+++ b/src/gen/lib/Model/Pipeline.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PipelineStages.php b/src/gen/lib/Model/PipelineStages.php
index 3adfa0a2ae..813e4a2f3d 100644
--- a/src/gen/lib/Model/PipelineStages.php
+++ b/src/gen/lib/Model/PipelineStages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccount.php b/src/gen/lib/Model/PosBankAccount.php
index 15bccfb98d..d725841efc 100644
--- a/src/gen/lib/Model/PosBankAccount.php
+++ b/src/gen/lib/Model/PosBankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccountAchDetails.php b/src/gen/lib/Model/PosBankAccountAchDetails.php
index 9a3b913003..2e28027eaa 100644
--- a/src/gen/lib/Model/PosBankAccountAchDetails.php
+++ b/src/gen/lib/Model/PosBankAccountAchDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPayment.php b/src/gen/lib/Model/PosPayment.php
index 2e24c86726..a7cf3c70f6 100644
--- a/src/gen/lib/Model/PosPayment.php
+++ b/src/gen/lib/Model/PosPayment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentCardDetails.php b/src/gen/lib/Model/PosPaymentCardDetails.php
index 06a5fc1599..ece3c8e4ec 100644
--- a/src/gen/lib/Model/PosPaymentCardDetails.php
+++ b/src/gen/lib/Model/PosPaymentCardDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentExternalDetails.php b/src/gen/lib/Model/PosPaymentExternalDetails.php
index dcf35cdc63..f6df12fd53 100644
--- a/src/gen/lib/Model/PosPaymentExternalDetails.php
+++ b/src/gen/lib/Model/PosPaymentExternalDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Price.php b/src/gen/lib/Model/Price.php
index 8d8163b5ed..446800b5af 100644
--- a/src/gen/lib/Model/Price.php
+++ b/src/gen/lib/Model/Price.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProbationPeriod.php b/src/gen/lib/Model/ProbationPeriod.php
index 7470785cfe..f78ecb4203 100644
--- a/src/gen/lib/Model/ProbationPeriod.php
+++ b/src/gen/lib/Model/ProbationPeriod.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLoss.php b/src/gen/lib/Model/ProfitAndLoss.php
index b498eccb59..647b9e6aa9 100644
--- a/src/gen/lib/Model/ProfitAndLoss.php
+++ b/src/gen/lib/Model/ProfitAndLoss.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossExpenses.php b/src/gen/lib/Model/ProfitAndLossExpenses.php
index a63a9111a4..93c3a80822 100644
--- a/src/gen/lib/Model/ProfitAndLossExpenses.php
+++ b/src/gen/lib/Model/ProfitAndLossExpenses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossFilter.php b/src/gen/lib/Model/ProfitAndLossFilter.php
index 13dea1fe80..3d07453845 100644
--- a/src/gen/lib/Model/ProfitAndLossFilter.php
+++ b/src/gen/lib/Model/ProfitAndLossFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossGrossProfit.php b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
index f9afc3538b..2a4d5b72b0 100644
--- a/src/gen/lib/Model/ProfitAndLossGrossProfit.php
+++ b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossIncome.php b/src/gen/lib/Model/ProfitAndLossIncome.php
index be7bcbff99..218f09de85 100644
--- a/src/gen/lib/Model/ProfitAndLossIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetIncome.php b/src/gen/lib/Model/ProfitAndLossNetIncome.php
index df2958a181..cc249599b6 100644
--- a/src/gen/lib/Model/ProfitAndLossNetIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
index 07a4484db8..fd1aa1aa7b 100644
--- a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossRecord.php b/src/gen/lib/Model/ProfitAndLossRecord.php
index f6d717953f..d297329eaa 100644
--- a/src/gen/lib/Model/ProfitAndLossRecord.php
+++ b/src/gen/lib/Model/ProfitAndLossRecord.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossSection.php b/src/gen/lib/Model/ProfitAndLossSection.php
index 319105826e..ea0b90a823 100644
--- a/src/gen/lib/Model/ProfitAndLossSection.php
+++ b/src/gen/lib/Model/ProfitAndLossSection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrder.php b/src/gen/lib/Model/PurchaseOrder.php
index 3f6c704ecf..e2a6333e27 100644
--- a/src/gen/lib/Model/PurchaseOrder.php
+++ b/src/gen/lib/Model/PurchaseOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersFilter.php b/src/gen/lib/Model/PurchaseOrdersFilter.php
index f5b782a617..6a61b7ebbb 100644
--- a/src/gen/lib/Model/PurchaseOrdersFilter.php
+++ b/src/gen/lib/Model/PurchaseOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersSort.php b/src/gen/lib/Model/PurchaseOrdersSort.php
index 842eb9c4b4..05ec4ad851 100644
--- a/src/gen/lib/Model/PurchaseOrdersSort.php
+++ b/src/gen/lib/Model/PurchaseOrdersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestCountAllocation.php b/src/gen/lib/Model/RequestCountAllocation.php
index a61018e6da..5d65f4e9bc 100644
--- a/src/gen/lib/Model/RequestCountAllocation.php
+++ b/src/gen/lib/Model/RequestCountAllocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestRate.php b/src/gen/lib/Model/RequestRate.php
index e7f41d7345..da6e4a38a4 100644
--- a/src/gen/lib/Model/RequestRate.php
+++ b/src/gen/lib/Model/RequestRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResolveWebhookResponse.php b/src/gen/lib/Model/ResolveWebhookResponse.php
index 7845974d15..211d23d4e8 100644
--- a/src/gen/lib/Model/ResolveWebhookResponse.php
+++ b/src/gen/lib/Model/ResolveWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceExample.php b/src/gen/lib/Model/ResourceExample.php
index 5581d1dff1..eba3aca639 100644
--- a/src/gen/lib/Model/ResourceExample.php
+++ b/src/gen/lib/Model/ResourceExample.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceStatus.php b/src/gen/lib/Model/ResourceStatus.php
index 8c7e1a8098..93ec6b1a00 100644
--- a/src/gen/lib/Model/ResourceStatus.php
+++ b/src/gen/lib/Model/ResourceStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Schedule.php b/src/gen/lib/Model/Schedule.php
index 68b607b6f6..ddca7d66e1 100644
--- a/src/gen/lib/Model/Schedule.php
+++ b/src/gen/lib/Model/Schedule.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPattern.php b/src/gen/lib/Model/ScheduleWorkPattern.php
index d4db235867..895cfa4223 100644
--- a/src/gen/lib/Model/ScheduleWorkPattern.php
+++ b/src/gen/lib/Model/ScheduleWorkPattern.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
index ce8e2e1189..47eb9d51be 100644
--- a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
+++ b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SchemaSupport.php b/src/gen/lib/Model/SchemaSupport.php
index 145bd40fa6..6dbeca7bd8 100644
--- a/src/gen/lib/Model/SchemaSupport.php
+++ b/src/gen/lib/Model/SchemaSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ServiceCharge.php b/src/gen/lib/Model/ServiceCharge.php
index 023452e25d..a3d08b3ee0 100644
--- a/src/gen/lib/Model/ServiceCharge.php
+++ b/src/gen/lib/Model/ServiceCharge.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Session.php b/src/gen/lib/Model/Session.php
index 7cde34bede..781ab2d64d 100644
--- a/src/gen/lib/Model/Session.php
+++ b/src/gen/lib/Model/Session.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionSettings.php b/src/gen/lib/Model/SessionSettings.php
index f2d410889c..68bf0c0aa5 100644
--- a/src/gen/lib/Model/SessionSettings.php
+++ b/src/gen/lib/Model/SessionSettings.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionTheme.php b/src/gen/lib/Model/SessionTheme.php
index c1f47610b0..fb62ca4d36 100644
--- a/src/gen/lib/Model/SessionTheme.php
+++ b/src/gen/lib/Model/SessionTheme.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLink.php b/src/gen/lib/Model/SharedLink.php
index c150924ad4..96e0102955 100644
--- a/src/gen/lib/Model/SharedLink.php
+++ b/src/gen/lib/Model/SharedLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLinkTarget.php b/src/gen/lib/Model/SharedLinkTarget.php
index 07e23d543f..c9320f9470 100644
--- a/src/gen/lib/Model/SharedLinkTarget.php
+++ b/src/gen/lib/Model/SharedLinkTarget.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SimpleFormFieldOption.php b/src/gen/lib/Model/SimpleFormFieldOption.php
index f889d65820..4c2fdee957 100644
--- a/src/gen/lib/Model/SimpleFormFieldOption.php
+++ b/src/gen/lib/Model/SimpleFormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SocialLink.php b/src/gen/lib/Model/SocialLink.php
index 8084a4f8b6..f4dbb8ae45 100644
--- a/src/gen/lib/Model/SocialLink.php
+++ b/src/gen/lib/Model/SocialLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SortDirection.php b/src/gen/lib/Model/SortDirection.php
index 3bd54826f6..16da530c88 100644
--- a/src/gen/lib/Model/SortDirection.php
+++ b/src/gen/lib/Model/SortDirection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Status.php b/src/gen/lib/Model/Status.php
index c670eba566..ae376e67eb 100644
--- a/src/gen/lib/Model/Status.php
+++ b/src/gen/lib/Model/Status.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Subsidiary.php b/src/gen/lib/Model/Subsidiary.php
index 3bcaa72acc..f9512aa2bb 100644
--- a/src/gen/lib/Model/Subsidiary.php
+++ b/src/gen/lib/Model/Subsidiary.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Supplier.php b/src/gen/lib/Model/Supplier.php
index 46a80f28e5..e57a8e917f 100644
--- a/src/gen/lib/Model/Supplier.php
+++ b/src/gen/lib/Model/Supplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersFilter.php b/src/gen/lib/Model/SuppliersFilter.php
index 7005333666..fa48b56254 100644
--- a/src/gen/lib/Model/SuppliersFilter.php
+++ b/src/gen/lib/Model/SuppliersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersSort.php b/src/gen/lib/Model/SuppliersSort.php
index bb2e17fd71..92509cb0a9 100644
--- a/src/gen/lib/Model/SuppliersSort.php
+++ b/src/gen/lib/Model/SuppliersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SupportedProperty.php b/src/gen/lib/Model/SupportedProperty.php
index 545d901714..d8e44eca74 100644
--- a/src/gen/lib/Model/SupportedProperty.php
+++ b/src/gen/lib/Model/SupportedProperty.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tax.php b/src/gen/lib/Model/Tax.php
index b104e756ba..381cdb59f5 100644
--- a/src/gen/lib/Model/Tax.php
+++ b/src/gen/lib/Model/Tax.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRate.php b/src/gen/lib/Model/TaxRate.php
index 298b6414dd..df3e2e5fc6 100644
--- a/src/gen/lib/Model/TaxRate.php
+++ b/src/gen/lib/Model/TaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRatesFilter.php b/src/gen/lib/Model/TaxRatesFilter.php
index 0e638951a1..ac8b1be45e 100644
--- a/src/gen/lib/Model/TaxRatesFilter.php
+++ b/src/gen/lib/Model/TaxRatesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Team.php b/src/gen/lib/Model/Team.php
index 610791c845..fdffdb63b0 100644
--- a/src/gen/lib/Model/Team.php
+++ b/src/gen/lib/Model/Team.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tender.php b/src/gen/lib/Model/Tender.php
index 3081f84887..ccb7713dcc 100644
--- a/src/gen/lib/Model/Tender.php
+++ b/src/gen/lib/Model/Tender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Ticket.php b/src/gen/lib/Model/Ticket.php
index 7812234f54..b2b6503547 100644
--- a/src/gen/lib/Model/Ticket.php
+++ b/src/gen/lib/Model/Ticket.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TicketsSort.php b/src/gen/lib/Model/TicketsSort.php
index 90b13f56fb..90ddb22b94 100644
--- a/src/gen/lib/Model/TicketsSort.php
+++ b/src/gen/lib/Model/TicketsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequest.php b/src/gen/lib/Model/TimeOffRequest.php
index b726dd3e8d..105b86cc09 100644
--- a/src/gen/lib/Model/TimeOffRequest.php
+++ b/src/gen/lib/Model/TimeOffRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestNotes.php b/src/gen/lib/Model/TimeOffRequestNotes.php
index f484f3d277..ffcaa6416d 100644
--- a/src/gen/lib/Model/TimeOffRequestNotes.php
+++ b/src/gen/lib/Model/TimeOffRequestNotes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestsFilter.php b/src/gen/lib/Model/TimeOffRequestsFilter.php
index 5418c0f421..510732d0a0 100644
--- a/src/gen/lib/Model/TimeOffRequestsFilter.php
+++ b/src/gen/lib/Model/TimeOffRequestsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponse.php b/src/gen/lib/Model/TooManyRequestsResponse.php
index f8ea15c27e..258669f6e7 100644
--- a/src/gen/lib/Model/TooManyRequestsResponse.php
+++ b/src/gen/lib/Model/TooManyRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponseDetail.php b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
index 137367c92c..9adaadd2a7 100644
--- a/src/gen/lib/Model/TooManyRequestsResponseDetail.php
+++ b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TrackingItem.php b/src/gen/lib/Model/TrackingItem.php
index 081534d28f..4a62694cca 100644
--- a/src/gen/lib/Model/TrackingItem.php
+++ b/src/gen/lib/Model/TrackingItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnauthorizedResponse.php b/src/gen/lib/Model/UnauthorizedResponse.php
index 73c068398c..bcd96adcd0 100644
--- a/src/gen/lib/Model/UnauthorizedResponse.php
+++ b/src/gen/lib/Model/UnauthorizedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnexpectedErrorResponse.php b/src/gen/lib/Model/UnexpectedErrorResponse.php
index 421b110c55..629c65fb9d 100644
--- a/src/gen/lib/Model/UnexpectedErrorResponse.php
+++ b/src/gen/lib/Model/UnexpectedErrorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedApiId.php b/src/gen/lib/Model/UnifiedApiId.php
index 07911af220..fc1c56a6bf 100644
--- a/src/gen/lib/Model/UnifiedApiId.php
+++ b/src/gen/lib/Model/UnifiedApiId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFile.php b/src/gen/lib/Model/UnifiedFile.php
index 94f1758135..352478a176 100644
--- a/src/gen/lib/Model/UnifiedFile.php
+++ b/src/gen/lib/Model/UnifiedFile.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFilePermissions.php b/src/gen/lib/Model/UnifiedFilePermissions.php
index dde48054bb..c6b2c81475 100644
--- a/src/gen/lib/Model/UnifiedFilePermissions.php
+++ b/src/gen/lib/Model/UnifiedFilePermissions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedId.php b/src/gen/lib/Model/UnifiedId.php
index 552c1412d6..cbbaec5ad0 100644
--- a/src/gen/lib/Model/UnifiedId.php
+++ b/src/gen/lib/Model/UnifiedId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnprocessableResponse.php b/src/gen/lib/Model/UnprocessableResponse.php
index e1b0523efb..654c88603f 100644
--- a/src/gen/lib/Model/UnprocessableResponse.php
+++ b/src/gen/lib/Model/UnprocessableResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateActivityResponse.php b/src/gen/lib/Model/UpdateActivityResponse.php
index 2e23c24943..d454d02e1a 100644
--- a/src/gen/lib/Model/UpdateActivityResponse.php
+++ b/src/gen/lib/Model/UpdateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicantResponse.php b/src/gen/lib/Model/UpdateApplicantResponse.php
index 5e1ca9bd2a..645616ac58 100644
--- a/src/gen/lib/Model/UpdateApplicantResponse.php
+++ b/src/gen/lib/Model/UpdateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicationResponse.php b/src/gen/lib/Model/UpdateApplicationResponse.php
index 5c7aee0b82..93b3311ce0 100644
--- a/src/gen/lib/Model/UpdateApplicationResponse.php
+++ b/src/gen/lib/Model/UpdateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateBillResponse.php b/src/gen/lib/Model/UpdateBillResponse.php
index e3ced6586c..dbf1317896 100644
--- a/src/gen/lib/Model/UpdateBillResponse.php
+++ b/src/gen/lib/Model/UpdateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCommentResponse.php b/src/gen/lib/Model/UpdateCommentResponse.php
index d4df1fb307..cf89de4dc9 100644
--- a/src/gen/lib/Model/UpdateCommentResponse.php
+++ b/src/gen/lib/Model/UpdateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCompanyResponse.php b/src/gen/lib/Model/UpdateCompanyResponse.php
index 4184e4c0fb..7fa79cd5ea 100644
--- a/src/gen/lib/Model/UpdateCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConnectionResponse.php b/src/gen/lib/Model/UpdateConnectionResponse.php
index 9060eaf6ae..a70296bc85 100644
--- a/src/gen/lib/Model/UpdateConnectionResponse.php
+++ b/src/gen/lib/Model/UpdateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerRequest.php b/src/gen/lib/Model/UpdateConsumerRequest.php
index ceb0175cfd..da25415059 100644
--- a/src/gen/lib/Model/UpdateConsumerRequest.php
+++ b/src/gen/lib/Model/UpdateConsumerRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerResponse.php b/src/gen/lib/Model/UpdateConsumerResponse.php
index ac7d52dd68..0c97c47f7f 100644
--- a/src/gen/lib/Model/UpdateConsumerResponse.php
+++ b/src/gen/lib/Model/UpdateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateContactResponse.php b/src/gen/lib/Model/UpdateContactResponse.php
index cf7581b7e4..c293eb60dd 100644
--- a/src/gen/lib/Model/UpdateContactResponse.php
+++ b/src/gen/lib/Model/UpdateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCreditNoteResponse.php b/src/gen/lib/Model/UpdateCreditNoteResponse.php
index 0966a3ffcd..56a8bfddca 100644
--- a/src/gen/lib/Model/UpdateCreditNoteResponse.php
+++ b/src/gen/lib/Model/UpdateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingRequest.php b/src/gen/lib/Model/UpdateCustomMappingRequest.php
index b9c4cb0320..20af5518ce 100644
--- a/src/gen/lib/Model/UpdateCustomMappingRequest.php
+++ b/src/gen/lib/Model/UpdateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingResponse.php b/src/gen/lib/Model/UpdateCustomMappingResponse.php
index 9f6e8ce149..1d4a8a5202 100644
--- a/src/gen/lib/Model/UpdateCustomMappingResponse.php
+++ b/src/gen/lib/Model/UpdateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomerResponse.php b/src/gen/lib/Model/UpdateCustomerResponse.php
index e8520221cd..0bfebcd252 100644
--- a/src/gen/lib/Model/UpdateCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDepartmentResponse.php b/src/gen/lib/Model/UpdateDepartmentResponse.php
index 087b56d28a..4146ecba92 100644
--- a/src/gen/lib/Model/UpdateDepartmentResponse.php
+++ b/src/gen/lib/Model/UpdateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveGroupResponse.php b/src/gen/lib/Model/UpdateDriveGroupResponse.php
index 1034af58b6..6a4d7a3974 100644
--- a/src/gen/lib/Model/UpdateDriveGroupResponse.php
+++ b/src/gen/lib/Model/UpdateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveResponse.php b/src/gen/lib/Model/UpdateDriveResponse.php
index d7bbf9cc13..e811a9f162 100644
--- a/src/gen/lib/Model/UpdateDriveResponse.php
+++ b/src/gen/lib/Model/UpdateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
index 022f4dd771..a727ac733e 100644
--- a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
index d433c757c8..633752e3c3 100644
--- a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEmployeeResponse.php b/src/gen/lib/Model/UpdateEmployeeResponse.php
index bc110d7679..7ddbce55b0 100644
--- a/src/gen/lib/Model/UpdateEmployeeResponse.php
+++ b/src/gen/lib/Model/UpdateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileRequest.php b/src/gen/lib/Model/UpdateFileRequest.php
index e4e4db24ab..03e65f4e14 100644
--- a/src/gen/lib/Model/UpdateFileRequest.php
+++ b/src/gen/lib/Model/UpdateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileResponse.php b/src/gen/lib/Model/UpdateFileResponse.php
index d8c7fb35b3..123a1dce40 100644
--- a/src/gen/lib/Model/UpdateFileResponse.php
+++ b/src/gen/lib/Model/UpdateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderRequest.php b/src/gen/lib/Model/UpdateFolderRequest.php
index 93f9bf6e79..cb6380e629 100644
--- a/src/gen/lib/Model/UpdateFolderRequest.php
+++ b/src/gen/lib/Model/UpdateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderResponse.php b/src/gen/lib/Model/UpdateFolderResponse.php
index c96417cd98..a45e261184 100644
--- a/src/gen/lib/Model/UpdateFolderResponse.php
+++ b/src/gen/lib/Model/UpdateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateHrisCompanyResponse.php b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
index df4a0dc31d..51dba221dc 100644
--- a/src/gen/lib/Model/UpdateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
index 7f88aa2e1c..d3b549bec7 100644
--- a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceResponse.php b/src/gen/lib/Model/UpdateInvoiceResponse.php
index 82b7e1e738..87129b219d 100644
--- a/src/gen/lib/Model/UpdateInvoiceResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateItemResponse.php b/src/gen/lib/Model/UpdateItemResponse.php
index fd3e1e66d5..06d6d1b0ff 100644
--- a/src/gen/lib/Model/UpdateItemResponse.php
+++ b/src/gen/lib/Model/UpdateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJobResponse.php b/src/gen/lib/Model/UpdateJobResponse.php
index 17c63eefbd..a0eb8a31fe 100644
--- a/src/gen/lib/Model/UpdateJobResponse.php
+++ b/src/gen/lib/Model/UpdateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJournalEntryResponse.php b/src/gen/lib/Model/UpdateJournalEntryResponse.php
index 23afc75195..6b090d5ca4 100644
--- a/src/gen/lib/Model/UpdateJournalEntryResponse.php
+++ b/src/gen/lib/Model/UpdateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLeadResponse.php b/src/gen/lib/Model/UpdateLeadResponse.php
index def94669a0..46f083b440 100644
--- a/src/gen/lib/Model/UpdateLeadResponse.php
+++ b/src/gen/lib/Model/UpdateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLedgerAccountResponse.php b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
index 02d0045083..4090bb2644 100644
--- a/src/gen/lib/Model/UpdateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLocationResponse.php b/src/gen/lib/Model/UpdateLocationResponse.php
index 1871d9dac5..3514a16590 100644
--- a/src/gen/lib/Model/UpdateLocationResponse.php
+++ b/src/gen/lib/Model/UpdateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMerchantResponse.php b/src/gen/lib/Model/UpdateMerchantResponse.php
index bd71fb28e3..e8f72b32e2 100644
--- a/src/gen/lib/Model/UpdateMerchantResponse.php
+++ b/src/gen/lib/Model/UpdateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMessageResponse.php b/src/gen/lib/Model/UpdateMessageResponse.php
index 17f51f8672..7dbf561af7 100644
--- a/src/gen/lib/Model/UpdateMessageResponse.php
+++ b/src/gen/lib/Model/UpdateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierGroupResponse.php b/src/gen/lib/Model/UpdateModifierGroupResponse.php
index 3ba3000ef7..a1f0f6de23 100644
--- a/src/gen/lib/Model/UpdateModifierGroupResponse.php
+++ b/src/gen/lib/Model/UpdateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierResponse.php b/src/gen/lib/Model/UpdateModifierResponse.php
index 39ca561d36..2e29f7cbbc 100644
--- a/src/gen/lib/Model/UpdateModifierResponse.php
+++ b/src/gen/lib/Model/UpdateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateNoteResponse.php b/src/gen/lib/Model/UpdateNoteResponse.php
index 52959f282b..44b14f2eaa 100644
--- a/src/gen/lib/Model/UpdateNoteResponse.php
+++ b/src/gen/lib/Model/UpdateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOpportunityResponse.php b/src/gen/lib/Model/UpdateOpportunityResponse.php
index 9c670253b8..6e77315480 100644
--- a/src/gen/lib/Model/UpdateOpportunityResponse.php
+++ b/src/gen/lib/Model/UpdateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderResponse.php b/src/gen/lib/Model/UpdateOrderResponse.php
index cbc7b99ae8..1b39ae4f08 100644
--- a/src/gen/lib/Model/UpdateOrderResponse.php
+++ b/src/gen/lib/Model/UpdateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderTypeResponse.php b/src/gen/lib/Model/UpdateOrderTypeResponse.php
index ec65d96186..94d6cd512b 100644
--- a/src/gen/lib/Model/UpdateOrderTypeResponse.php
+++ b/src/gen/lib/Model/UpdateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePaymentResponse.php b/src/gen/lib/Model/UpdatePaymentResponse.php
index d05edae012..816f2972ae 100644
--- a/src/gen/lib/Model/UpdatePaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePipelineResponse.php b/src/gen/lib/Model/UpdatePipelineResponse.php
index d57173b406..2837c98c91 100644
--- a/src/gen/lib/Model/UpdatePipelineResponse.php
+++ b/src/gen/lib/Model/UpdatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePosPaymentResponse.php b/src/gen/lib/Model/UpdatePosPaymentResponse.php
index 290fa3ff5f..a376c2f3cb 100644
--- a/src/gen/lib/Model/UpdatePosPaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateProductResponse.php b/src/gen/lib/Model/UpdateProductResponse.php
index f1c870e420..f5e5cdd6e5 100644
--- a/src/gen/lib/Model/UpdateProductResponse.php
+++ b/src/gen/lib/Model/UpdateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
index cf761c0fbb..28ab3c9d78 100644
--- a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSharedLinkResponse.php b/src/gen/lib/Model/UpdateSharedLinkResponse.php
index 48b125e586..2a65b20fd1 100644
--- a/src/gen/lib/Model/UpdateSharedLinkResponse.php
+++ b/src/gen/lib/Model/UpdateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSupplierResponse.php b/src/gen/lib/Model/UpdateSupplierResponse.php
index 81a5519a54..177ba606b0 100644
--- a/src/gen/lib/Model/UpdateSupplierResponse.php
+++ b/src/gen/lib/Model/UpdateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTaxRateResponse.php b/src/gen/lib/Model/UpdateTaxRateResponse.php
index e5c41b4322..eeceda8118 100644
--- a/src/gen/lib/Model/UpdateTaxRateResponse.php
+++ b/src/gen/lib/Model/UpdateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTenderResponse.php b/src/gen/lib/Model/UpdateTenderResponse.php
index 15aa64d386..79a25bfe3a 100644
--- a/src/gen/lib/Model/UpdateTenderResponse.php
+++ b/src/gen/lib/Model/UpdateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTicketResponse.php b/src/gen/lib/Model/UpdateTicketResponse.php
index 00708f5eda..2ffd512d32 100644
--- a/src/gen/lib/Model/UpdateTicketResponse.php
+++ b/src/gen/lib/Model/UpdateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
index a1005d758e..30497082b1 100644
--- a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUploadSessionResponse.php b/src/gen/lib/Model/UpdateUploadSessionResponse.php
index 113d099a3c..dce81937cc 100644
--- a/src/gen/lib/Model/UpdateUploadSessionResponse.php
+++ b/src/gen/lib/Model/UpdateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUserResponse.php b/src/gen/lib/Model/UpdateUserResponse.php
index cad146df43..8e7e5993bd 100644
--- a/src/gen/lib/Model/UpdateUserResponse.php
+++ b/src/gen/lib/Model/UpdateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookRequest.php b/src/gen/lib/Model/UpdateWebhookRequest.php
index b3b9247082..abfe0c4e91 100644
--- a/src/gen/lib/Model/UpdateWebhookRequest.php
+++ b/src/gen/lib/Model/UpdateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookResponse.php b/src/gen/lib/Model/UpdateWebhookResponse.php
index a37641a987..795978c6a5 100644
--- a/src/gen/lib/Model/UpdateWebhookResponse.php
+++ b/src/gen/lib/Model/UpdateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UploadSession.php b/src/gen/lib/Model/UploadSession.php
index 3eb3f3f75c..6bbe46f18b 100644
--- a/src/gen/lib/Model/UploadSession.php
+++ b/src/gen/lib/Model/UploadSession.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/User.php b/src/gen/lib/Model/User.php
index 2e927178f7..47d507a210 100644
--- a/src/gen/lib/Model/User.php
+++ b/src/gen/lib/Model/User.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VaultEventType.php b/src/gen/lib/Model/VaultEventType.php
index 4bc93e4d31..a5c8696074 100644
--- a/src/gen/lib/Model/VaultEventType.php
+++ b/src/gen/lib/Model/VaultEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VirtualWebhooks.php b/src/gen/lib/Model/VirtualWebhooks.php
index a3b139ba6b..9434eb4902 100644
--- a/src/gen/lib/Model/VirtualWebhooks.php
+++ b/src/gen/lib/Model/VirtualWebhooks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WalletDetails.php b/src/gen/lib/Model/WalletDetails.php
index b6e6982352..7a323f9ba7 100644
--- a/src/gen/lib/Model/WalletDetails.php
+++ b/src/gen/lib/Model/WalletDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Webhook.php b/src/gen/lib/Model/Webhook.php
index 3225cacfec..e4f44f1d81 100644
--- a/src/gen/lib/Model/Webhook.php
+++ b/src/gen/lib/Model/Webhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEvent.php b/src/gen/lib/Model/WebhookEvent.php
index 8d59528d4e..8d7221fa5e 100644
--- a/src/gen/lib/Model/WebhookEvent.php
+++ b/src/gen/lib/Model/WebhookEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLog.php b/src/gen/lib/Model/WebhookEventLog.php
index 201874a77a..bcc96924f7 100644
--- a/src/gen/lib/Model/WebhookEventLog.php
+++ b/src/gen/lib/Model/WebhookEventLog.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogAttempts.php b/src/gen/lib/Model/WebhookEventLogAttempts.php
index 69e25ddf30..e9cc738dcf 100644
--- a/src/gen/lib/Model/WebhookEventLogAttempts.php
+++ b/src/gen/lib/Model/WebhookEventLogAttempts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogService.php b/src/gen/lib/Model/WebhookEventLogService.php
index c2ea2997b3..0a00913543 100644
--- a/src/gen/lib/Model/WebhookEventLogService.php
+++ b/src/gen/lib/Model/WebhookEventLogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilter.php b/src/gen/lib/Model/WebhookEventLogsFilter.php
index 8b018bd141..e369e30d15 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilter.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilterService.php b/src/gen/lib/Model/WebhookEventLogsFilterService.php
index 17a79c4a45..b4332df3ed 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilterService.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilterService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventType.php b/src/gen/lib/Model/WebhookEventType.php
index 7a80b2fd19..b36a1854d5 100644
--- a/src/gen/lib/Model/WebhookEventType.php
+++ b/src/gen/lib/Model/WebhookEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSubscription.php b/src/gen/lib/Model/WebhookSubscription.php
index b1ad703863..981d4e3707 100644
--- a/src/gen/lib/Model/WebhookSubscription.php
+++ b/src/gen/lib/Model/WebhookSubscription.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSupport.php b/src/gen/lib/Model/WebhookSupport.php
index a40e24231e..3ca2dcc6b6 100644
--- a/src/gen/lib/Model/WebhookSupport.php
+++ b/src/gen/lib/Model/WebhookSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Website.php b/src/gen/lib/Model/Website.php
index 1f622e3d7f..c391989068 100644
--- a/src/gen/lib/Model/Website.php
+++ b/src/gen/lib/Model/Website.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ObjectSerializer.php b/src/gen/lib/ObjectSerializer.php
index 6240a66e13..d9c01c9091 100644
--- a/src/gen/lib/ObjectSerializer.php
+++ b/src/gen/lib/ObjectSerializer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/AccountingApiTest.php b/src/gen/test/Api/AccountingApiTest.php
index 6987304347..9993874093 100644
--- a/src/gen/test/Api/AccountingApiTest.php
+++ b/src/gen/test/Api/AccountingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/AtsApiTest.php b/src/gen/test/Api/AtsApiTest.php
index e727e88f32..624f1fe06c 100644
--- a/src/gen/test/Api/AtsApiTest.php
+++ b/src/gen/test/Api/AtsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/ConnectorApiTest.php b/src/gen/test/Api/ConnectorApiTest.php
index d9808589ec..0f22527b46 100644
--- a/src/gen/test/Api/ConnectorApiTest.php
+++ b/src/gen/test/Api/ConnectorApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/CrmApiTest.php b/src/gen/test/Api/CrmApiTest.php
index 358fcbf2e7..c6f0574361 100644
--- a/src/gen/test/Api/CrmApiTest.php
+++ b/src/gen/test/Api/CrmApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/EcommerceApiTest.php b/src/gen/test/Api/EcommerceApiTest.php
index 31d9da7044..039cbcd64d 100644
--- a/src/gen/test/Api/EcommerceApiTest.php
+++ b/src/gen/test/Api/EcommerceApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/FileStorageApiTest.php b/src/gen/test/Api/FileStorageApiTest.php
index dc120301a3..ff9be3827e 100644
--- a/src/gen/test/Api/FileStorageApiTest.php
+++ b/src/gen/test/Api/FileStorageApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/HrisApiTest.php b/src/gen/test/Api/HrisApiTest.php
index 8dd4f1404c..ee300d97d3 100644
--- a/src/gen/test/Api/HrisApiTest.php
+++ b/src/gen/test/Api/HrisApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/IssueTrackingApiTest.php b/src/gen/test/Api/IssueTrackingApiTest.php
index b4ddb82f44..6db5f624a8 100644
--- a/src/gen/test/Api/IssueTrackingApiTest.php
+++ b/src/gen/test/Api/IssueTrackingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/LeadApiTest.php b/src/gen/test/Api/LeadApiTest.php
index 63b367b086..f55b740e91 100644
--- a/src/gen/test/Api/LeadApiTest.php
+++ b/src/gen/test/Api/LeadApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/PosApiTest.php b/src/gen/test/Api/PosApiTest.php
index a9cf3030ab..e0441e1076 100644
--- a/src/gen/test/Api/PosApiTest.php
+++ b/src/gen/test/Api/PosApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/SmsApiTest.php b/src/gen/test/Api/SmsApiTest.php
index 10432ccacd..22271ea139 100644
--- a/src/gen/test/Api/SmsApiTest.php
+++ b/src/gen/test/Api/SmsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/VaultApiTest.php b/src/gen/test/Api/VaultApiTest.php
index 09e74472e5..2a19517a9a 100644
--- a/src/gen/test/Api/VaultApiTest.php
+++ b/src/gen/test/Api/VaultApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/WebhookApiTest.php b/src/gen/test/Api/WebhookApiTest.php
index d1057f3c05..053315106f 100644
--- a/src/gen/test/Api/WebhookApiTest.php
+++ b/src/gen/test/Api/WebhookApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingEventTypeTest.php b/src/gen/test/Model/AccountingEventTypeTest.php
index b7a959c913..0854af39bf 100644
--- a/src/gen/test/Model/AccountingEventTypeTest.php
+++ b/src/gen/test/Model/AccountingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivitiesFilterTest.php b/src/gen/test/Model/ActivitiesFilterTest.php
index 7debb2d29a..8ca94f3302 100644
--- a/src/gen/test/Model/ActivitiesFilterTest.php
+++ b/src/gen/test/Model/ActivitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivitiesSortTest.php b/src/gen/test/Model/ActivitiesSortTest.php
index edd8ca4d10..58efeb27d9 100644
--- a/src/gen/test/Model/ActivitiesSortTest.php
+++ b/src/gen/test/Model/ActivitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityAttendeeTest.php b/src/gen/test/Model/ActivityAttendeeTest.php
index 2a0a7f651d..89406d65d1 100644
--- a/src/gen/test/Model/ActivityAttendeeTest.php
+++ b/src/gen/test/Model/ActivityAttendeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityTest.php b/src/gen/test/Model/ActivityTest.php
index c06da51334..3143d839b1 100644
--- a/src/gen/test/Model/ActivityTest.php
+++ b/src/gen/test/Model/ActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AddressTest.php b/src/gen/test/Model/AddressTest.php
index 3dc474010d..4f911487f5 100644
--- a/src/gen/test/Model/AddressTest.php
+++ b/src/gen/test/Model/AddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
index ea265e0d03..fd533f11df 100644
--- a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageTest.php
index 60d03e12bc..70a20bdd73 100644
--- a/src/gen/test/Model/ApiResourceCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
index c3674c2d45..e854411644 100644
--- a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
+++ b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceTest.php b/src/gen/test/Model/ApiResourceTest.php
index 73861d2066..3246f574f6 100644
--- a/src/gen/test/Model/ApiResourceTest.php
+++ b/src/gen/test/Model/ApiResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourcesTest.php b/src/gen/test/Model/ApiResourcesTest.php
index 237795ad82..3d24f932f1 100644
--- a/src/gen/test/Model/ApiResourcesTest.php
+++ b/src/gen/test/Model/ApiResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiStatusTest.php b/src/gen/test/Model/ApiStatusTest.php
index 4ebddb37bb..716b50fa8b 100644
--- a/src/gen/test/Model/ApiStatusTest.php
+++ b/src/gen/test/Model/ApiStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiTest.php b/src/gen/test/Model/ApiTest.php
index 791b76a1e5..f79626585f 100644
--- a/src/gen/test/Model/ApiTest.php
+++ b/src/gen/test/Model/ApiTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApisFilterTest.php b/src/gen/test/Model/ApisFilterTest.php
index 125503de6f..9d0bfd8d27 100644
--- a/src/gen/test/Model/ApisFilterTest.php
+++ b/src/gen/test/Model/ApisFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantSocialLinksTest.php b/src/gen/test/Model/ApplicantSocialLinksTest.php
index 92747dbc37..a64641a18a 100644
--- a/src/gen/test/Model/ApplicantSocialLinksTest.php
+++ b/src/gen/test/Model/ApplicantSocialLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantTest.php b/src/gen/test/Model/ApplicantTest.php
index b771f33f16..9d1d44e914 100644
--- a/src/gen/test/Model/ApplicantTest.php
+++ b/src/gen/test/Model/ApplicantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantWebsitesTest.php b/src/gen/test/Model/ApplicantWebsitesTest.php
index 0130ee3a32..47ef1ee0c7 100644
--- a/src/gen/test/Model/ApplicantWebsitesTest.php
+++ b/src/gen/test/Model/ApplicantWebsitesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantsFilterTest.php b/src/gen/test/Model/ApplicantsFilterTest.php
index 133d0df22f..7bfb4b9350 100644
--- a/src/gen/test/Model/ApplicantsFilterTest.php
+++ b/src/gen/test/Model/ApplicantsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationStageTest.php b/src/gen/test/Model/ApplicationStageTest.php
index bf31fb6ebb..92419f82e2 100644
--- a/src/gen/test/Model/ApplicationStageTest.php
+++ b/src/gen/test/Model/ApplicationStageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationTest.php b/src/gen/test/Model/ApplicationTest.php
index c92bf327f0..1e8561aca1 100644
--- a/src/gen/test/Model/ApplicationTest.php
+++ b/src/gen/test/Model/ApplicationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AssigneeTest.php b/src/gen/test/Model/AssigneeTest.php
index a7b0cb2853..a2cf495832 100644
--- a/src/gen/test/Model/AssigneeTest.php
+++ b/src/gen/test/Model/AssigneeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsActivityTest.php b/src/gen/test/Model/AtsActivityTest.php
index be5ec42ca5..4639626c4b 100644
--- a/src/gen/test/Model/AtsActivityTest.php
+++ b/src/gen/test/Model/AtsActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsEventTypeTest.php b/src/gen/test/Model/AtsEventTypeTest.php
index 372882d99a..fb1b36e708 100644
--- a/src/gen/test/Model/AtsEventTypeTest.php
+++ b/src/gen/test/Model/AtsEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AuthTypeTest.php b/src/gen/test/Model/AuthTypeTest.php
index fae5516a91..799a7e46d9 100644
--- a/src/gen/test/Model/AuthTypeTest.php
+++ b/src/gen/test/Model/AuthTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BadRequestResponseTest.php b/src/gen/test/Model/BadRequestResponseTest.php
index 453e1101bc..c60f0a4fc7 100644
--- a/src/gen/test/Model/BadRequestResponseTest.php
+++ b/src/gen/test/Model/BadRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
index 523a83427f..405bdec45b 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
index b95a3f884a..4cbe9c7688 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
index e3053b2d81..e02fefee1a 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
index b37b9c5c15..01668e343b 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsTest.php
index b8ca3ea014..dc9248d9ef 100644
--- a/src/gen/test/Model/BalanceSheetAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityItemsTest.php b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
index 9fee0ca311..cc4584abae 100644
--- a/src/gen/test/Model/BalanceSheetEquityItemsTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityTest.php b/src/gen/test/Model/BalanceSheetEquityTest.php
index 1033803a45..950425e301 100644
--- a/src/gen/test/Model/BalanceSheetEquityTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetFilterTest.php b/src/gen/test/Model/BalanceSheetFilterTest.php
index 98782e28e8..fc7006a5c2 100644
--- a/src/gen/test/Model/BalanceSheetFilterTest.php
+++ b/src/gen/test/Model/BalanceSheetFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
index 2341c8b116..93228617cc 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
index 18435b6586..75deaa82e7 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetTest.php b/src/gen/test/Model/BalanceSheetTest.php
index be43275755..85718646cc 100644
--- a/src/gen/test/Model/BalanceSheetTest.php
+++ b/src/gen/test/Model/BalanceSheetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BankAccountTest.php b/src/gen/test/Model/BankAccountTest.php
index 1829879387..fdcacfde91 100644
--- a/src/gen/test/Model/BankAccountTest.php
+++ b/src/gen/test/Model/BankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BenefitTest.php b/src/gen/test/Model/BenefitTest.php
index 4ea0b47efc..cd529b3d71 100644
--- a/src/gen/test/Model/BenefitTest.php
+++ b/src/gen/test/Model/BenefitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillLineItemTest.php b/src/gen/test/Model/BillLineItemTest.php
index 3c14fdff8d..caa3d37689 100644
--- a/src/gen/test/Model/BillLineItemTest.php
+++ b/src/gen/test/Model/BillLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillTest.php b/src/gen/test/Model/BillTest.php
index 73bb0b9c1b..a1cf60d8b6 100644
--- a/src/gen/test/Model/BillTest.php
+++ b/src/gen/test/Model/BillTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsFilterTest.php b/src/gen/test/Model/BillsFilterTest.php
index afa67a3a15..4f4f0072bf 100644
--- a/src/gen/test/Model/BillsFilterTest.php
+++ b/src/gen/test/Model/BillsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsSortTest.php b/src/gen/test/Model/BillsSortTest.php
index 47eba7231d..9530de5076 100644
--- a/src/gen/test/Model/BillsSortTest.php
+++ b/src/gen/test/Model/BillsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BranchTest.php b/src/gen/test/Model/BranchTest.php
index 1760470f2a..c9baa38e2c 100644
--- a/src/gen/test/Model/BranchTest.php
+++ b/src/gen/test/Model/BranchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CashDetailsTest.php b/src/gen/test/Model/CashDetailsTest.php
index 8fb9142d5d..b11428f339 100644
--- a/src/gen/test/Model/CashDetailsTest.php
+++ b/src/gen/test/Model/CashDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTagTest.php b/src/gen/test/Model/CollectionTagTest.php
index 5883ffa384..f33fd289fa 100644
--- a/src/gen/test/Model/CollectionTagTest.php
+++ b/src/gen/test/Model/CollectionTagTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTest.php b/src/gen/test/Model/CollectionTest.php
index 36c38e89e0..cba55b0b5e 100644
--- a/src/gen/test/Model/CollectionTest.php
+++ b/src/gen/test/Model/CollectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTicketCommentTest.php b/src/gen/test/Model/CollectionTicketCommentTest.php
index df20df8ce9..acb394e810 100644
--- a/src/gen/test/Model/CollectionTicketCommentTest.php
+++ b/src/gen/test/Model/CollectionTicketCommentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionUserTest.php b/src/gen/test/Model/CollectionUserTest.php
index b327f1d07e..fba44ed72b 100644
--- a/src/gen/test/Model/CollectionUserTest.php
+++ b/src/gen/test/Model/CollectionUserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionsSortTest.php b/src/gen/test/Model/CollectionsSortTest.php
index dda8fbf122..4d0daca847 100644
--- a/src/gen/test/Model/CollectionsSortTest.php
+++ b/src/gen/test/Model/CollectionsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CommentsSortTest.php b/src/gen/test/Model/CommentsSortTest.php
index 67b39b5792..665098f211 100644
--- a/src/gen/test/Model/CommentsSortTest.php
+++ b/src/gen/test/Model/CommentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesFilterTest.php b/src/gen/test/Model/CompaniesFilterTest.php
index 6deb2b3bad..3ae23b8273 100644
--- a/src/gen/test/Model/CompaniesFilterTest.php
+++ b/src/gen/test/Model/CompaniesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesSortTest.php b/src/gen/test/Model/CompaniesSortTest.php
index e9ba6d39e0..fe61be37a4 100644
--- a/src/gen/test/Model/CompaniesSortTest.php
+++ b/src/gen/test/Model/CompaniesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyInfoTest.php b/src/gen/test/Model/CompanyInfoTest.php
index 16d04ec352..125a3efee4 100644
--- a/src/gen/test/Model/CompanyInfoTest.php
+++ b/src/gen/test/Model/CompanyInfoTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyRowTypeTest.php b/src/gen/test/Model/CompanyRowTypeTest.php
index 3bec848e7c..c6666b1429 100644
--- a/src/gen/test/Model/CompanyRowTypeTest.php
+++ b/src/gen/test/Model/CompanyRowTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyTest.php b/src/gen/test/Model/CompanyTest.php
index 678a9e609f..2bbdabd36f 100644
--- a/src/gen/test/Model/CompanyTest.php
+++ b/src/gen/test/Model/CompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompensationTest.php b/src/gen/test/Model/CompensationTest.php
index 6ee5358481..d27d688057 100644
--- a/src/gen/test/Model/CompensationTest.php
+++ b/src/gen/test/Model/CompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionConfigurationTest.php b/src/gen/test/Model/ConnectionConfigurationTest.php
index 129bdc1981..30bdb9ce8a 100644
--- a/src/gen/test/Model/ConnectionConfigurationTest.php
+++ b/src/gen/test/Model/ConnectionConfigurationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionDefaultsTest.php b/src/gen/test/Model/ConnectionDefaultsTest.php
index a68bbb53e9..7bae606993 100644
--- a/src/gen/test/Model/ConnectionDefaultsTest.php
+++ b/src/gen/test/Model/ConnectionDefaultsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
index dd52ee9c40..31b20d240c 100644
--- a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
+++ b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataTest.php b/src/gen/test/Model/ConnectionImportDataTest.php
index a22ebf24c8..f41d44f41a 100644
--- a/src/gen/test/Model/ConnectionImportDataTest.php
+++ b/src/gen/test/Model/ConnectionImportDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionMetadataTest.php b/src/gen/test/Model/ConnectionMetadataTest.php
index dd28662a7d..6a63699bc4 100644
--- a/src/gen/test/Model/ConnectionMetadataTest.php
+++ b/src/gen/test/Model/ConnectionMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionStateTest.php b/src/gen/test/Model/ConnectionStateTest.php
index 959bc1f275..5d7167035c 100644
--- a/src/gen/test/Model/ConnectionStateTest.php
+++ b/src/gen/test/Model/ConnectionStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionTest.php b/src/gen/test/Model/ConnectionTest.php
index 9a2ce3006b..b684994def 100644
--- a/src/gen/test/Model/ConnectionTest.php
+++ b/src/gen/test/Model/ConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionWebhookTest.php b/src/gen/test/Model/ConnectionWebhookTest.php
index ccd5d6c1cf..ffbc6bac37 100644
--- a/src/gen/test/Model/ConnectionWebhookTest.php
+++ b/src/gen/test/Model/ConnectionWebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorDocTest.php b/src/gen/test/Model/ConnectorDocTest.php
index 826d36c5dc..6f820f7ec8 100644
--- a/src/gen/test/Model/ConnectorDocTest.php
+++ b/src/gen/test/Model/ConnectorDocTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorEventTest.php b/src/gen/test/Model/ConnectorEventTest.php
index 0b3df07275..c701e61d3b 100644
--- a/src/gen/test/Model/ConnectorEventTest.php
+++ b/src/gen/test/Model/ConnectorEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopes1Test.php b/src/gen/test/Model/ConnectorOauthScopes1Test.php
index 769521492d..f49f3dc60f 100644
--- a/src/gen/test/Model/ConnectorOauthScopes1Test.php
+++ b/src/gen/test/Model/ConnectorOauthScopes1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopesTest.php b/src/gen/test/Model/ConnectorOauthScopesTest.php
index 290bfb1a03..482e8accc5 100644
--- a/src/gen/test/Model/ConnectorOauthScopesTest.php
+++ b/src/gen/test/Model/ConnectorOauthScopesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorResourceTest.php b/src/gen/test/Model/ConnectorResourceTest.php
index 80b4260640..13c888978f 100644
--- a/src/gen/test/Model/ConnectorResourceTest.php
+++ b/src/gen/test/Model/ConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorSettingTest.php b/src/gen/test/Model/ConnectorSettingTest.php
index 42d03f91ca..97c71a05e4 100644
--- a/src/gen/test/Model/ConnectorSettingTest.php
+++ b/src/gen/test/Model/ConnectorSettingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorStatusTest.php b/src/gen/test/Model/ConnectorStatusTest.php
index 051528fac9..038576a605 100644
--- a/src/gen/test/Model/ConnectorStatusTest.php
+++ b/src/gen/test/Model/ConnectorStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTest.php b/src/gen/test/Model/ConnectorTest.php
index e9cebcfa1e..e3d73e7f99 100644
--- a/src/gen/test/Model/ConnectorTest.php
+++ b/src/gen/test/Model/ConnectorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTlsSupportTest.php b/src/gen/test/Model/ConnectorTlsSupportTest.php
index 7f04df614b..77d660ffdd 100644
--- a/src/gen/test/Model/ConnectorTlsSupportTest.php
+++ b/src/gen/test/Model/ConnectorTlsSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorUnifiedApisTest.php b/src/gen/test/Model/ConnectorUnifiedApisTest.php
index 9d2e3f82ef..52c06d8524 100644
--- a/src/gen/test/Model/ConnectorUnifiedApisTest.php
+++ b/src/gen/test/Model/ConnectorUnifiedApisTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorsFilterTest.php b/src/gen/test/Model/ConnectorsFilterTest.php
index 0e65b04b1e..43d2ed9d2e 100644
--- a/src/gen/test/Model/ConnectorsFilterTest.php
+++ b/src/gen/test/Model/ConnectorsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerConnectionTest.php b/src/gen/test/Model/ConsumerConnectionTest.php
index de513aef37..9f173cc187 100644
--- a/src/gen/test/Model/ConsumerConnectionTest.php
+++ b/src/gen/test/Model/ConsumerConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerMetadataTest.php b/src/gen/test/Model/ConsumerMetadataTest.php
index 7e3b65510f..19d9cad890 100644
--- a/src/gen/test/Model/ConsumerMetadataTest.php
+++ b/src/gen/test/Model/ConsumerMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
index d218917339..2a48c033a0 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
index 01e590ca18..86d57b1eda 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerTest.php b/src/gen/test/Model/ConsumerTest.php
index f43c38ca88..2735a8b859 100644
--- a/src/gen/test/Model/ConsumerTest.php
+++ b/src/gen/test/Model/ConsumerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactTest.php b/src/gen/test/Model/ContactTest.php
index f3ce2f510a..39d5b887e2 100644
--- a/src/gen/test/Model/ContactTest.php
+++ b/src/gen/test/Model/ContactTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsFilterTest.php b/src/gen/test/Model/ContactsFilterTest.php
index e124865640..7d5cbcfbbc 100644
--- a/src/gen/test/Model/ContactsFilterTest.php
+++ b/src/gen/test/Model/ContactsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsSortTest.php b/src/gen/test/Model/ContactsSortTest.php
index d4fbb4eebc..629e2d6d3e 100644
--- a/src/gen/test/Model/ContactsSortTest.php
+++ b/src/gen/test/Model/ContactsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CopyFolderRequestTest.php b/src/gen/test/Model/CopyFolderRequestTest.php
index 51ae479a7a..85caa27698 100644
--- a/src/gen/test/Model/CopyFolderRequestTest.php
+++ b/src/gen/test/Model/CopyFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateActivityResponseTest.php b/src/gen/test/Model/CreateActivityResponseTest.php
index abd36bfd7d..965d185637 100644
--- a/src/gen/test/Model/CreateActivityResponseTest.php
+++ b/src/gen/test/Model/CreateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicantResponseTest.php b/src/gen/test/Model/CreateApplicantResponseTest.php
index e0b2bb1332..9b624ee700 100644
--- a/src/gen/test/Model/CreateApplicantResponseTest.php
+++ b/src/gen/test/Model/CreateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicationResponseTest.php b/src/gen/test/Model/CreateApplicationResponseTest.php
index ee0f470885..9b7804aa7f 100644
--- a/src/gen/test/Model/CreateApplicationResponseTest.php
+++ b/src/gen/test/Model/CreateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateBillResponseTest.php b/src/gen/test/Model/CreateBillResponseTest.php
index 945b0716c4..189fbe0ec3 100644
--- a/src/gen/test/Model/CreateBillResponseTest.php
+++ b/src/gen/test/Model/CreateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCommentResponseTest.php b/src/gen/test/Model/CreateCommentResponseTest.php
index 40f4e84c6c..44a5a7293e 100644
--- a/src/gen/test/Model/CreateCommentResponseTest.php
+++ b/src/gen/test/Model/CreateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCompanyResponseTest.php b/src/gen/test/Model/CreateCompanyResponseTest.php
index c02390e13a..fe4d65c002 100644
--- a/src/gen/test/Model/CreateCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConnectionResponseTest.php b/src/gen/test/Model/CreateConnectionResponseTest.php
index a160dae391..0cf6f92dcd 100644
--- a/src/gen/test/Model/CreateConnectionResponseTest.php
+++ b/src/gen/test/Model/CreateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConsumerResponseTest.php b/src/gen/test/Model/CreateConsumerResponseTest.php
index 5765215ba4..1fdc0df808 100644
--- a/src/gen/test/Model/CreateConsumerResponseTest.php
+++ b/src/gen/test/Model/CreateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateContactResponseTest.php b/src/gen/test/Model/CreateContactResponseTest.php
index 8c090e8856..d0b6b64aa6 100644
--- a/src/gen/test/Model/CreateContactResponseTest.php
+++ b/src/gen/test/Model/CreateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCreditNoteResponseTest.php b/src/gen/test/Model/CreateCreditNoteResponseTest.php
index 8d9a6bd96c..6110a8af0d 100644
--- a/src/gen/test/Model/CreateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/CreateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingRequestTest.php b/src/gen/test/Model/CreateCustomMappingRequestTest.php
index 0f77809e1d..024c00208a 100644
--- a/src/gen/test/Model/CreateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/CreateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingResponseTest.php b/src/gen/test/Model/CreateCustomMappingResponseTest.php
index 70cc06a95a..744a938bc5 100644
--- a/src/gen/test/Model/CreateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/CreateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomerResponseTest.php b/src/gen/test/Model/CreateCustomerResponseTest.php
index ec99feb327..093d261b7f 100644
--- a/src/gen/test/Model/CreateCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDepartmentResponseTest.php b/src/gen/test/Model/CreateDepartmentResponseTest.php
index 1ddc8a5ba1..05cd7fcc82 100644
--- a/src/gen/test/Model/CreateDepartmentResponseTest.php
+++ b/src/gen/test/Model/CreateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveGroupResponseTest.php b/src/gen/test/Model/CreateDriveGroupResponseTest.php
index 7ed1877be6..5ce749a1e5 100644
--- a/src/gen/test/Model/CreateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/CreateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveResponseTest.php b/src/gen/test/Model/CreateDriveResponseTest.php
index 0c42952161..14bdcface1 100644
--- a/src/gen/test/Model/CreateDriveResponseTest.php
+++ b/src/gen/test/Model/CreateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
index 44f7cf7efa..509a4dc84d 100644
--- a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
index 2cc289face..a218734a9f 100644
--- a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEmployeeResponseTest.php b/src/gen/test/Model/CreateEmployeeResponseTest.php
index 2f7dad00f5..e45f1d604b 100644
--- a/src/gen/test/Model/CreateEmployeeResponseTest.php
+++ b/src/gen/test/Model/CreateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileRequestTest.php b/src/gen/test/Model/CreateFileRequestTest.php
index 2f89a499dc..68fe68328d 100644
--- a/src/gen/test/Model/CreateFileRequestTest.php
+++ b/src/gen/test/Model/CreateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileResponseTest.php b/src/gen/test/Model/CreateFileResponseTest.php
index 77d2faeec3..4eb084fb4b 100644
--- a/src/gen/test/Model/CreateFileResponseTest.php
+++ b/src/gen/test/Model/CreateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderRequestTest.php b/src/gen/test/Model/CreateFolderRequestTest.php
index b33418ad7c..499cef09e6 100644
--- a/src/gen/test/Model/CreateFolderRequestTest.php
+++ b/src/gen/test/Model/CreateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderResponseTest.php b/src/gen/test/Model/CreateFolderResponseTest.php
index 83d1e24463..06012ca0a3 100644
--- a/src/gen/test/Model/CreateFolderResponseTest.php
+++ b/src/gen/test/Model/CreateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateHrisCompanyResponseTest.php b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
index 546ee6edd2..302f3396fa 100644
--- a/src/gen/test/Model/CreateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceItemResponseTest.php b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
index f013d9ea31..22bd940b97 100644
--- a/src/gen/test/Model/CreateInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceResponseTest.php b/src/gen/test/Model/CreateInvoiceResponseTest.php
index 73525df9c4..7e0f9891c3 100644
--- a/src/gen/test/Model/CreateInvoiceResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateItemResponseTest.php b/src/gen/test/Model/CreateItemResponseTest.php
index eea2246ce8..c045b70b77 100644
--- a/src/gen/test/Model/CreateItemResponseTest.php
+++ b/src/gen/test/Model/CreateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJobResponseTest.php b/src/gen/test/Model/CreateJobResponseTest.php
index a72ec6e04e..c076d97ec5 100644
--- a/src/gen/test/Model/CreateJobResponseTest.php
+++ b/src/gen/test/Model/CreateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJournalEntryResponseTest.php b/src/gen/test/Model/CreateJournalEntryResponseTest.php
index 1d71f9db1d..c346c481b1 100644
--- a/src/gen/test/Model/CreateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/CreateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLeadResponseTest.php b/src/gen/test/Model/CreateLeadResponseTest.php
index 8a889135ea..0ac0d20c96 100644
--- a/src/gen/test/Model/CreateLeadResponseTest.php
+++ b/src/gen/test/Model/CreateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLedgerAccountResponseTest.php b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
index a326b84a72..cb0cacf9f1 100644
--- a/src/gen/test/Model/CreateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLocationResponseTest.php b/src/gen/test/Model/CreateLocationResponseTest.php
index c7bc033bda..8ee964f24c 100644
--- a/src/gen/test/Model/CreateLocationResponseTest.php
+++ b/src/gen/test/Model/CreateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMerchantResponseTest.php b/src/gen/test/Model/CreateMerchantResponseTest.php
index f578e07387..6855f6f2c8 100644
--- a/src/gen/test/Model/CreateMerchantResponseTest.php
+++ b/src/gen/test/Model/CreateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMessageResponseTest.php b/src/gen/test/Model/CreateMessageResponseTest.php
index 9b6a381cab..a74c8579ad 100644
--- a/src/gen/test/Model/CreateMessageResponseTest.php
+++ b/src/gen/test/Model/CreateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierGroupResponseTest.php b/src/gen/test/Model/CreateModifierGroupResponseTest.php
index 4c3f48436b..e207cac35a 100644
--- a/src/gen/test/Model/CreateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/CreateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierResponseTest.php b/src/gen/test/Model/CreateModifierResponseTest.php
index 04d021a564..ec88ba13ce 100644
--- a/src/gen/test/Model/CreateModifierResponseTest.php
+++ b/src/gen/test/Model/CreateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateNoteResponseTest.php b/src/gen/test/Model/CreateNoteResponseTest.php
index 93a60cf3e9..95316d8b75 100644
--- a/src/gen/test/Model/CreateNoteResponseTest.php
+++ b/src/gen/test/Model/CreateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOpportunityResponseTest.php b/src/gen/test/Model/CreateOpportunityResponseTest.php
index 68e45cf3c5..b568442b10 100644
--- a/src/gen/test/Model/CreateOpportunityResponseTest.php
+++ b/src/gen/test/Model/CreateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderResponseTest.php b/src/gen/test/Model/CreateOrderResponseTest.php
index 8dd32325f1..6edf848371 100644
--- a/src/gen/test/Model/CreateOrderResponseTest.php
+++ b/src/gen/test/Model/CreateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderTypeResponseTest.php b/src/gen/test/Model/CreateOrderTypeResponseTest.php
index 3241ac4e24..b857865660 100644
--- a/src/gen/test/Model/CreateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/CreateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePaymentResponseTest.php b/src/gen/test/Model/CreatePaymentResponseTest.php
index aa10614071..c84ed081b5 100644
--- a/src/gen/test/Model/CreatePaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePipelineResponseTest.php b/src/gen/test/Model/CreatePipelineResponseTest.php
index 69ff17362c..9c7d0e79a3 100644
--- a/src/gen/test/Model/CreatePipelineResponseTest.php
+++ b/src/gen/test/Model/CreatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePosPaymentResponseTest.php b/src/gen/test/Model/CreatePosPaymentResponseTest.php
index 9163da2df6..4fd56f11f8 100644
--- a/src/gen/test/Model/CreatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateProductResponseTest.php b/src/gen/test/Model/CreateProductResponseTest.php
index 012145b7b7..0c9745bed0 100644
--- a/src/gen/test/Model/CreateProductResponseTest.php
+++ b/src/gen/test/Model/CreateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
index 6c859ba77b..546b192d20 100644
--- a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseDataTest.php b/src/gen/test/Model/CreateSessionResponseDataTest.php
index 43f76423a7..633677c249 100644
--- a/src/gen/test/Model/CreateSessionResponseDataTest.php
+++ b/src/gen/test/Model/CreateSessionResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseTest.php b/src/gen/test/Model/CreateSessionResponseTest.php
index f812489fc5..464685b2e6 100644
--- a/src/gen/test/Model/CreateSessionResponseTest.php
+++ b/src/gen/test/Model/CreateSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSharedLinkResponseTest.php b/src/gen/test/Model/CreateSharedLinkResponseTest.php
index ca214c5db2..deb9674df3 100644
--- a/src/gen/test/Model/CreateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/CreateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSupplierResponseTest.php b/src/gen/test/Model/CreateSupplierResponseTest.php
index beff90ae4e..4d517f2d4c 100644
--- a/src/gen/test/Model/CreateSupplierResponseTest.php
+++ b/src/gen/test/Model/CreateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTaxRateResponseTest.php b/src/gen/test/Model/CreateTaxRateResponseTest.php
index 069bbebd62..14780b9fc8 100644
--- a/src/gen/test/Model/CreateTaxRateResponseTest.php
+++ b/src/gen/test/Model/CreateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTenderResponseTest.php b/src/gen/test/Model/CreateTenderResponseTest.php
index e111483c80..f039b6d29b 100644
--- a/src/gen/test/Model/CreateTenderResponseTest.php
+++ b/src/gen/test/Model/CreateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTicketResponseTest.php b/src/gen/test/Model/CreateTicketResponseTest.php
index 5320ebdecf..0a0f8e2439 100644
--- a/src/gen/test/Model/CreateTicketResponseTest.php
+++ b/src/gen/test/Model/CreateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
index bc859bceec..c81f524362 100644
--- a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionRequestTest.php b/src/gen/test/Model/CreateUploadSessionRequestTest.php
index 9fa43bdc21..27002fe013 100644
--- a/src/gen/test/Model/CreateUploadSessionRequestTest.php
+++ b/src/gen/test/Model/CreateUploadSessionRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionResponseTest.php b/src/gen/test/Model/CreateUploadSessionResponseTest.php
index 3c89d453aa..a9601e72fb 100644
--- a/src/gen/test/Model/CreateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/CreateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUserResponseTest.php b/src/gen/test/Model/CreateUserResponseTest.php
index ec3b65c64f..718d038769 100644
--- a/src/gen/test/Model/CreateUserResponseTest.php
+++ b/src/gen/test/Model/CreateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookRequestTest.php b/src/gen/test/Model/CreateWebhookRequestTest.php
index 199eac4cc7..aa1478486b 100644
--- a/src/gen/test/Model/CreateWebhookRequestTest.php
+++ b/src/gen/test/Model/CreateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookResponseTest.php b/src/gen/test/Model/CreateWebhookResponseTest.php
index ca805d8264..ead1e3c28e 100644
--- a/src/gen/test/Model/CreateWebhookResponseTest.php
+++ b/src/gen/test/Model/CreateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNoteTest.php b/src/gen/test/Model/CreditNoteTest.php
index d988d73201..9b29da4167 100644
--- a/src/gen/test/Model/CreditNoteTest.php
+++ b/src/gen/test/Model/CreditNoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesFilterTest.php b/src/gen/test/Model/CreditNotesFilterTest.php
index f85213d69d..dba78a0afd 100644
--- a/src/gen/test/Model/CreditNotesFilterTest.php
+++ b/src/gen/test/Model/CreditNotesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesSortTest.php b/src/gen/test/Model/CreditNotesSortTest.php
index b175039616..c6f9fa1824 100644
--- a/src/gen/test/Model/CreditNotesSortTest.php
+++ b/src/gen/test/Model/CreditNotesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CrmEventTypeTest.php b/src/gen/test/Model/CrmEventTypeTest.php
index 091b481d58..69241e3163 100644
--- a/src/gen/test/Model/CrmEventTypeTest.php
+++ b/src/gen/test/Model/CrmEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CurrencyTest.php b/src/gen/test/Model/CurrencyTest.php
index 519bf70751..44d3514748 100644
--- a/src/gen/test/Model/CurrencyTest.php
+++ b/src/gen/test/Model/CurrencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldFinderTest.php b/src/gen/test/Model/CustomFieldFinderTest.php
index 284c6cd2df..bb5ff705b2 100644
--- a/src/gen/test/Model/CustomFieldFinderTest.php
+++ b/src/gen/test/Model/CustomFieldFinderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldTest.php b/src/gen/test/Model/CustomFieldTest.php
index 06e1f205b7..f6ef12b373 100644
--- a/src/gen/test/Model/CustomFieldTest.php
+++ b/src/gen/test/Model/CustomFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomMappingTest.php b/src/gen/test/Model/CustomMappingTest.php
index f6ed706657..bfa54b6ea0 100644
--- a/src/gen/test/Model/CustomMappingTest.php
+++ b/src/gen/test/Model/CustomMappingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomerTest.php b/src/gen/test/Model/CustomerTest.php
index dbeb2ca536..54e3ad2f6f 100644
--- a/src/gen/test/Model/CustomerTest.php
+++ b/src/gen/test/Model/CustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersFilterTest.php b/src/gen/test/Model/CustomersFilterTest.php
index b2f172c7c0..b0ae373431 100644
--- a/src/gen/test/Model/CustomersFilterTest.php
+++ b/src/gen/test/Model/CustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersSortTest.php b/src/gen/test/Model/CustomersSortTest.php
index 1ff432b1b4..c6b24e99af 100644
--- a/src/gen/test/Model/CustomersSortTest.php
+++ b/src/gen/test/Model/CustomersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeductionTest.php b/src/gen/test/Model/DeductionTest.php
index 33a0c313a4..2e258af2ab 100644
--- a/src/gen/test/Model/DeductionTest.php
+++ b/src/gen/test/Model/DeductionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteActivityResponseTest.php b/src/gen/test/Model/DeleteActivityResponseTest.php
index a28955b3f9..305051d356 100644
--- a/src/gen/test/Model/DeleteActivityResponseTest.php
+++ b/src/gen/test/Model/DeleteActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicantResponseTest.php b/src/gen/test/Model/DeleteApplicantResponseTest.php
index 12965ba92b..cc01e4ed9f 100644
--- a/src/gen/test/Model/DeleteApplicantResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicationResponseTest.php b/src/gen/test/Model/DeleteApplicationResponseTest.php
index cd69e3a9dc..84ce58d2f6 100644
--- a/src/gen/test/Model/DeleteApplicationResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteBillResponseTest.php b/src/gen/test/Model/DeleteBillResponseTest.php
index d41d2a40e7..9a306e49c2 100644
--- a/src/gen/test/Model/DeleteBillResponseTest.php
+++ b/src/gen/test/Model/DeleteBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCommentResponseTest.php b/src/gen/test/Model/DeleteCommentResponseTest.php
index c453cea6a8..ab4e01b630 100644
--- a/src/gen/test/Model/DeleteCommentResponseTest.php
+++ b/src/gen/test/Model/DeleteCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCompanyResponseTest.php b/src/gen/test/Model/DeleteCompanyResponseTest.php
index caa9addde3..6423fc9964 100644
--- a/src/gen/test/Model/DeleteCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteConsumerResponseTest.php b/src/gen/test/Model/DeleteConsumerResponseTest.php
index b13863e963..a2bb231c19 100644
--- a/src/gen/test/Model/DeleteConsumerResponseTest.php
+++ b/src/gen/test/Model/DeleteConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteContactResponseTest.php b/src/gen/test/Model/DeleteContactResponseTest.php
index dac3837412..084019e705 100644
--- a/src/gen/test/Model/DeleteContactResponseTest.php
+++ b/src/gen/test/Model/DeleteContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCreditNoteResponseTest.php b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
index 791a1c06d5..59d9167d60 100644
--- a/src/gen/test/Model/DeleteCreditNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCustomerResponseTest.php b/src/gen/test/Model/DeleteCustomerResponseTest.php
index 48960786d3..27b645438f 100644
--- a/src/gen/test/Model/DeleteCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDepartmentResponseTest.php b/src/gen/test/Model/DeleteDepartmentResponseTest.php
index 05cf536b46..ea7e9ab970 100644
--- a/src/gen/test/Model/DeleteDepartmentResponseTest.php
+++ b/src/gen/test/Model/DeleteDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveGroupResponseTest.php b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
index dae4dbfeb7..560dcc75f0 100644
--- a/src/gen/test/Model/DeleteDriveGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveResponseTest.php b/src/gen/test/Model/DeleteDriveResponseTest.php
index 8a45558809..672b9f1379 100644
--- a/src/gen/test/Model/DeleteDriveResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
index d123ace647..af15f32810 100644
--- a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
index 6638774f12..b4820c04e0 100644
--- a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEmployeeResponseTest.php b/src/gen/test/Model/DeleteEmployeeResponseTest.php
index 333c7936fc..a52ac29c50 100644
--- a/src/gen/test/Model/DeleteEmployeeResponseTest.php
+++ b/src/gen/test/Model/DeleteEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFileResponseTest.php b/src/gen/test/Model/DeleteFileResponseTest.php
index a7208356a0..6cad9395c7 100644
--- a/src/gen/test/Model/DeleteFileResponseTest.php
+++ b/src/gen/test/Model/DeleteFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFolderResponseTest.php b/src/gen/test/Model/DeleteFolderResponseTest.php
index 1040436da4..aa9cf09c71 100644
--- a/src/gen/test/Model/DeleteFolderResponseTest.php
+++ b/src/gen/test/Model/DeleteFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
index dd9cb364d1..d0e9efbad9 100644
--- a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteInvoiceResponseTest.php b/src/gen/test/Model/DeleteInvoiceResponseTest.php
index 88a8602b1d..fae99a9700 100644
--- a/src/gen/test/Model/DeleteInvoiceResponseTest.php
+++ b/src/gen/test/Model/DeleteInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteItemResponseTest.php b/src/gen/test/Model/DeleteItemResponseTest.php
index 08709437a6..719e1f261a 100644
--- a/src/gen/test/Model/DeleteItemResponseTest.php
+++ b/src/gen/test/Model/DeleteItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJobResponseTest.php b/src/gen/test/Model/DeleteJobResponseTest.php
index 8ab0d8fa7f..9be4c51c33 100644
--- a/src/gen/test/Model/DeleteJobResponseTest.php
+++ b/src/gen/test/Model/DeleteJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJournalEntryResponseTest.php b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
index c1f9ecee46..7ba2a0e629 100644
--- a/src/gen/test/Model/DeleteJournalEntryResponseTest.php
+++ b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLeadResponseTest.php b/src/gen/test/Model/DeleteLeadResponseTest.php
index ccb0b973ce..46165c7cfb 100644
--- a/src/gen/test/Model/DeleteLeadResponseTest.php
+++ b/src/gen/test/Model/DeleteLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
index 4fa60e1ea0..6e0c3bb15a 100644
--- a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLocationResponseTest.php b/src/gen/test/Model/DeleteLocationResponseTest.php
index 9102a10faf..e6b3cf7b26 100644
--- a/src/gen/test/Model/DeleteLocationResponseTest.php
+++ b/src/gen/test/Model/DeleteLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMerchantResponseTest.php b/src/gen/test/Model/DeleteMerchantResponseTest.php
index a26a60207b..8e20a20404 100644
--- a/src/gen/test/Model/DeleteMerchantResponseTest.php
+++ b/src/gen/test/Model/DeleteMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMessageResponseTest.php b/src/gen/test/Model/DeleteMessageResponseTest.php
index 75e9d00e62..f7f4e28da3 100644
--- a/src/gen/test/Model/DeleteMessageResponseTest.php
+++ b/src/gen/test/Model/DeleteMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierGroupResponseTest.php b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
index c9acc3beaf..f53fcf65a9 100644
--- a/src/gen/test/Model/DeleteModifierGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierResponseTest.php b/src/gen/test/Model/DeleteModifierResponseTest.php
index 92bbb3f4f6..b862d81151 100644
--- a/src/gen/test/Model/DeleteModifierResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteNoteResponseTest.php b/src/gen/test/Model/DeleteNoteResponseTest.php
index 7ff1ce6c3a..b2a05fbdc2 100644
--- a/src/gen/test/Model/DeleteNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOpportunityResponseTest.php b/src/gen/test/Model/DeleteOpportunityResponseTest.php
index 64529553de..8e70cefcc6 100644
--- a/src/gen/test/Model/DeleteOpportunityResponseTest.php
+++ b/src/gen/test/Model/DeleteOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderResponseTest.php b/src/gen/test/Model/DeleteOrderResponseTest.php
index 4c2ca4a962..a400727225 100644
--- a/src/gen/test/Model/DeleteOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderTypeResponseTest.php b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
index 1f3b75f339..c4fb24e1d3 100644
--- a/src/gen/test/Model/DeleteOrderTypeResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePaymentResponseTest.php b/src/gen/test/Model/DeletePaymentResponseTest.php
index 4fb7afcc7a..10af7aaa12 100644
--- a/src/gen/test/Model/DeletePaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePipelineResponseTest.php b/src/gen/test/Model/DeletePipelineResponseTest.php
index e42034d289..2e92bbae09 100644
--- a/src/gen/test/Model/DeletePipelineResponseTest.php
+++ b/src/gen/test/Model/DeletePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePosPaymentResponseTest.php b/src/gen/test/Model/DeletePosPaymentResponseTest.php
index 5ae7bf435c..ccc35e62ae 100644
--- a/src/gen/test/Model/DeletePosPaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteProductResponseTest.php b/src/gen/test/Model/DeleteProductResponseTest.php
index 0d16c8c5d8..eff5786e1a 100644
--- a/src/gen/test/Model/DeleteProductResponseTest.php
+++ b/src/gen/test/Model/DeleteProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
index c43089116e..089cbdeee6 100644
--- a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSharedLinkResponseTest.php b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
index c875e63563..00710bf3a8 100644
--- a/src/gen/test/Model/DeleteSharedLinkResponseTest.php
+++ b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSupplierResponseTest.php b/src/gen/test/Model/DeleteSupplierResponseTest.php
index 3eecbd2f2f..9bfe826f2f 100644
--- a/src/gen/test/Model/DeleteSupplierResponseTest.php
+++ b/src/gen/test/Model/DeleteSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTaxRateResponseTest.php b/src/gen/test/Model/DeleteTaxRateResponseTest.php
index 7d8b6c1a26..3be7af647b 100644
--- a/src/gen/test/Model/DeleteTaxRateResponseTest.php
+++ b/src/gen/test/Model/DeleteTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTenderResponseTest.php b/src/gen/test/Model/DeleteTenderResponseTest.php
index 5a75cb0d2f..43f795731a 100644
--- a/src/gen/test/Model/DeleteTenderResponseTest.php
+++ b/src/gen/test/Model/DeleteTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTicketResponseTest.php b/src/gen/test/Model/DeleteTicketResponseTest.php
index f15196c5d1..cc14e787c8 100644
--- a/src/gen/test/Model/DeleteTicketResponseTest.php
+++ b/src/gen/test/Model/DeleteTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
index ba8f1d91a9..9b7381a424 100644
--- a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUploadSessionResponseTest.php b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
index 6b9102d64c..36b1be2399 100644
--- a/src/gen/test/Model/DeleteUploadSessionResponseTest.php
+++ b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUserResponseTest.php b/src/gen/test/Model/DeleteUserResponseTest.php
index 2869223013..93edc69bee 100644
--- a/src/gen/test/Model/DeleteUserResponseTest.php
+++ b/src/gen/test/Model/DeleteUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteWebhookResponseTest.php b/src/gen/test/Model/DeleteWebhookResponseTest.php
index b63651ac8b..0d283a83de 100644
--- a/src/gen/test/Model/DeleteWebhookResponseTest.php
+++ b/src/gen/test/Model/DeleteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DepartmentTest.php b/src/gen/test/Model/DepartmentTest.php
index e471373001..d0b3308c81 100644
--- a/src/gen/test/Model/DepartmentTest.php
+++ b/src/gen/test/Model/DepartmentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupTest.php b/src/gen/test/Model/DriveGroupTest.php
index 4b753a0072..c4cdf0c1ba 100644
--- a/src/gen/test/Model/DriveGroupTest.php
+++ b/src/gen/test/Model/DriveGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupsFilterTest.php b/src/gen/test/Model/DriveGroupsFilterTest.php
index 0a035546e4..f42906ebf3 100644
--- a/src/gen/test/Model/DriveGroupsFilterTest.php
+++ b/src/gen/test/Model/DriveGroupsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveTest.php b/src/gen/test/Model/DriveTest.php
index caae1c9e85..e7a47ac5e8 100644
--- a/src/gen/test/Model/DriveTest.php
+++ b/src/gen/test/Model/DriveTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DrivesFilterTest.php b/src/gen/test/Model/DrivesFilterTest.php
index db2c79641c..64005b7688 100644
--- a/src/gen/test/Model/DrivesFilterTest.php
+++ b/src/gen/test/Model/DrivesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceAddressTest.php b/src/gen/test/Model/EcommerceAddressTest.php
index dae4427332..5e630f9fa3 100644
--- a/src/gen/test/Model/EcommerceAddressTest.php
+++ b/src/gen/test/Model/EcommerceAddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerAddressesTest.php b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
index ab80260621..8d7eea33df 100644
--- a/src/gen/test/Model/EcommerceCustomerAddressesTest.php
+++ b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerTest.php b/src/gen/test/Model/EcommerceCustomerTest.php
index c19b9437f5..6735c17177 100644
--- a/src/gen/test/Model/EcommerceCustomerTest.php
+++ b/src/gen/test/Model/EcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomersFilterTest.php b/src/gen/test/Model/EcommerceCustomersFilterTest.php
index c496326ec5..6df225de38 100644
--- a/src/gen/test/Model/EcommerceCustomersFilterTest.php
+++ b/src/gen/test/Model/EcommerceCustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceDiscountTest.php b/src/gen/test/Model/EcommerceDiscountTest.php
index 4cf509913f..34bdbc18b6 100644
--- a/src/gen/test/Model/EcommerceDiscountTest.php
+++ b/src/gen/test/Model/EcommerceDiscountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderLineItemTest.php b/src/gen/test/Model/EcommerceOrderLineItemTest.php
index f1cb535b6a..f8976bca1d 100644
--- a/src/gen/test/Model/EcommerceOrderLineItemTest.php
+++ b/src/gen/test/Model/EcommerceOrderLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderStatusTest.php b/src/gen/test/Model/EcommerceOrderStatusTest.php
index 4bfcac0800..1dab27a057 100644
--- a/src/gen/test/Model/EcommerceOrderStatusTest.php
+++ b/src/gen/test/Model/EcommerceOrderStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderTest.php b/src/gen/test/Model/EcommerceOrderTest.php
index d049b3341e..d7a063cc02 100644
--- a/src/gen/test/Model/EcommerceOrderTest.php
+++ b/src/gen/test/Model/EcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrdersFilterTest.php b/src/gen/test/Model/EcommerceOrdersFilterTest.php
index c6df6b9350..697d29c981 100644
--- a/src/gen/test/Model/EcommerceOrdersFilterTest.php
+++ b/src/gen/test/Model/EcommerceOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductCategoriesTest.php b/src/gen/test/Model/EcommerceProductCategoriesTest.php
index 24a639f1d4..6884c34cc1 100644
--- a/src/gen/test/Model/EcommerceProductCategoriesTest.php
+++ b/src/gen/test/Model/EcommerceProductCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImages1Test.php b/src/gen/test/Model/EcommerceProductImages1Test.php
index 160d1b77ff..d087e7285b 100644
--- a/src/gen/test/Model/EcommerceProductImages1Test.php
+++ b/src/gen/test/Model/EcommerceProductImages1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImagesTest.php b/src/gen/test/Model/EcommerceProductImagesTest.php
index 43f2073058..ca65b49740 100644
--- a/src/gen/test/Model/EcommerceProductImagesTest.php
+++ b/src/gen/test/Model/EcommerceProductImagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptions1Test.php b/src/gen/test/Model/EcommerceProductOptions1Test.php
index 2499322bab..350aaff73d 100644
--- a/src/gen/test/Model/EcommerceProductOptions1Test.php
+++ b/src/gen/test/Model/EcommerceProductOptions1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptionsTest.php b/src/gen/test/Model/EcommerceProductOptionsTest.php
index 499d5cff1a..48e1288cee 100644
--- a/src/gen/test/Model/EcommerceProductOptionsTest.php
+++ b/src/gen/test/Model/EcommerceProductOptionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductTest.php b/src/gen/test/Model/EcommerceProductTest.php
index 84bb9081b2..5002af3628 100644
--- a/src/gen/test/Model/EcommerceProductTest.php
+++ b/src/gen/test/Model/EcommerceProductTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductVariantsTest.php b/src/gen/test/Model/EcommerceProductVariantsTest.php
index 47c8c4b12d..80ac473f03 100644
--- a/src/gen/test/Model/EcommerceProductVariantsTest.php
+++ b/src/gen/test/Model/EcommerceProductVariantsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceStoreTest.php b/src/gen/test/Model/EcommerceStoreTest.php
index 332b09efc5..4b00814320 100644
--- a/src/gen/test/Model/EcommerceStoreTest.php
+++ b/src/gen/test/Model/EcommerceStoreTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmailTest.php b/src/gen/test/Model/EmailTest.php
index e2011bceca..6a3b64b2a7 100644
--- a/src/gen/test/Model/EmailTest.php
+++ b/src/gen/test/Model/EmailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeCompensationTest.php b/src/gen/test/Model/EmployeeCompensationTest.php
index 3dc84024db..952a8eec15 100644
--- a/src/gen/test/Model/EmployeeCompensationTest.php
+++ b/src/gen/test/Model/EmployeeCompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeEmploymentRoleTest.php b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
index d4acf75524..a56640cf69 100644
--- a/src/gen/test/Model/EmployeeEmploymentRoleTest.php
+++ b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeJobTest.php b/src/gen/test/Model/EmployeeJobTest.php
index 75931d981f..29a0091c5c 100644
--- a/src/gen/test/Model/EmployeeJobTest.php
+++ b/src/gen/test/Model/EmployeeJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeListTest.php b/src/gen/test/Model/EmployeeListTest.php
index f83b784ee8..3b40684fba 100644
--- a/src/gen/test/Model/EmployeeListTest.php
+++ b/src/gen/test/Model/EmployeeListTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeManagerTest.php b/src/gen/test/Model/EmployeeManagerTest.php
index 67a620d3ff..7e512b942e 100644
--- a/src/gen/test/Model/EmployeeManagerTest.php
+++ b/src/gen/test/Model/EmployeeManagerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeePayrollTest.php b/src/gen/test/Model/EmployeePayrollTest.php
index f08af8473f..0a8dea7f50 100644
--- a/src/gen/test/Model/EmployeePayrollTest.php
+++ b/src/gen/test/Model/EmployeePayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeSchedulesTest.php b/src/gen/test/Model/EmployeeSchedulesTest.php
index 605e4ddc18..a9a662d675 100644
--- a/src/gen/test/Model/EmployeeSchedulesTest.php
+++ b/src/gen/test/Model/EmployeeSchedulesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeTest.php b/src/gen/test/Model/EmployeeTest.php
index 6675e458af..87bb6cbc24 100644
--- a/src/gen/test/Model/EmployeeTest.php
+++ b/src/gen/test/Model/EmployeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesFilterTest.php b/src/gen/test/Model/EmployeesFilterTest.php
index ed6233849c..61a57c8184 100644
--- a/src/gen/test/Model/EmployeesFilterTest.php
+++ b/src/gen/test/Model/EmployeesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesSortTest.php b/src/gen/test/Model/EmployeesSortTest.php
index ec995f12f2..bf93a34731 100644
--- a/src/gen/test/Model/EmployeesSortTest.php
+++ b/src/gen/test/Model/EmployeesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmploymentStatusTest.php b/src/gen/test/Model/EmploymentStatusTest.php
index 7b937b0900..450d9ef2c1 100644
--- a/src/gen/test/Model/EmploymentStatusTest.php
+++ b/src/gen/test/Model/EmploymentStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ErrorTest.php b/src/gen/test/Model/ErrorTest.php
index d6747070a4..118ebecbd1 100644
--- a/src/gen/test/Model/ErrorTest.php
+++ b/src/gen/test/Model/ErrorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ExecuteWebhookResponseTest.php b/src/gen/test/Model/ExecuteWebhookResponseTest.php
index eef9db9576..c17f2fbda0 100644
--- a/src/gen/test/Model/ExecuteWebhookResponseTest.php
+++ b/src/gen/test/Model/ExecuteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileStorageEventTypeTest.php b/src/gen/test/Model/FileStorageEventTypeTest.php
index 78aefda3d5..c08aa03d60 100644
--- a/src/gen/test/Model/FileStorageEventTypeTest.php
+++ b/src/gen/test/Model/FileStorageEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileTypeTest.php b/src/gen/test/Model/FileTypeTest.php
index 8d5e001429..dc3b3900ef 100644
--- a/src/gen/test/Model/FileTypeTest.php
+++ b/src/gen/test/Model/FileTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesFilterTest.php b/src/gen/test/Model/FilesFilterTest.php
index 909a8e0eb1..4416ffe3e0 100644
--- a/src/gen/test/Model/FilesFilterTest.php
+++ b/src/gen/test/Model/FilesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSearchTest.php b/src/gen/test/Model/FilesSearchTest.php
index 2b1b00ed00..aa91ec0415 100644
--- a/src/gen/test/Model/FilesSearchTest.php
+++ b/src/gen/test/Model/FilesSearchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSortTest.php b/src/gen/test/Model/FilesSortTest.php
index ccb9c6f72d..4401303a34 100644
--- a/src/gen/test/Model/FilesSortTest.php
+++ b/src/gen/test/Model/FilesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FolderTest.php b/src/gen/test/Model/FolderTest.php
index 3dc866bb8f..df4002b65e 100644
--- a/src/gen/test/Model/FolderTest.php
+++ b/src/gen/test/Model/FolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionGroupTest.php b/src/gen/test/Model/FormFieldOptionGroupTest.php
index 43c8e7ab3c..b657393052 100644
--- a/src/gen/test/Model/FormFieldOptionGroupTest.php
+++ b/src/gen/test/Model/FormFieldOptionGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionTest.php b/src/gen/test/Model/FormFieldOptionTest.php
index d74d522d67..6d694bfd54 100644
--- a/src/gen/test/Model/FormFieldOptionTest.php
+++ b/src/gen/test/Model/FormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldTest.php b/src/gen/test/Model/FormFieldTest.php
index 101792b5ac..d950819905 100644
--- a/src/gen/test/Model/FormFieldTest.php
+++ b/src/gen/test/Model/FormFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GenderTest.php b/src/gen/test/Model/GenderTest.php
index bec09e836b..efa4c6065a 100644
--- a/src/gen/test/Model/GenderTest.php
+++ b/src/gen/test/Model/GenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetActivitiesResponseTest.php b/src/gen/test/Model/GetActivitiesResponseTest.php
index cf9b9acd14..2b8a659383 100644
--- a/src/gen/test/Model/GetActivitiesResponseTest.php
+++ b/src/gen/test/Model/GetActivitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetActivityResponseTest.php b/src/gen/test/Model/GetActivityResponseTest.php
index 9064a4a134..347033c6b4 100644
--- a/src/gen/test/Model/GetActivityResponseTest.php
+++ b/src/gen/test/Model/GetActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
index 40608049e6..e3ca6d95f7 100644
--- a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceResponseTest.php b/src/gen/test/Model/GetApiResourceResponseTest.php
index f0714e154f..e6881b76d2 100644
--- a/src/gen/test/Model/GetApiResourceResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResponseTest.php b/src/gen/test/Model/GetApiResponseTest.php
index 5753a6c628..85ff1373ca 100644
--- a/src/gen/test/Model/GetApiResponseTest.php
+++ b/src/gen/test/Model/GetApiResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApisResponseTest.php b/src/gen/test/Model/GetApisResponseTest.php
index d2b694829b..561a03bede 100644
--- a/src/gen/test/Model/GetApisResponseTest.php
+++ b/src/gen/test/Model/GetApisResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantResponseTest.php b/src/gen/test/Model/GetApplicantResponseTest.php
index e9e656c63f..2274d33769 100644
--- a/src/gen/test/Model/GetApplicantResponseTest.php
+++ b/src/gen/test/Model/GetApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantsResponseTest.php b/src/gen/test/Model/GetApplicantsResponseTest.php
index 925a8fc0e4..9d9a87ea27 100644
--- a/src/gen/test/Model/GetApplicantsResponseTest.php
+++ b/src/gen/test/Model/GetApplicantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationResponseTest.php b/src/gen/test/Model/GetApplicationResponseTest.php
index 5e38cfe9fb..2ffd0f456f 100644
--- a/src/gen/test/Model/GetApplicationResponseTest.php
+++ b/src/gen/test/Model/GetApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationsResponseTest.php b/src/gen/test/Model/GetApplicationsResponseTest.php
index 6634eed221..f1e80f823f 100644
--- a/src/gen/test/Model/GetApplicationsResponseTest.php
+++ b/src/gen/test/Model/GetApplicationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBalanceSheetResponseTest.php b/src/gen/test/Model/GetBalanceSheetResponseTest.php
index 65161633e2..f6ee4fc153 100644
--- a/src/gen/test/Model/GetBalanceSheetResponseTest.php
+++ b/src/gen/test/Model/GetBalanceSheetResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillResponseTest.php b/src/gen/test/Model/GetBillResponseTest.php
index 3e7be72eb2..45f3ec4c29 100644
--- a/src/gen/test/Model/GetBillResponseTest.php
+++ b/src/gen/test/Model/GetBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillsResponseTest.php b/src/gen/test/Model/GetBillsResponseTest.php
index 7b2f1ec153..3f94d7a856 100644
--- a/src/gen/test/Model/GetBillsResponseTest.php
+++ b/src/gen/test/Model/GetBillsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionResponseTest.php b/src/gen/test/Model/GetCollectionResponseTest.php
index 427d651d84..ffc703225d 100644
--- a/src/gen/test/Model/GetCollectionResponseTest.php
+++ b/src/gen/test/Model/GetCollectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionTagsResponseTest.php b/src/gen/test/Model/GetCollectionTagsResponseTest.php
index c4c4fe9888..853c054c63 100644
--- a/src/gen/test/Model/GetCollectionTagsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionTagsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUserResponseTest.php b/src/gen/test/Model/GetCollectionUserResponseTest.php
index d7c8be05f6..4b36d485b4 100644
--- a/src/gen/test/Model/GetCollectionUserResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUsersResponseTest.php b/src/gen/test/Model/GetCollectionUsersResponseTest.php
index 1546e4c686..f70f3fb21f 100644
--- a/src/gen/test/Model/GetCollectionUsersResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionsResponseTest.php b/src/gen/test/Model/GetCollectionsResponseTest.php
index 5fa00d7729..151ecaf203 100644
--- a/src/gen/test/Model/GetCollectionsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentResponseTest.php b/src/gen/test/Model/GetCommentResponseTest.php
index 872df087f0..1f63a23883 100644
--- a/src/gen/test/Model/GetCommentResponseTest.php
+++ b/src/gen/test/Model/GetCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentsResponseTest.php b/src/gen/test/Model/GetCommentsResponseTest.php
index 3fc7110fed..a224480ba4 100644
--- a/src/gen/test/Model/GetCommentsResponseTest.php
+++ b/src/gen/test/Model/GetCommentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompaniesResponseTest.php b/src/gen/test/Model/GetCompaniesResponseTest.php
index 37076e592f..c2c4af8e56 100644
--- a/src/gen/test/Model/GetCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyInfoResponseTest.php b/src/gen/test/Model/GetCompanyInfoResponseTest.php
index 4a337299a8..84954b1e6e 100644
--- a/src/gen/test/Model/GetCompanyInfoResponseTest.php
+++ b/src/gen/test/Model/GetCompanyInfoResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyResponseTest.php b/src/gen/test/Model/GetCompanyResponseTest.php
index d8a83c2971..4190d84d17 100644
--- a/src/gen/test/Model/GetCompanyResponseTest.php
+++ b/src/gen/test/Model/GetCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionResponseTest.php b/src/gen/test/Model/GetConnectionResponseTest.php
index 1ec12e63d2..4caaa07474 100644
--- a/src/gen/test/Model/GetConnectionResponseTest.php
+++ b/src/gen/test/Model/GetConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionsResponseTest.php b/src/gen/test/Model/GetConnectionsResponseTest.php
index 05ae72807b..0098316d99 100644
--- a/src/gen/test/Model/GetConnectionsResponseTest.php
+++ b/src/gen/test/Model/GetConnectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
index 03689a5368..098f25c3ca 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
index 0843c9e45c..07cbf8cb1d 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceResponseTest.php b/src/gen/test/Model/GetConnectorResourceResponseTest.php
index db878a88fc..9c99af3023 100644
--- a/src/gen/test/Model/GetConnectorResourceResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
index ff4a1e8495..10cc70cbd4 100644
--- a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResponseTest.php b/src/gen/test/Model/GetConnectorResponseTest.php
index ef4625d73f..49385508a2 100644
--- a/src/gen/test/Model/GetConnectorResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorsResponseTest.php b/src/gen/test/Model/GetConnectorsResponseTest.php
index 2ec4302253..30a21b2aae 100644
--- a/src/gen/test/Model/GetConnectorsResponseTest.php
+++ b/src/gen/test/Model/GetConnectorsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumerResponseTest.php b/src/gen/test/Model/GetConsumerResponseTest.php
index b53670844c..20c2664065 100644
--- a/src/gen/test/Model/GetConsumerResponseTest.php
+++ b/src/gen/test/Model/GetConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseDataTest.php b/src/gen/test/Model/GetConsumersResponseDataTest.php
index 77e22f21ed..433638e8c8 100644
--- a/src/gen/test/Model/GetConsumersResponseDataTest.php
+++ b/src/gen/test/Model/GetConsumersResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseTest.php b/src/gen/test/Model/GetConsumersResponseTest.php
index 9a0188530e..1bef0d6c09 100644
--- a/src/gen/test/Model/GetConsumersResponseTest.php
+++ b/src/gen/test/Model/GetConsumersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactResponseTest.php b/src/gen/test/Model/GetContactResponseTest.php
index 44d9a89e84..2f29f9ba7d 100644
--- a/src/gen/test/Model/GetContactResponseTest.php
+++ b/src/gen/test/Model/GetContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactsResponseTest.php b/src/gen/test/Model/GetContactsResponseTest.php
index 8b59283f59..de32935e16 100644
--- a/src/gen/test/Model/GetContactsResponseTest.php
+++ b/src/gen/test/Model/GetContactsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNoteResponseTest.php b/src/gen/test/Model/GetCreditNoteResponseTest.php
index c2ebc62e08..1a71670233 100644
--- a/src/gen/test/Model/GetCreditNoteResponseTest.php
+++ b/src/gen/test/Model/GetCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNotesResponseTest.php b/src/gen/test/Model/GetCreditNotesResponseTest.php
index ac46b0c047..8eca030fc9 100644
--- a/src/gen/test/Model/GetCreditNotesResponseTest.php
+++ b/src/gen/test/Model/GetCreditNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomFieldsResponseTest.php b/src/gen/test/Model/GetCustomFieldsResponseTest.php
index 31e564ce8b..186e4ef571 100644
--- a/src/gen/test/Model/GetCustomFieldsResponseTest.php
+++ b/src/gen/test/Model/GetCustomFieldsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomMappingResponseTest.php b/src/gen/test/Model/GetCustomMappingResponseTest.php
index e0a42bf2fd..f9fea514b8 100644
--- a/src/gen/test/Model/GetCustomMappingResponseTest.php
+++ b/src/gen/test/Model/GetCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomerResponseTest.php b/src/gen/test/Model/GetCustomerResponseTest.php
index d526d2bb19..236ecb974e 100644
--- a/src/gen/test/Model/GetCustomerResponseTest.php
+++ b/src/gen/test/Model/GetCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomersResponseTest.php b/src/gen/test/Model/GetCustomersResponseTest.php
index 4c4414b9be..5365c8412d 100644
--- a/src/gen/test/Model/GetCustomersResponseTest.php
+++ b/src/gen/test/Model/GetCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentResponseTest.php b/src/gen/test/Model/GetDepartmentResponseTest.php
index d65c115405..a9656bb328 100644
--- a/src/gen/test/Model/GetDepartmentResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentsResponseTest.php b/src/gen/test/Model/GetDepartmentsResponseTest.php
index 26796e0fc6..33360633bd 100644
--- a/src/gen/test/Model/GetDepartmentsResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupResponseTest.php b/src/gen/test/Model/GetDriveGroupResponseTest.php
index ca562d322f..def7365d6e 100644
--- a/src/gen/test/Model/GetDriveGroupResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupsResponseTest.php b/src/gen/test/Model/GetDriveGroupsResponseTest.php
index 891eca6e95..50787e84d5 100644
--- a/src/gen/test/Model/GetDriveGroupsResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveResponseTest.php b/src/gen/test/Model/GetDriveResponseTest.php
index 425eb5d20d..c5b7df1117 100644
--- a/src/gen/test/Model/GetDriveResponseTest.php
+++ b/src/gen/test/Model/GetDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDrivesResponseTest.php b/src/gen/test/Model/GetDrivesResponseTest.php
index 086e6e6bae..49a9a9697b 100644
--- a/src/gen/test/Model/GetDrivesResponseTest.php
+++ b/src/gen/test/Model/GetDrivesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
index d3cb2445f1..d8ba80d232 100644
--- a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
index b3044a92c9..38e26f6b7b 100644
--- a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrderResponseTest.php b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
index e9c37ce356..bbe85183c3 100644
--- a/src/gen/test/Model/GetEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
index 8b82df58a0..33eb0d4776 100644
--- a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollResponseTest.php b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
index 69e8300fe1..68917241f4 100644
--- a/src/gen/test/Model/GetEmployeePayrollResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
index e1acfb4c31..40ddda1c65 100644
--- a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeResponseTest.php b/src/gen/test/Model/GetEmployeeResponseTest.php
index c3aa782204..e4982085da 100644
--- a/src/gen/test/Model/GetEmployeeResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
index 83c8f6a936..e1f9d2315b 100644
--- a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeesResponseTest.php b/src/gen/test/Model/GetEmployeesResponseTest.php
index 1f76a5c193..804fef0c29 100644
--- a/src/gen/test/Model/GetEmployeesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFileResponseTest.php b/src/gen/test/Model/GetFileResponseTest.php
index 3a05bdd5a9..9ae5791ec2 100644
--- a/src/gen/test/Model/GetFileResponseTest.php
+++ b/src/gen/test/Model/GetFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFilesResponseTest.php b/src/gen/test/Model/GetFilesResponseTest.php
index 2c071d309a..30d67da2a7 100644
--- a/src/gen/test/Model/GetFilesResponseTest.php
+++ b/src/gen/test/Model/GetFilesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFolderResponseTest.php b/src/gen/test/Model/GetFolderResponseTest.php
index f6c4992f0c..d826fc62fa 100644
--- a/src/gen/test/Model/GetFolderResponseTest.php
+++ b/src/gen/test/Model/GetFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFoldersResponseTest.php b/src/gen/test/Model/GetFoldersResponseTest.php
index a982b4185f..a16dc432db 100644
--- a/src/gen/test/Model/GetFoldersResponseTest.php
+++ b/src/gen/test/Model/GetFoldersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompaniesResponseTest.php b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
index 31dbf5dc31..a4f604a710 100644
--- a/src/gen/test/Model/GetHrisCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompanyResponseTest.php b/src/gen/test/Model/GetHrisCompanyResponseTest.php
index eddabb070e..a119bcf218 100644
--- a/src/gen/test/Model/GetHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobResponseTest.php b/src/gen/test/Model/GetHrisJobResponseTest.php
index 6632f5de19..b18b15d6af 100644
--- a/src/gen/test/Model/GetHrisJobResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobsResponseTest.php b/src/gen/test/Model/GetHrisJobsResponseTest.php
index 616c0299b3..36ec895e4a 100644
--- a/src/gen/test/Model/GetHrisJobsResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemResponseTest.php b/src/gen/test/Model/GetInvoiceItemResponseTest.php
index f7a4441465..9c9982ecc7 100644
--- a/src/gen/test/Model/GetInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemsResponseTest.php b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
index 97c355df5c..b9cee01272 100644
--- a/src/gen/test/Model/GetInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceResponseTest.php b/src/gen/test/Model/GetInvoiceResponseTest.php
index 46e19e4fb4..b969a01fba 100644
--- a/src/gen/test/Model/GetInvoiceResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoicesResponseTest.php b/src/gen/test/Model/GetInvoicesResponseTest.php
index c0301e5944..de7a9ae13c 100644
--- a/src/gen/test/Model/GetInvoicesResponseTest.php
+++ b/src/gen/test/Model/GetInvoicesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemResponseTest.php b/src/gen/test/Model/GetItemResponseTest.php
index 48ef35788d..6aa33f3806 100644
--- a/src/gen/test/Model/GetItemResponseTest.php
+++ b/src/gen/test/Model/GetItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemsResponseTest.php b/src/gen/test/Model/GetItemsResponseTest.php
index 13dcee5fb7..8173bc5c42 100644
--- a/src/gen/test/Model/GetItemsResponseTest.php
+++ b/src/gen/test/Model/GetItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobResponseTest.php b/src/gen/test/Model/GetJobResponseTest.php
index f8332737ad..47a51f426c 100644
--- a/src/gen/test/Model/GetJobResponseTest.php
+++ b/src/gen/test/Model/GetJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobsResponseTest.php b/src/gen/test/Model/GetJobsResponseTest.php
index 8318471a81..25636e83ea 100644
--- a/src/gen/test/Model/GetJobsResponseTest.php
+++ b/src/gen/test/Model/GetJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntriesResponseTest.php b/src/gen/test/Model/GetJournalEntriesResponseTest.php
index a3a5fc9ff4..f09af15ffe 100644
--- a/src/gen/test/Model/GetJournalEntriesResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntriesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntryResponseTest.php b/src/gen/test/Model/GetJournalEntryResponseTest.php
index 14b7d2c0f5..e492eac822 100644
--- a/src/gen/test/Model/GetJournalEntryResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadResponseTest.php b/src/gen/test/Model/GetLeadResponseTest.php
index f1686079b4..7b506ed24b 100644
--- a/src/gen/test/Model/GetLeadResponseTest.php
+++ b/src/gen/test/Model/GetLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadsResponseTest.php b/src/gen/test/Model/GetLeadsResponseTest.php
index 2a0d578407..163ef7fc70 100644
--- a/src/gen/test/Model/GetLeadsResponseTest.php
+++ b/src/gen/test/Model/GetLeadsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountResponseTest.php b/src/gen/test/Model/GetLedgerAccountResponseTest.php
index 6c355113ec..d2203e256e 100644
--- a/src/gen/test/Model/GetLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountsResponseTest.php b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
index c1d947244e..6f2ebbd80a 100644
--- a/src/gen/test/Model/GetLedgerAccountsResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationResponseTest.php b/src/gen/test/Model/GetLocationResponseTest.php
index 410d908f78..f3c8398c03 100644
--- a/src/gen/test/Model/GetLocationResponseTest.php
+++ b/src/gen/test/Model/GetLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationsResponseTest.php b/src/gen/test/Model/GetLocationsResponseTest.php
index d7a89776c3..e984461cd9 100644
--- a/src/gen/test/Model/GetLocationsResponseTest.php
+++ b/src/gen/test/Model/GetLocationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLogsResponseTest.php b/src/gen/test/Model/GetLogsResponseTest.php
index d2079a9ae6..7149ef4d2f 100644
--- a/src/gen/test/Model/GetLogsResponseTest.php
+++ b/src/gen/test/Model/GetLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantResponseTest.php b/src/gen/test/Model/GetMerchantResponseTest.php
index 7558691605..ccce1e7c23 100644
--- a/src/gen/test/Model/GetMerchantResponseTest.php
+++ b/src/gen/test/Model/GetMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantsResponseTest.php b/src/gen/test/Model/GetMerchantsResponseTest.php
index cfea9fd0a8..539b38804d 100644
--- a/src/gen/test/Model/GetMerchantsResponseTest.php
+++ b/src/gen/test/Model/GetMerchantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessageResponseTest.php b/src/gen/test/Model/GetMessageResponseTest.php
index 9cd3b38c70..498c75cbd2 100644
--- a/src/gen/test/Model/GetMessageResponseTest.php
+++ b/src/gen/test/Model/GetMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessagesResponseTest.php b/src/gen/test/Model/GetMessagesResponseTest.php
index 1a93575538..00a0210ac6 100644
--- a/src/gen/test/Model/GetMessagesResponseTest.php
+++ b/src/gen/test/Model/GetMessagesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupResponseTest.php b/src/gen/test/Model/GetModifierGroupResponseTest.php
index 676a79121f..a1aae585f9 100644
--- a/src/gen/test/Model/GetModifierGroupResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupsResponseTest.php b/src/gen/test/Model/GetModifierGroupsResponseTest.php
index a03c32fbc5..286ba9269e 100644
--- a/src/gen/test/Model/GetModifierGroupsResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierResponseTest.php b/src/gen/test/Model/GetModifierResponseTest.php
index b22f095679..d61bdc2ae4 100644
--- a/src/gen/test/Model/GetModifierResponseTest.php
+++ b/src/gen/test/Model/GetModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifiersResponseTest.php b/src/gen/test/Model/GetModifiersResponseTest.php
index cf716f7d45..22eb1dabed 100644
--- a/src/gen/test/Model/GetModifiersResponseTest.php
+++ b/src/gen/test/Model/GetModifiersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNoteResponseTest.php b/src/gen/test/Model/GetNoteResponseTest.php
index 08d0e82e39..839408899c 100644
--- a/src/gen/test/Model/GetNoteResponseTest.php
+++ b/src/gen/test/Model/GetNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNotesResponseTest.php b/src/gen/test/Model/GetNotesResponseTest.php
index 6d494f202c..38e6ef3e40 100644
--- a/src/gen/test/Model/GetNotesResponseTest.php
+++ b/src/gen/test/Model/GetNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunitiesResponseTest.php b/src/gen/test/Model/GetOpportunitiesResponseTest.php
index 35667e8f65..cbe958d348 100644
--- a/src/gen/test/Model/GetOpportunitiesResponseTest.php
+++ b/src/gen/test/Model/GetOpportunitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunityResponseTest.php b/src/gen/test/Model/GetOpportunityResponseTest.php
index 2a0654011d..65e3c942ad 100644
--- a/src/gen/test/Model/GetOpportunityResponseTest.php
+++ b/src/gen/test/Model/GetOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderResponseTest.php b/src/gen/test/Model/GetOrderResponseTest.php
index 5b47cc7415..7646ab25ef 100644
--- a/src/gen/test/Model/GetOrderResponseTest.php
+++ b/src/gen/test/Model/GetOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypeResponseTest.php b/src/gen/test/Model/GetOrderTypeResponseTest.php
index f6f3ff7668..d17aa0a770 100644
--- a/src/gen/test/Model/GetOrderTypeResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypesResponseTest.php b/src/gen/test/Model/GetOrderTypesResponseTest.php
index 967034da7b..ae05767873 100644
--- a/src/gen/test/Model/GetOrderTypesResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrdersResponseTest.php b/src/gen/test/Model/GetOrdersResponseTest.php
index deee6b7fa9..5f298aeb35 100644
--- a/src/gen/test/Model/GetOrdersResponseTest.php
+++ b/src/gen/test/Model/GetOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentResponseTest.php b/src/gen/test/Model/GetPaymentResponseTest.php
index 5d13567c28..3091b052e2 100644
--- a/src/gen/test/Model/GetPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentsResponseTest.php b/src/gen/test/Model/GetPaymentsResponseTest.php
index 189f74c68c..30f9715490 100644
--- a/src/gen/test/Model/GetPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollResponseTest.php b/src/gen/test/Model/GetPayrollResponseTest.php
index a4f4059fb1..24bd755cca 100644
--- a/src/gen/test/Model/GetPayrollResponseTest.php
+++ b/src/gen/test/Model/GetPayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollsResponseTest.php b/src/gen/test/Model/GetPayrollsResponseTest.php
index ac546a6384..b12f4ad80c 100644
--- a/src/gen/test/Model/GetPayrollsResponseTest.php
+++ b/src/gen/test/Model/GetPayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelineResponseTest.php b/src/gen/test/Model/GetPipelineResponseTest.php
index 85fa85b0fe..d0082b74d2 100644
--- a/src/gen/test/Model/GetPipelineResponseTest.php
+++ b/src/gen/test/Model/GetPipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelinesResponseTest.php b/src/gen/test/Model/GetPipelinesResponseTest.php
index 8ab812432b..f381d865f5 100644
--- a/src/gen/test/Model/GetPipelinesResponseTest.php
+++ b/src/gen/test/Model/GetPipelinesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentResponseTest.php b/src/gen/test/Model/GetPosPaymentResponseTest.php
index f0079f99d1..9188814e1e 100644
--- a/src/gen/test/Model/GetPosPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentsResponseTest.php b/src/gen/test/Model/GetPosPaymentsResponseTest.php
index 1dba26999b..6eca9acdd0 100644
--- a/src/gen/test/Model/GetPosPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductResponseTest.php b/src/gen/test/Model/GetProductResponseTest.php
index 0c1d1a7364..f8963be52b 100644
--- a/src/gen/test/Model/GetProductResponseTest.php
+++ b/src/gen/test/Model/GetProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductsResponseTest.php b/src/gen/test/Model/GetProductsResponseTest.php
index ef47834032..1992c4b66a 100644
--- a/src/gen/test/Model/GetProductsResponseTest.php
+++ b/src/gen/test/Model/GetProductsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProfitAndLossResponseTest.php b/src/gen/test/Model/GetProfitAndLossResponseTest.php
index 0f6207a4a6..8537f0dee5 100644
--- a/src/gen/test/Model/GetProfitAndLossResponseTest.php
+++ b/src/gen/test/Model/GetProfitAndLossResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrderResponseTest.php b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
index 1d2205614d..9172df35da 100644
--- a/src/gen/test/Model/GetPurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
index e170ec2fd4..ff2057f5cf 100644
--- a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceExampleResponseTest.php b/src/gen/test/Model/GetResourceExampleResponseTest.php
index 9ebc739863..48528d5281 100644
--- a/src/gen/test/Model/GetResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceSchemaResponseTest.php b/src/gen/test/Model/GetResourceSchemaResponseTest.php
index 5333460c9f..96a5e7f763 100644
--- a/src/gen/test/Model/GetResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinkResponseTest.php b/src/gen/test/Model/GetSharedLinkResponseTest.php
index 5172dbbb0b..2a6dd19334 100644
--- a/src/gen/test/Model/GetSharedLinkResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinksResponseTest.php b/src/gen/test/Model/GetSharedLinksResponseTest.php
index 8ffa31d5c7..ffdef33e61 100644
--- a/src/gen/test/Model/GetSharedLinksResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoreResponseTest.php b/src/gen/test/Model/GetStoreResponseTest.php
index 6b8831dbf8..fa6ca71459 100644
--- a/src/gen/test/Model/GetStoreResponseTest.php
+++ b/src/gen/test/Model/GetStoreResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoresResponseTest.php b/src/gen/test/Model/GetStoresResponseTest.php
index dcbcfc8e7f..6ed1ccdac3 100644
--- a/src/gen/test/Model/GetStoresResponseTest.php
+++ b/src/gen/test/Model/GetStoresResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSubsidiariesResponseTest.php b/src/gen/test/Model/GetSubsidiariesResponseTest.php
index ec9a404de5..4d598f0798 100644
--- a/src/gen/test/Model/GetSubsidiariesResponseTest.php
+++ b/src/gen/test/Model/GetSubsidiariesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSubsidiaryResponseTest.php b/src/gen/test/Model/GetSubsidiaryResponseTest.php
index 6f5e613162..d2abc3b671 100644
--- a/src/gen/test/Model/GetSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/GetSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSupplierResponseTest.php b/src/gen/test/Model/GetSupplierResponseTest.php
index 5bb89e6ea6..873bb61607 100644
--- a/src/gen/test/Model/GetSupplierResponseTest.php
+++ b/src/gen/test/Model/GetSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSuppliersResponseTest.php b/src/gen/test/Model/GetSuppliersResponseTest.php
index bbc27094dc..71ecaad9d9 100644
--- a/src/gen/test/Model/GetSuppliersResponseTest.php
+++ b/src/gen/test/Model/GetSuppliersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRateResponseTest.php b/src/gen/test/Model/GetTaxRateResponseTest.php
index d3f32ac208..6c6f9d26f6 100644
--- a/src/gen/test/Model/GetTaxRateResponseTest.php
+++ b/src/gen/test/Model/GetTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRatesResponseTest.php b/src/gen/test/Model/GetTaxRatesResponseTest.php
index b04d07eb7f..5a438f573f 100644
--- a/src/gen/test/Model/GetTaxRatesResponseTest.php
+++ b/src/gen/test/Model/GetTaxRatesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTenderResponseTest.php b/src/gen/test/Model/GetTenderResponseTest.php
index 373696eb27..408149e810 100644
--- a/src/gen/test/Model/GetTenderResponseTest.php
+++ b/src/gen/test/Model/GetTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTendersResponseTest.php b/src/gen/test/Model/GetTendersResponseTest.php
index 033b0c7615..981b67140d 100644
--- a/src/gen/test/Model/GetTendersResponseTest.php
+++ b/src/gen/test/Model/GetTendersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketResponseTest.php b/src/gen/test/Model/GetTicketResponseTest.php
index 94a84959de..ccc4d425dc 100644
--- a/src/gen/test/Model/GetTicketResponseTest.php
+++ b/src/gen/test/Model/GetTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketsResponseTest.php b/src/gen/test/Model/GetTicketsResponseTest.php
index be3853f530..2130e547ae 100644
--- a/src/gen/test/Model/GetTicketsResponseTest.php
+++ b/src/gen/test/Model/GetTicketsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestResponseTest.php b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
index 2d36b6f75b..364b859e6b 100644
--- a/src/gen/test/Model/GetTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
index 0712dd4769..ddc090fda9 100644
--- a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUploadSessionResponseTest.php b/src/gen/test/Model/GetUploadSessionResponseTest.php
index 0f7e5f1a67..bfa7b8157e 100644
--- a/src/gen/test/Model/GetUploadSessionResponseTest.php
+++ b/src/gen/test/Model/GetUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUserResponseTest.php b/src/gen/test/Model/GetUserResponseTest.php
index aefb52cc13..150e55b032 100644
--- a/src/gen/test/Model/GetUserResponseTest.php
+++ b/src/gen/test/Model/GetUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUsersResponseTest.php b/src/gen/test/Model/GetUsersResponseTest.php
index e9cab3c28e..d3d1baf241 100644
--- a/src/gen/test/Model/GetUsersResponseTest.php
+++ b/src/gen/test/Model/GetUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
index 4431624f4e..e210416ffd 100644
--- a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
+++ b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookResponseTest.php b/src/gen/test/Model/GetWebhookResponseTest.php
index 34c6258213..f2c58e5468 100644
--- a/src/gen/test/Model/GetWebhookResponseTest.php
+++ b/src/gen/test/Model/GetWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhooksResponseTest.php b/src/gen/test/Model/GetWebhooksResponseTest.php
index 29d30c7be0..f9cc418130 100644
--- a/src/gen/test/Model/GetWebhooksResponseTest.php
+++ b/src/gen/test/Model/GetWebhooksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisCompanyTest.php b/src/gen/test/Model/HrisCompanyTest.php
index e5472f5246..8e216ec3ba 100644
--- a/src/gen/test/Model/HrisCompanyTest.php
+++ b/src/gen/test/Model/HrisCompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisEventTypeTest.php b/src/gen/test/Model/HrisEventTypeTest.php
index f5f8414053..7efc755de2 100644
--- a/src/gen/test/Model/HrisEventTypeTest.php
+++ b/src/gen/test/Model/HrisEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobLocationTest.php b/src/gen/test/Model/HrisJobLocationTest.php
index 4a9a57056a..311b05a8fd 100644
--- a/src/gen/test/Model/HrisJobLocationTest.php
+++ b/src/gen/test/Model/HrisJobLocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobTest.php b/src/gen/test/Model/HrisJobTest.php
index dea9b18eb7..f8246aa37f 100644
--- a/src/gen/test/Model/HrisJobTest.php
+++ b/src/gen/test/Model/HrisJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobsTest.php b/src/gen/test/Model/HrisJobsTest.php
index 89d1967089..b1c4e79688 100644
--- a/src/gen/test/Model/HrisJobsTest.php
+++ b/src/gen/test/Model/HrisJobsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IntegrationStateTest.php b/src/gen/test/Model/IntegrationStateTest.php
index 4f463bc8b2..c14ef14d0f 100644
--- a/src/gen/test/Model/IntegrationStateTest.php
+++ b/src/gen/test/Model/IntegrationStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
index a3b098a387..d5d0c4a01a 100644
--- a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
+++ b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemTest.php b/src/gen/test/Model/InvoiceItemTest.php
index e3d8b03471..81b1ac34b7 100644
--- a/src/gen/test/Model/InvoiceItemTest.php
+++ b/src/gen/test/Model/InvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemsFilterTest.php b/src/gen/test/Model/InvoiceItemsFilterTest.php
index fc3ddfe4b2..f3716302c3 100644
--- a/src/gen/test/Model/InvoiceItemsFilterTest.php
+++ b/src/gen/test/Model/InvoiceItemsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceLineItemTest.php b/src/gen/test/Model/InvoiceLineItemTest.php
index 09b59d0fe6..94b3f732a8 100644
--- a/src/gen/test/Model/InvoiceLineItemTest.php
+++ b/src/gen/test/Model/InvoiceLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceResponseTest.php b/src/gen/test/Model/InvoiceResponseTest.php
index ca0cb3e1f5..261849af41 100644
--- a/src/gen/test/Model/InvoiceResponseTest.php
+++ b/src/gen/test/Model/InvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceTest.php b/src/gen/test/Model/InvoiceTest.php
index 00b4ec7016..db6a04f8eb 100644
--- a/src/gen/test/Model/InvoiceTest.php
+++ b/src/gen/test/Model/InvoiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesFilterTest.php b/src/gen/test/Model/InvoicesFilterTest.php
index 33ea623913..f796030a90 100644
--- a/src/gen/test/Model/InvoicesFilterTest.php
+++ b/src/gen/test/Model/InvoicesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesSortTest.php b/src/gen/test/Model/InvoicesSortTest.php
index 100c7fed06..fff0862195 100644
--- a/src/gen/test/Model/InvoicesSortTest.php
+++ b/src/gen/test/Model/InvoicesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssueTrackingEventTypeTest.php b/src/gen/test/Model/IssueTrackingEventTypeTest.php
index a8975ed731..2c0fb3ae70 100644
--- a/src/gen/test/Model/IssueTrackingEventTypeTest.php
+++ b/src/gen/test/Model/IssueTrackingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssuesFilterTest.php b/src/gen/test/Model/IssuesFilterTest.php
index 16c00324bd..0f502b7c17 100644
--- a/src/gen/test/Model/IssuesFilterTest.php
+++ b/src/gen/test/Model/IssuesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ItemTest.php b/src/gen/test/Model/ItemTest.php
index 8ad32047a3..2afcb9ebc6 100644
--- a/src/gen/test/Model/ItemTest.php
+++ b/src/gen/test/Model/ItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobLinksTest.php b/src/gen/test/Model/JobLinksTest.php
index ca5e1d58ed..11fcb10910 100644
--- a/src/gen/test/Model/JobLinksTest.php
+++ b/src/gen/test/Model/JobLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobSalaryTest.php b/src/gen/test/Model/JobSalaryTest.php
index 3d4a229e0f..34add36686 100644
--- a/src/gen/test/Model/JobSalaryTest.php
+++ b/src/gen/test/Model/JobSalaryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobStatusTest.php b/src/gen/test/Model/JobStatusTest.php
index 8feb55cb30..087144a83e 100644
--- a/src/gen/test/Model/JobStatusTest.php
+++ b/src/gen/test/Model/JobStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobTest.php b/src/gen/test/Model/JobTest.php
index 99812db0c0..8052f06be6 100644
--- a/src/gen/test/Model/JobTest.php
+++ b/src/gen/test/Model/JobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesFilterTest.php b/src/gen/test/Model/JournalEntriesFilterTest.php
index 4a76866cc9..afc2b124df 100644
--- a/src/gen/test/Model/JournalEntriesFilterTest.php
+++ b/src/gen/test/Model/JournalEntriesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesSortTest.php b/src/gen/test/Model/JournalEntriesSortTest.php
index 1ec6b3a4a3..e2b4e1c192 100644
--- a/src/gen/test/Model/JournalEntriesSortTest.php
+++ b/src/gen/test/Model/JournalEntriesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryLineItemTest.php b/src/gen/test/Model/JournalEntryLineItemTest.php
index 2f8869a477..34360c725d 100644
--- a/src/gen/test/Model/JournalEntryLineItemTest.php
+++ b/src/gen/test/Model/JournalEntryLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryTest.php b/src/gen/test/Model/JournalEntryTest.php
index c373c7d98f..d06399715d 100644
--- a/src/gen/test/Model/JournalEntryTest.php
+++ b/src/gen/test/Model/JournalEntryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadEventTypeTest.php b/src/gen/test/Model/LeadEventTypeTest.php
index 5f65dadc56..ed7f0134aa 100644
--- a/src/gen/test/Model/LeadEventTypeTest.php
+++ b/src/gen/test/Model/LeadEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadTest.php b/src/gen/test/Model/LeadTest.php
index 2ae6546938..2b6cfad39f 100644
--- a/src/gen/test/Model/LeadTest.php
+++ b/src/gen/test/Model/LeadTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsFilterTest.php b/src/gen/test/Model/LeadsFilterTest.php
index fec6f109ce..5ce7eb1a4c 100644
--- a/src/gen/test/Model/LeadsFilterTest.php
+++ b/src/gen/test/Model/LeadsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsSortTest.php b/src/gen/test/Model/LeadsSortTest.php
index 3878b94eab..d362cd0e15 100644
--- a/src/gen/test/Model/LeadsSortTest.php
+++ b/src/gen/test/Model/LeadsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountCategoriesTest.php b/src/gen/test/Model/LedgerAccountCategoriesTest.php
index aed39d4f71..432c968965 100644
--- a/src/gen/test/Model/LedgerAccountCategoriesTest.php
+++ b/src/gen/test/Model/LedgerAccountCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountParentAccountTest.php b/src/gen/test/Model/LedgerAccountParentAccountTest.php
index ff84d468f0..546fac5ea4 100644
--- a/src/gen/test/Model/LedgerAccountParentAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountParentAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountTest.php b/src/gen/test/Model/LedgerAccountTest.php
index c470d9afd0..c55efeeef1 100644
--- a/src/gen/test/Model/LedgerAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsFilterTest.php b/src/gen/test/Model/LedgerAccountsFilterTest.php
index 150bb64a01..6f97d1c595 100644
--- a/src/gen/test/Model/LedgerAccountsFilterTest.php
+++ b/src/gen/test/Model/LedgerAccountsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsSortTest.php b/src/gen/test/Model/LedgerAccountsSortTest.php
index 9a75aa732f..d994490012 100644
--- a/src/gen/test/Model/LedgerAccountsSortTest.php
+++ b/src/gen/test/Model/LedgerAccountsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedConnectorResourceTest.php b/src/gen/test/Model/LinkedConnectorResourceTest.php
index 957d7e7fa8..ed8839f37e 100644
--- a/src/gen/test/Model/LinkedConnectorResourceTest.php
+++ b/src/gen/test/Model/LinkedConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedCustomerTest.php b/src/gen/test/Model/LinkedCustomerTest.php
index 5df6f41a68..275c521d6d 100644
--- a/src/gen/test/Model/LinkedCustomerTest.php
+++ b/src/gen/test/Model/LinkedCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceCustomerTest.php b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
index 09b25c3715..a5bd172379 100644
--- a/src/gen/test/Model/LinkedEcommerceCustomerTest.php
+++ b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceOrderTest.php b/src/gen/test/Model/LinkedEcommerceOrderTest.php
index 0c97fa9512..55ff0fd837 100644
--- a/src/gen/test/Model/LinkedEcommerceOrderTest.php
+++ b/src/gen/test/Model/LinkedEcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedFolderTest.php b/src/gen/test/Model/LinkedFolderTest.php
index 3bc9bbca20..468b9bd2ab 100644
--- a/src/gen/test/Model/LinkedFolderTest.php
+++ b/src/gen/test/Model/LinkedFolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedInvoiceItemTest.php b/src/gen/test/Model/LinkedInvoiceItemTest.php
index 9f514601b0..917daa1c00 100644
--- a/src/gen/test/Model/LinkedInvoiceItemTest.php
+++ b/src/gen/test/Model/LinkedInvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedLedgerAccountTest.php b/src/gen/test/Model/LinkedLedgerAccountTest.php
index 104402fad1..ea57e327c2 100644
--- a/src/gen/test/Model/LinkedLedgerAccountTest.php
+++ b/src/gen/test/Model/LinkedLedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedParentCustomerTest.php b/src/gen/test/Model/LinkedParentCustomerTest.php
index 76e821efc8..25121fb0be 100644
--- a/src/gen/test/Model/LinkedParentCustomerTest.php
+++ b/src/gen/test/Model/LinkedParentCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedSupplierTest.php b/src/gen/test/Model/LinkedSupplierTest.php
index 421eebda76..d28297e9b0 100644
--- a/src/gen/test/Model/LinkedSupplierTest.php
+++ b/src/gen/test/Model/LinkedSupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTaxRateTest.php b/src/gen/test/Model/LinkedTaxRateTest.php
index 1c11404463..a51c643be9 100644
--- a/src/gen/test/Model/LinkedTaxRateTest.php
+++ b/src/gen/test/Model/LinkedTaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTrackingCategoryTest.php b/src/gen/test/Model/LinkedTrackingCategoryTest.php
index a397f24881..e689cf3aff 100644
--- a/src/gen/test/Model/LinkedTrackingCategoryTest.php
+++ b/src/gen/test/Model/LinkedTrackingCategoryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinksTest.php b/src/gen/test/Model/LinksTest.php
index 4e7dccb501..3456b80604 100644
--- a/src/gen/test/Model/LinksTest.php
+++ b/src/gen/test/Model/LinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LocationTest.php b/src/gen/test/Model/LocationTest.php
index eafdd6eeec..d15991b4a1 100644
--- a/src/gen/test/Model/LocationTest.php
+++ b/src/gen/test/Model/LocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogOperationTest.php b/src/gen/test/Model/LogOperationTest.php
index 7ac6f34c02..3b041ede33 100644
--- a/src/gen/test/Model/LogOperationTest.php
+++ b/src/gen/test/Model/LogOperationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogServiceTest.php b/src/gen/test/Model/LogServiceTest.php
index 646be6ea9b..755aec289a 100644
--- a/src/gen/test/Model/LogServiceTest.php
+++ b/src/gen/test/Model/LogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogTest.php b/src/gen/test/Model/LogTest.php
index 0434d38c2c..5b9d3fad35 100644
--- a/src/gen/test/Model/LogTest.php
+++ b/src/gen/test/Model/LogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogsFilterTest.php b/src/gen/test/Model/LogsFilterTest.php
index bdccadf4b3..8974b45100 100644
--- a/src/gen/test/Model/LogsFilterTest.php
+++ b/src/gen/test/Model/LogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MerchantTest.php b/src/gen/test/Model/MerchantTest.php
index db9bcda6bf..97f4adb5e5 100644
--- a/src/gen/test/Model/MerchantTest.php
+++ b/src/gen/test/Model/MerchantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MessageTest.php b/src/gen/test/Model/MessageTest.php
index 77ac6ce903..237d7d77a0 100644
--- a/src/gen/test/Model/MessageTest.php
+++ b/src/gen/test/Model/MessageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaCursorsTest.php b/src/gen/test/Model/MetaCursorsTest.php
index 6be873f87d..52a9522969 100644
--- a/src/gen/test/Model/MetaCursorsTest.php
+++ b/src/gen/test/Model/MetaCursorsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaTest.php b/src/gen/test/Model/MetaTest.php
index 42a611d1b3..51c7d45367 100644
--- a/src/gen/test/Model/MetaTest.php
+++ b/src/gen/test/Model/MetaTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupFilterTest.php b/src/gen/test/Model/ModifierGroupFilterTest.php
index 248c76f91e..2127919168 100644
--- a/src/gen/test/Model/ModifierGroupFilterTest.php
+++ b/src/gen/test/Model/ModifierGroupFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupTest.php b/src/gen/test/Model/ModifierGroupTest.php
index 2f81c9d40e..d2c9812cda 100644
--- a/src/gen/test/Model/ModifierGroupTest.php
+++ b/src/gen/test/Model/ModifierGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierTest.php b/src/gen/test/Model/ModifierTest.php
index 71504896d0..87a7678ed0 100644
--- a/src/gen/test/Model/ModifierTest.php
+++ b/src/gen/test/Model/ModifierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotFoundResponseTest.php b/src/gen/test/Model/NotFoundResponseTest.php
index b81c8ba901..7bfe62b57a 100644
--- a/src/gen/test/Model/NotFoundResponseTest.php
+++ b/src/gen/test/Model/NotFoundResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotImplementedResponseTest.php b/src/gen/test/Model/NotImplementedResponseTest.php
index a4cc66f706..9bb6e12525 100644
--- a/src/gen/test/Model/NotImplementedResponseTest.php
+++ b/src/gen/test/Model/NotImplementedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NoteTest.php b/src/gen/test/Model/NoteTest.php
index f74553fd54..0f1bab6c00 100644
--- a/src/gen/test/Model/NoteTest.php
+++ b/src/gen/test/Model/NoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OAuthGrantTypeTest.php b/src/gen/test/Model/OAuthGrantTypeTest.php
index da8e2f3c1e..d6be24fd1a 100644
--- a/src/gen/test/Model/OAuthGrantTypeTest.php
+++ b/src/gen/test/Model/OAuthGrantTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OfferTest.php b/src/gen/test/Model/OfferTest.php
index 575218c88f..5b4e6e6446 100644
--- a/src/gen/test/Model/OfferTest.php
+++ b/src/gen/test/Model/OfferTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesFilterTest.php b/src/gen/test/Model/OpportunitiesFilterTest.php
index 4cd2f659bd..6aaf435c1b 100644
--- a/src/gen/test/Model/OpportunitiesFilterTest.php
+++ b/src/gen/test/Model/OpportunitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesSortTest.php b/src/gen/test/Model/OpportunitiesSortTest.php
index f69a78923b..aef00a7f95 100644
--- a/src/gen/test/Model/OpportunitiesSortTest.php
+++ b/src/gen/test/Model/OpportunitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunityTest.php b/src/gen/test/Model/OpportunityTest.php
index 81632d8066..f7c4c8e7b8 100644
--- a/src/gen/test/Model/OpportunityTest.php
+++ b/src/gen/test/Model/OpportunityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderCustomersTest.php b/src/gen/test/Model/OrderCustomersTest.php
index 3c0171b731..d7a5faf3bd 100644
--- a/src/gen/test/Model/OrderCustomersTest.php
+++ b/src/gen/test/Model/OrderCustomersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderDiscountsTest.php b/src/gen/test/Model/OrderDiscountsTest.php
index 8a7209f16a..52b8e0d699 100644
--- a/src/gen/test/Model/OrderDiscountsTest.php
+++ b/src/gen/test/Model/OrderDiscountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderFulfillmentsTest.php b/src/gen/test/Model/OrderFulfillmentsTest.php
index 9c0e1b10b7..e29d6bc754 100644
--- a/src/gen/test/Model/OrderFulfillmentsTest.php
+++ b/src/gen/test/Model/OrderFulfillmentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderLineItemsTest.php b/src/gen/test/Model/OrderLineItemsTest.php
index 4dc9e1d935..c82f10f7f7 100644
--- a/src/gen/test/Model/OrderLineItemsTest.php
+++ b/src/gen/test/Model/OrderLineItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPaymentsTest.php b/src/gen/test/Model/OrderPaymentsTest.php
index 4afe9895b1..587ccb6445 100644
--- a/src/gen/test/Model/OrderPaymentsTest.php
+++ b/src/gen/test/Model/OrderPaymentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
index 5cc14b4734..a1c21b8b36 100644
--- a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
index 10478cbda6..8dfce746c7 100644
--- a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsTest.php
index 7b3ed33dc2..60b50fd51c 100644
--- a/src/gen/test/Model/OrderPickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderRefundsTest.php b/src/gen/test/Model/OrderRefundsTest.php
index 9a76cab14f..9bd5ee509f 100644
--- a/src/gen/test/Model/OrderRefundsTest.php
+++ b/src/gen/test/Model/OrderRefundsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTendersTest.php b/src/gen/test/Model/OrderTendersTest.php
index 7c81476498..81d8ce2bc0 100644
--- a/src/gen/test/Model/OrderTendersTest.php
+++ b/src/gen/test/Model/OrderTendersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTest.php b/src/gen/test/Model/OrderTest.php
index 711c05b38c..e54266fb64 100644
--- a/src/gen/test/Model/OrderTest.php
+++ b/src/gen/test/Model/OrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTypeTest.php b/src/gen/test/Model/OrderTypeTest.php
index 404b65b9f9..4098015b6c 100644
--- a/src/gen/test/Model/OrderTypeTest.php
+++ b/src/gen/test/Model/OrderTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OwnerTest.php b/src/gen/test/Model/OwnerTest.php
index 3c45d38e9a..967753de94 100644
--- a/src/gen/test/Model/OwnerTest.php
+++ b/src/gen/test/Model/OwnerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaginationCoverageTest.php b/src/gen/test/Model/PaginationCoverageTest.php
index 689f85e15e..4364646e92 100644
--- a/src/gen/test/Model/PaginationCoverageTest.php
+++ b/src/gen/test/Model/PaginationCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PassThroughQueryTest.php b/src/gen/test/Model/PassThroughQueryTest.php
index fc9f20f895..41cb796c55 100644
--- a/src/gen/test/Model/PassThroughQueryTest.php
+++ b/src/gen/test/Model/PassThroughQueryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentAllocationsTest.php b/src/gen/test/Model/PaymentAllocationsTest.php
index 6dee6a4489..8883a316e6 100644
--- a/src/gen/test/Model/PaymentAllocationsTest.php
+++ b/src/gen/test/Model/PaymentAllocationsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentCardTest.php b/src/gen/test/Model/PaymentCardTest.php
index 6159eba5b4..25e729440d 100644
--- a/src/gen/test/Model/PaymentCardTest.php
+++ b/src/gen/test/Model/PaymentCardTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentFrequencyTest.php b/src/gen/test/Model/PaymentFrequencyTest.php
index fefde3f76f..e1bdfcf019 100644
--- a/src/gen/test/Model/PaymentFrequencyTest.php
+++ b/src/gen/test/Model/PaymentFrequencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentRequiredResponseTest.php b/src/gen/test/Model/PaymentRequiredResponseTest.php
index 3b9eccd51f..c5c13010c8 100644
--- a/src/gen/test/Model/PaymentRequiredResponseTest.php
+++ b/src/gen/test/Model/PaymentRequiredResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentTest.php b/src/gen/test/Model/PaymentTest.php
index b44d1b7b88..3b1b3c558d 100644
--- a/src/gen/test/Model/PaymentTest.php
+++ b/src/gen/test/Model/PaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentUnitTest.php b/src/gen/test/Model/PaymentUnitTest.php
index 91b7797ef9..a43189cdca 100644
--- a/src/gen/test/Model/PaymentUnitTest.php
+++ b/src/gen/test/Model/PaymentUnitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsFilterTest.php b/src/gen/test/Model/PaymentsFilterTest.php
index 1706b12c96..0b034b7bdc 100644
--- a/src/gen/test/Model/PaymentsFilterTest.php
+++ b/src/gen/test/Model/PaymentsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsSortTest.php b/src/gen/test/Model/PaymentsSortTest.php
index 55945d8baa..5f689ef36a 100644
--- a/src/gen/test/Model/PaymentsSortTest.php
+++ b/src/gen/test/Model/PaymentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTest.php b/src/gen/test/Model/PayrollTest.php
index dda11753d6..6ca8edfa4f 100644
--- a/src/gen/test/Model/PayrollTest.php
+++ b/src/gen/test/Model/PayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTotalsTest.php b/src/gen/test/Model/PayrollTotalsTest.php
index 7fa3a51a3f..7f9e182a6d 100644
--- a/src/gen/test/Model/PayrollTotalsTest.php
+++ b/src/gen/test/Model/PayrollTotalsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollsFilterTest.php b/src/gen/test/Model/PayrollsFilterTest.php
index 2f2df15d55..20fdee488c 100644
--- a/src/gen/test/Model/PayrollsFilterTest.php
+++ b/src/gen/test/Model/PayrollsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PersonTest.php b/src/gen/test/Model/PersonTest.php
index b1e19c265d..872edfa19b 100644
--- a/src/gen/test/Model/PersonTest.php
+++ b/src/gen/test/Model/PersonTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PhoneNumberTest.php b/src/gen/test/Model/PhoneNumberTest.php
index a3ac79e2ea..a259c3c9d3 100644
--- a/src/gen/test/Model/PhoneNumberTest.php
+++ b/src/gen/test/Model/PhoneNumberTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineStagesTest.php b/src/gen/test/Model/PipelineStagesTest.php
index c4f3211148..db05ab5188 100644
--- a/src/gen/test/Model/PipelineStagesTest.php
+++ b/src/gen/test/Model/PipelineStagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineTest.php b/src/gen/test/Model/PipelineTest.php
index 2430929900..d1a410b14d 100644
--- a/src/gen/test/Model/PipelineTest.php
+++ b/src/gen/test/Model/PipelineTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountAchDetailsTest.php b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
index f777544b6c..e09162ae38 100644
--- a/src/gen/test/Model/PosBankAccountAchDetailsTest.php
+++ b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountTest.php b/src/gen/test/Model/PosBankAccountTest.php
index b490fe6580..df64c6f2d2 100644
--- a/src/gen/test/Model/PosBankAccountTest.php
+++ b/src/gen/test/Model/PosBankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentCardDetailsTest.php b/src/gen/test/Model/PosPaymentCardDetailsTest.php
index 8cde34d24e..b58bbddcdd 100644
--- a/src/gen/test/Model/PosPaymentCardDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentCardDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentExternalDetailsTest.php b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
index 4544584cbd..0c2f1b2b49 100644
--- a/src/gen/test/Model/PosPaymentExternalDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentTest.php b/src/gen/test/Model/PosPaymentTest.php
index c4d1bbb841..d3cc39bdbe 100644
--- a/src/gen/test/Model/PosPaymentTest.php
+++ b/src/gen/test/Model/PosPaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PriceTest.php b/src/gen/test/Model/PriceTest.php
index 1cb4c33eb1..f6ace5cf05 100644
--- a/src/gen/test/Model/PriceTest.php
+++ b/src/gen/test/Model/PriceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProbationPeriodTest.php b/src/gen/test/Model/ProbationPeriodTest.php
index 053aae2e70..285d204455 100644
--- a/src/gen/test/Model/ProbationPeriodTest.php
+++ b/src/gen/test/Model/ProbationPeriodTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossExpensesTest.php b/src/gen/test/Model/ProfitAndLossExpensesTest.php
index b907ef1c5f..e36a5930f3 100644
--- a/src/gen/test/Model/ProfitAndLossExpensesTest.php
+++ b/src/gen/test/Model/ProfitAndLossExpensesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossFilterTest.php b/src/gen/test/Model/ProfitAndLossFilterTest.php
index 6e5ee08641..cf60d5d38e 100644
--- a/src/gen/test/Model/ProfitAndLossFilterTest.php
+++ b/src/gen/test/Model/ProfitAndLossFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
index ca4a18c7d6..79bbe13ce8 100644
--- a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
+++ b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossIncomeTest.php b/src/gen/test/Model/ProfitAndLossIncomeTest.php
index 46fc1cf7b4..aed925ba93 100644
--- a/src/gen/test/Model/ProfitAndLossIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
index 124284a5ed..220bb66930 100644
--- a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
index 275c1f3194..43cbcac07a 100644
--- a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossRecordTest.php b/src/gen/test/Model/ProfitAndLossRecordTest.php
index 99ef78de31..db91e2f2da 100644
--- a/src/gen/test/Model/ProfitAndLossRecordTest.php
+++ b/src/gen/test/Model/ProfitAndLossRecordTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossSectionTest.php b/src/gen/test/Model/ProfitAndLossSectionTest.php
index a0e766b4bf..4d7568d171 100644
--- a/src/gen/test/Model/ProfitAndLossSectionTest.php
+++ b/src/gen/test/Model/ProfitAndLossSectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossTest.php b/src/gen/test/Model/ProfitAndLossTest.php
index a70c17a60a..5c74ae46d7 100644
--- a/src/gen/test/Model/ProfitAndLossTest.php
+++ b/src/gen/test/Model/ProfitAndLossTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrderTest.php b/src/gen/test/Model/PurchaseOrderTest.php
index 1df8cb8e13..af5aaf7181 100644
--- a/src/gen/test/Model/PurchaseOrderTest.php
+++ b/src/gen/test/Model/PurchaseOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersFilterTest.php b/src/gen/test/Model/PurchaseOrdersFilterTest.php
index cc82bd4c34..38fc85cc13 100644
--- a/src/gen/test/Model/PurchaseOrdersFilterTest.php
+++ b/src/gen/test/Model/PurchaseOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersSortTest.php b/src/gen/test/Model/PurchaseOrdersSortTest.php
index 696838150b..8c4ced350d 100644
--- a/src/gen/test/Model/PurchaseOrdersSortTest.php
+++ b/src/gen/test/Model/PurchaseOrdersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestCountAllocationTest.php b/src/gen/test/Model/RequestCountAllocationTest.php
index 932b3a0ad3..dbd2015ca8 100644
--- a/src/gen/test/Model/RequestCountAllocationTest.php
+++ b/src/gen/test/Model/RequestCountAllocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestRateTest.php b/src/gen/test/Model/RequestRateTest.php
index 0d31149a71..940453da14 100644
--- a/src/gen/test/Model/RequestRateTest.php
+++ b/src/gen/test/Model/RequestRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResolveWebhookResponseTest.php b/src/gen/test/Model/ResolveWebhookResponseTest.php
index 90cbbaa973..438a5a9fc5 100644
--- a/src/gen/test/Model/ResolveWebhookResponseTest.php
+++ b/src/gen/test/Model/ResolveWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceExampleTest.php b/src/gen/test/Model/ResourceExampleTest.php
index fc3bfee9d9..3e030edd12 100644
--- a/src/gen/test/Model/ResourceExampleTest.php
+++ b/src/gen/test/Model/ResourceExampleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceStatusTest.php b/src/gen/test/Model/ResourceStatusTest.php
index cba2df4b3c..ce7f24caaa 100644
--- a/src/gen/test/Model/ResourceStatusTest.php
+++ b/src/gen/test/Model/ResourceStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleTest.php b/src/gen/test/Model/ScheduleTest.php
index 5eff28f3ff..590ff6302e 100644
--- a/src/gen/test/Model/ScheduleTest.php
+++ b/src/gen/test/Model/ScheduleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
index 77240df566..42d9713023 100644
--- a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternTest.php b/src/gen/test/Model/ScheduleWorkPatternTest.php
index 513bf7dc06..b3e466b631 100644
--- a/src/gen/test/Model/ScheduleWorkPatternTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SchemaSupportTest.php b/src/gen/test/Model/SchemaSupportTest.php
index 6575eabd24..d0e770e922 100644
--- a/src/gen/test/Model/SchemaSupportTest.php
+++ b/src/gen/test/Model/SchemaSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ServiceChargeTest.php b/src/gen/test/Model/ServiceChargeTest.php
index 418580b0d4..2e9b9d1be6 100644
--- a/src/gen/test/Model/ServiceChargeTest.php
+++ b/src/gen/test/Model/ServiceChargeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionSettingsTest.php b/src/gen/test/Model/SessionSettingsTest.php
index ad0ee1b3cd..734e7edfd1 100644
--- a/src/gen/test/Model/SessionSettingsTest.php
+++ b/src/gen/test/Model/SessionSettingsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionTest.php b/src/gen/test/Model/SessionTest.php
index 0bd969e8ef..d20c2f7cb7 100644
--- a/src/gen/test/Model/SessionTest.php
+++ b/src/gen/test/Model/SessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionThemeTest.php b/src/gen/test/Model/SessionThemeTest.php
index 65bf283ae4..ec801f78fb 100644
--- a/src/gen/test/Model/SessionThemeTest.php
+++ b/src/gen/test/Model/SessionThemeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTargetTest.php b/src/gen/test/Model/SharedLinkTargetTest.php
index 42573782d8..870f4d793c 100644
--- a/src/gen/test/Model/SharedLinkTargetTest.php
+++ b/src/gen/test/Model/SharedLinkTargetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTest.php b/src/gen/test/Model/SharedLinkTest.php
index 6e44b57b7f..0eb45378b8 100644
--- a/src/gen/test/Model/SharedLinkTest.php
+++ b/src/gen/test/Model/SharedLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SimpleFormFieldOptionTest.php b/src/gen/test/Model/SimpleFormFieldOptionTest.php
index be936246b3..d097225153 100644
--- a/src/gen/test/Model/SimpleFormFieldOptionTest.php
+++ b/src/gen/test/Model/SimpleFormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SocialLinkTest.php b/src/gen/test/Model/SocialLinkTest.php
index 56e52154a4..91bacbe3b1 100644
--- a/src/gen/test/Model/SocialLinkTest.php
+++ b/src/gen/test/Model/SocialLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SortDirectionTest.php b/src/gen/test/Model/SortDirectionTest.php
index 3a3b9371ad..b7121da3da 100644
--- a/src/gen/test/Model/SortDirectionTest.php
+++ b/src/gen/test/Model/SortDirectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/StatusTest.php b/src/gen/test/Model/StatusTest.php
index 00ed51dff6..42c1b9cf64 100644
--- a/src/gen/test/Model/StatusTest.php
+++ b/src/gen/test/Model/StatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SubsidiaryTest.php b/src/gen/test/Model/SubsidiaryTest.php
index 8034900ab9..7abe0f888f 100644
--- a/src/gen/test/Model/SubsidiaryTest.php
+++ b/src/gen/test/Model/SubsidiaryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SupplierTest.php b/src/gen/test/Model/SupplierTest.php
index 54104591ba..9dc7e23305 100644
--- a/src/gen/test/Model/SupplierTest.php
+++ b/src/gen/test/Model/SupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersFilterTest.php b/src/gen/test/Model/SuppliersFilterTest.php
index 54a969d8de..bb77e4f55f 100644
--- a/src/gen/test/Model/SuppliersFilterTest.php
+++ b/src/gen/test/Model/SuppliersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersSortTest.php b/src/gen/test/Model/SuppliersSortTest.php
index 2acd5d3a1c..a771a6966a 100644
--- a/src/gen/test/Model/SuppliersSortTest.php
+++ b/src/gen/test/Model/SuppliersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SupportedPropertyTest.php b/src/gen/test/Model/SupportedPropertyTest.php
index 90f5c1868f..bedfe85f9c 100644
--- a/src/gen/test/Model/SupportedPropertyTest.php
+++ b/src/gen/test/Model/SupportedPropertyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRateTest.php b/src/gen/test/Model/TaxRateTest.php
index 774c24de57..23467a5567 100644
--- a/src/gen/test/Model/TaxRateTest.php
+++ b/src/gen/test/Model/TaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRatesFilterTest.php b/src/gen/test/Model/TaxRatesFilterTest.php
index f28598c441..1893e83d00 100644
--- a/src/gen/test/Model/TaxRatesFilterTest.php
+++ b/src/gen/test/Model/TaxRatesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxTest.php b/src/gen/test/Model/TaxTest.php
index 414a522036..15aec4b8a6 100644
--- a/src/gen/test/Model/TaxTest.php
+++ b/src/gen/test/Model/TaxTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TeamTest.php b/src/gen/test/Model/TeamTest.php
index a2a299c00c..1f2b4d8d85 100644
--- a/src/gen/test/Model/TeamTest.php
+++ b/src/gen/test/Model/TeamTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TenderTest.php b/src/gen/test/Model/TenderTest.php
index ba439bc946..42b7ea90c9 100644
--- a/src/gen/test/Model/TenderTest.php
+++ b/src/gen/test/Model/TenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketTest.php b/src/gen/test/Model/TicketTest.php
index 0a530e0fc7..c4b248a285 100644
--- a/src/gen/test/Model/TicketTest.php
+++ b/src/gen/test/Model/TicketTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketsSortTest.php b/src/gen/test/Model/TicketsSortTest.php
index e702fe9361..96dcff08a3 100644
--- a/src/gen/test/Model/TicketsSortTest.php
+++ b/src/gen/test/Model/TicketsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestNotesTest.php b/src/gen/test/Model/TimeOffRequestNotesTest.php
index 02aeae9b98..ee232e3c19 100644
--- a/src/gen/test/Model/TimeOffRequestNotesTest.php
+++ b/src/gen/test/Model/TimeOffRequestNotesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestTest.php b/src/gen/test/Model/TimeOffRequestTest.php
index a32d08f441..721a3497c2 100644
--- a/src/gen/test/Model/TimeOffRequestTest.php
+++ b/src/gen/test/Model/TimeOffRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestsFilterTest.php b/src/gen/test/Model/TimeOffRequestsFilterTest.php
index 4b5a00e1e9..0db8d97044 100644
--- a/src/gen/test/Model/TimeOffRequestsFilterTest.php
+++ b/src/gen/test/Model/TimeOffRequestsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
index f036e066e4..08282a5361 100644
--- a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseTest.php b/src/gen/test/Model/TooManyRequestsResponseTest.php
index 787b83aadd..49dac956d4 100644
--- a/src/gen/test/Model/TooManyRequestsResponseTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TrackingItemTest.php b/src/gen/test/Model/TrackingItemTest.php
index fb8991c03a..fe0823b58c 100644
--- a/src/gen/test/Model/TrackingItemTest.php
+++ b/src/gen/test/Model/TrackingItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnauthorizedResponseTest.php b/src/gen/test/Model/UnauthorizedResponseTest.php
index 94445ab3c9..933a615ec7 100644
--- a/src/gen/test/Model/UnauthorizedResponseTest.php
+++ b/src/gen/test/Model/UnauthorizedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnexpectedErrorResponseTest.php b/src/gen/test/Model/UnexpectedErrorResponseTest.php
index 312ac6a3b8..20bb34355e 100644
--- a/src/gen/test/Model/UnexpectedErrorResponseTest.php
+++ b/src/gen/test/Model/UnexpectedErrorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedApiIdTest.php b/src/gen/test/Model/UnifiedApiIdTest.php
index eddd601517..a1da49696d 100644
--- a/src/gen/test/Model/UnifiedApiIdTest.php
+++ b/src/gen/test/Model/UnifiedApiIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFilePermissionsTest.php b/src/gen/test/Model/UnifiedFilePermissionsTest.php
index dc280c2a40..e01ab47322 100644
--- a/src/gen/test/Model/UnifiedFilePermissionsTest.php
+++ b/src/gen/test/Model/UnifiedFilePermissionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFileTest.php b/src/gen/test/Model/UnifiedFileTest.php
index b87dcca275..9a50a071db 100644
--- a/src/gen/test/Model/UnifiedFileTest.php
+++ b/src/gen/test/Model/UnifiedFileTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedIdTest.php b/src/gen/test/Model/UnifiedIdTest.php
index 78792e1533..0db63271e2 100644
--- a/src/gen/test/Model/UnifiedIdTest.php
+++ b/src/gen/test/Model/UnifiedIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnprocessableResponseTest.php b/src/gen/test/Model/UnprocessableResponseTest.php
index fdf064fa56..8bcb711367 100644
--- a/src/gen/test/Model/UnprocessableResponseTest.php
+++ b/src/gen/test/Model/UnprocessableResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateActivityResponseTest.php b/src/gen/test/Model/UpdateActivityResponseTest.php
index 7fef528ec3..425ebaeec2 100644
--- a/src/gen/test/Model/UpdateActivityResponseTest.php
+++ b/src/gen/test/Model/UpdateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicantResponseTest.php b/src/gen/test/Model/UpdateApplicantResponseTest.php
index 7bcb9ba40f..9fb01c9c2e 100644
--- a/src/gen/test/Model/UpdateApplicantResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicationResponseTest.php b/src/gen/test/Model/UpdateApplicationResponseTest.php
index a6812f78d3..95970a586d 100644
--- a/src/gen/test/Model/UpdateApplicationResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateBillResponseTest.php b/src/gen/test/Model/UpdateBillResponseTest.php
index 74553179b0..2bb03acde2 100644
--- a/src/gen/test/Model/UpdateBillResponseTest.php
+++ b/src/gen/test/Model/UpdateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCommentResponseTest.php b/src/gen/test/Model/UpdateCommentResponseTest.php
index c5daba1884..76407df53e 100644
--- a/src/gen/test/Model/UpdateCommentResponseTest.php
+++ b/src/gen/test/Model/UpdateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCompanyResponseTest.php b/src/gen/test/Model/UpdateCompanyResponseTest.php
index 749966fe9c..a99bac5cf1 100644
--- a/src/gen/test/Model/UpdateCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConnectionResponseTest.php b/src/gen/test/Model/UpdateConnectionResponseTest.php
index d5c4548a86..c0e9a603ef 100644
--- a/src/gen/test/Model/UpdateConnectionResponseTest.php
+++ b/src/gen/test/Model/UpdateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerRequestTest.php b/src/gen/test/Model/UpdateConsumerRequestTest.php
index dde27996d8..f45c384c50 100644
--- a/src/gen/test/Model/UpdateConsumerRequestTest.php
+++ b/src/gen/test/Model/UpdateConsumerRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerResponseTest.php b/src/gen/test/Model/UpdateConsumerResponseTest.php
index 1bce2323f7..fe5bdff374 100644
--- a/src/gen/test/Model/UpdateConsumerResponseTest.php
+++ b/src/gen/test/Model/UpdateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateContactResponseTest.php b/src/gen/test/Model/UpdateContactResponseTest.php
index 08730c86d8..35847a763d 100644
--- a/src/gen/test/Model/UpdateContactResponseTest.php
+++ b/src/gen/test/Model/UpdateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCreditNoteResponseTest.php b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
index d7a7ed937a..9242f1ff4e 100644
--- a/src/gen/test/Model/UpdateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingRequestTest.php b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
index af172540c7..c2e3f63ea0 100644
--- a/src/gen/test/Model/UpdateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingResponseTest.php b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
index 385a9e7046..9a14d6467d 100644
--- a/src/gen/test/Model/UpdateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomerResponseTest.php b/src/gen/test/Model/UpdateCustomerResponseTest.php
index 98d1543554..1ab6416ec5 100644
--- a/src/gen/test/Model/UpdateCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDepartmentResponseTest.php b/src/gen/test/Model/UpdateDepartmentResponseTest.php
index f38a4da659..ff328115b5 100644
--- a/src/gen/test/Model/UpdateDepartmentResponseTest.php
+++ b/src/gen/test/Model/UpdateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveGroupResponseTest.php b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
index ef2d08f12a..64b3bb954c 100644
--- a/src/gen/test/Model/UpdateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveResponseTest.php b/src/gen/test/Model/UpdateDriveResponseTest.php
index 906f516480..829270d07f 100644
--- a/src/gen/test/Model/UpdateDriveResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
index 323875674a..d6573e812e 100644
--- a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
index 5e4e471a14..ddc52ff250 100644
--- a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEmployeeResponseTest.php b/src/gen/test/Model/UpdateEmployeeResponseTest.php
index 70cb69ad1e..a533440d03 100644
--- a/src/gen/test/Model/UpdateEmployeeResponseTest.php
+++ b/src/gen/test/Model/UpdateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileRequestTest.php b/src/gen/test/Model/UpdateFileRequestTest.php
index a486012f5e..22576682d6 100644
--- a/src/gen/test/Model/UpdateFileRequestTest.php
+++ b/src/gen/test/Model/UpdateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileResponseTest.php b/src/gen/test/Model/UpdateFileResponseTest.php
index 3fd5b334a6..0178868dc2 100644
--- a/src/gen/test/Model/UpdateFileResponseTest.php
+++ b/src/gen/test/Model/UpdateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderRequestTest.php b/src/gen/test/Model/UpdateFolderRequestTest.php
index 60d28bf33c..577386aaf1 100644
--- a/src/gen/test/Model/UpdateFolderRequestTest.php
+++ b/src/gen/test/Model/UpdateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderResponseTest.php b/src/gen/test/Model/UpdateFolderResponseTest.php
index ab38c07f99..478669ea9e 100644
--- a/src/gen/test/Model/UpdateFolderResponseTest.php
+++ b/src/gen/test/Model/UpdateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
index 8d31f6bdc0..59d960291c 100644
--- a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
index 8f16054404..d7be0fb87a 100644
--- a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceResponseTest.php b/src/gen/test/Model/UpdateInvoiceResponseTest.php
index 8642c1f090..a8998dd056 100644
--- a/src/gen/test/Model/UpdateInvoiceResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateItemResponseTest.php b/src/gen/test/Model/UpdateItemResponseTest.php
index 9511ad7b1e..cd0b1caa81 100644
--- a/src/gen/test/Model/UpdateItemResponseTest.php
+++ b/src/gen/test/Model/UpdateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJobResponseTest.php b/src/gen/test/Model/UpdateJobResponseTest.php
index 3ef36b4849..931a2990e4 100644
--- a/src/gen/test/Model/UpdateJobResponseTest.php
+++ b/src/gen/test/Model/UpdateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJournalEntryResponseTest.php b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
index 27d75f2480..cf220f2d99 100644
--- a/src/gen/test/Model/UpdateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLeadResponseTest.php b/src/gen/test/Model/UpdateLeadResponseTest.php
index 162553d6ae..edf2ebd415 100644
--- a/src/gen/test/Model/UpdateLeadResponseTest.php
+++ b/src/gen/test/Model/UpdateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
index 81dc3070ea..1ed38e9f54 100644
--- a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLocationResponseTest.php b/src/gen/test/Model/UpdateLocationResponseTest.php
index c4b37bc769..4dc12431a2 100644
--- a/src/gen/test/Model/UpdateLocationResponseTest.php
+++ b/src/gen/test/Model/UpdateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMerchantResponseTest.php b/src/gen/test/Model/UpdateMerchantResponseTest.php
index 7beac09ddc..8dae2f3b8d 100644
--- a/src/gen/test/Model/UpdateMerchantResponseTest.php
+++ b/src/gen/test/Model/UpdateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMessageResponseTest.php b/src/gen/test/Model/UpdateMessageResponseTest.php
index 5050afc69f..b0e9470b0f 100644
--- a/src/gen/test/Model/UpdateMessageResponseTest.php
+++ b/src/gen/test/Model/UpdateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierGroupResponseTest.php b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
index 4b91af31a3..4d7f354099 100644
--- a/src/gen/test/Model/UpdateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierResponseTest.php b/src/gen/test/Model/UpdateModifierResponseTest.php
index c025e6d514..9ba7cdf440 100644
--- a/src/gen/test/Model/UpdateModifierResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateNoteResponseTest.php b/src/gen/test/Model/UpdateNoteResponseTest.php
index 0725cb7da1..7c801e7185 100644
--- a/src/gen/test/Model/UpdateNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOpportunityResponseTest.php b/src/gen/test/Model/UpdateOpportunityResponseTest.php
index f8a2752fc2..ea3ee7eeb3 100644
--- a/src/gen/test/Model/UpdateOpportunityResponseTest.php
+++ b/src/gen/test/Model/UpdateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderResponseTest.php b/src/gen/test/Model/UpdateOrderResponseTest.php
index b7db87a348..57fb02468d 100644
--- a/src/gen/test/Model/UpdateOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderTypeResponseTest.php b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
index 5d7169e299..ac7623be9a 100644
--- a/src/gen/test/Model/UpdateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePaymentResponseTest.php b/src/gen/test/Model/UpdatePaymentResponseTest.php
index 6135996bf9..41def1089b 100644
--- a/src/gen/test/Model/UpdatePaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePipelineResponseTest.php b/src/gen/test/Model/UpdatePipelineResponseTest.php
index 249422e658..d23669a8b1 100644
--- a/src/gen/test/Model/UpdatePipelineResponseTest.php
+++ b/src/gen/test/Model/UpdatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePosPaymentResponseTest.php b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
index 787947d34a..077c9fb729 100644
--- a/src/gen/test/Model/UpdatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateProductResponseTest.php b/src/gen/test/Model/UpdateProductResponseTest.php
index 88f78b9786..3438810fa9 100644
--- a/src/gen/test/Model/UpdateProductResponseTest.php
+++ b/src/gen/test/Model/UpdateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
index fbc082623d..fd84df01a0 100644
--- a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSharedLinkResponseTest.php b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
index 43820fc7db..96aa91f9a3 100644
--- a/src/gen/test/Model/UpdateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSupplierResponseTest.php b/src/gen/test/Model/UpdateSupplierResponseTest.php
index fa6281f922..23f4adb03d 100644
--- a/src/gen/test/Model/UpdateSupplierResponseTest.php
+++ b/src/gen/test/Model/UpdateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTaxRateResponseTest.php b/src/gen/test/Model/UpdateTaxRateResponseTest.php
index 82ed5b3203..85f123583a 100644
--- a/src/gen/test/Model/UpdateTaxRateResponseTest.php
+++ b/src/gen/test/Model/UpdateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTenderResponseTest.php b/src/gen/test/Model/UpdateTenderResponseTest.php
index c701759339..7a1fba2135 100644
--- a/src/gen/test/Model/UpdateTenderResponseTest.php
+++ b/src/gen/test/Model/UpdateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTicketResponseTest.php b/src/gen/test/Model/UpdateTicketResponseTest.php
index 1267c5bedd..ff40abffb4 100644
--- a/src/gen/test/Model/UpdateTicketResponseTest.php
+++ b/src/gen/test/Model/UpdateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
index 4475ef5181..18414cabee 100644
--- a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUploadSessionResponseTest.php b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
index e4e8eea55d..37ba2760bb 100644
--- a/src/gen/test/Model/UpdateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUserResponseTest.php b/src/gen/test/Model/UpdateUserResponseTest.php
index 514f95782c..ba75ed808b 100644
--- a/src/gen/test/Model/UpdateUserResponseTest.php
+++ b/src/gen/test/Model/UpdateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookRequestTest.php b/src/gen/test/Model/UpdateWebhookRequestTest.php
index 699fb9830a..8ae0dcef8a 100644
--- a/src/gen/test/Model/UpdateWebhookRequestTest.php
+++ b/src/gen/test/Model/UpdateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookResponseTest.php b/src/gen/test/Model/UpdateWebhookResponseTest.php
index 8a013ae794..b975ff5e4d 100644
--- a/src/gen/test/Model/UpdateWebhookResponseTest.php
+++ b/src/gen/test/Model/UpdateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UploadSessionTest.php b/src/gen/test/Model/UploadSessionTest.php
index 0807f5efbb..6a9a731c78 100644
--- a/src/gen/test/Model/UploadSessionTest.php
+++ b/src/gen/test/Model/UploadSessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UserTest.php b/src/gen/test/Model/UserTest.php
index e96138a8b8..0d53b6906c 100644
--- a/src/gen/test/Model/UserTest.php
+++ b/src/gen/test/Model/UserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VaultEventTypeTest.php b/src/gen/test/Model/VaultEventTypeTest.php
index 6b70be64e1..11a1cf16c3 100644
--- a/src/gen/test/Model/VaultEventTypeTest.php
+++ b/src/gen/test/Model/VaultEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VirtualWebhooksTest.php b/src/gen/test/Model/VirtualWebhooksTest.php
index c00e814607..5cdeeba2ce 100644
--- a/src/gen/test/Model/VirtualWebhooksTest.php
+++ b/src/gen/test/Model/VirtualWebhooksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WalletDetailsTest.php b/src/gen/test/Model/WalletDetailsTest.php
index df80170846..bba34ed7f5 100644
--- a/src/gen/test/Model/WalletDetailsTest.php
+++ b/src/gen/test/Model/WalletDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogAttemptsTest.php b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
index 2416a1faea..00935a0617 100644
--- a/src/gen/test/Model/WebhookEventLogAttemptsTest.php
+++ b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogServiceTest.php b/src/gen/test/Model/WebhookEventLogServiceTest.php
index 8722997229..12281a0ff3 100644
--- a/src/gen/test/Model/WebhookEventLogServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogTest.php b/src/gen/test/Model/WebhookEventLogTest.php
index 9ae26feb81..1d84d046b5 100644
--- a/src/gen/test/Model/WebhookEventLogTest.php
+++ b/src/gen/test/Model/WebhookEventLogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
index 3d4f2a5ed6..13da874f5f 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterTest.php b/src/gen/test/Model/WebhookEventLogsFilterTest.php
index 4eefa0d17e..5d99a67427 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTest.php b/src/gen/test/Model/WebhookEventTest.php
index 159d944ee5..dfbe2c2118 100644
--- a/src/gen/test/Model/WebhookEventTest.php
+++ b/src/gen/test/Model/WebhookEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTypeTest.php b/src/gen/test/Model/WebhookEventTypeTest.php
index cce67f6594..ac24c4a62c 100644
--- a/src/gen/test/Model/WebhookEventTypeTest.php
+++ b/src/gen/test/Model/WebhookEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSubscriptionTest.php b/src/gen/test/Model/WebhookSubscriptionTest.php
index dd8a62daf4..515c072909 100644
--- a/src/gen/test/Model/WebhookSubscriptionTest.php
+++ b/src/gen/test/Model/WebhookSubscriptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSupportTest.php b/src/gen/test/Model/WebhookSupportTest.php
index eb6dee2295..bbeb2516b6 100644
--- a/src/gen/test/Model/WebhookSupportTest.php
+++ b/src/gen/test/Model/WebhookSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookTest.php b/src/gen/test/Model/WebhookTest.php
index b5973db8df..adf4c475e3 100644
--- a/src/gen/test/Model/WebhookTest.php
+++ b/src/gen/test/Model/WebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebsiteTest.php b/src/gen/test/Model/WebsiteTest.php
index 19e3c451bc..592e245a85 100644
--- a/src/gen/test/Model/WebsiteTest.php
+++ b/src/gen/test/Model/WebsiteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.0
+ * The version of the OpenAPI document: 10.2.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
From 4c052fc864c375bc1e0046db251153f980e50e24 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 22 Jan 2024 10:35:22 +0000
Subject: [PATCH 5/9] Automated update by SDK Generator version:3.2.0
commit:11a3f7b
---
src/gen/.openapi-generator/FILES | 9 +
src/gen/docs/apis/AccountingApi.md | 202 ++
.../docs/models/CreateSubsidiaryResponse.md | 31 +
.../docs/models/DeleteSubsidiaryResponse.md | 31 +
.../docs/models/UpdateSubsidiaryResponse.md | 31 +
src/gen/lib/Api/AccountingApi.php | 1821 +++++++++++++++--
src/gen/lib/Api/AtsApi.php | 2 +-
src/gen/lib/Api/ConnectorApi.php | 2 +-
src/gen/lib/Api/CrmApi.php | 2 +-
src/gen/lib/Api/EcommerceApi.php | 2 +-
src/gen/lib/Api/FileStorageApi.php | 2 +-
src/gen/lib/Api/HrisApi.php | 2 +-
src/gen/lib/Api/IssueTrackingApi.php | 2 +-
src/gen/lib/Api/LeadApi.php | 2 +-
src/gen/lib/Api/PosApi.php | 2 +-
src/gen/lib/Api/SmsApi.php | 2 +-
src/gen/lib/Api/VaultApi.php | 2 +-
src/gen/lib/Api/WebhookApi.php | 2 +-
src/gen/lib/ApiException.php | 2 +-
src/gen/lib/Configuration.php | 4 +-
src/gen/lib/HeaderSelector.php | 2 +-
src/gen/lib/Model/AccountingEventType.php | 2 +-
src/gen/lib/Model/ActivitiesFilter.php | 2 +-
src/gen/lib/Model/ActivitiesSort.php | 2 +-
src/gen/lib/Model/Activity.php | 2 +-
src/gen/lib/Model/ActivityAttendee.php | 2 +-
src/gen/lib/Model/Address.php | 2 +-
src/gen/lib/Model/Api.php | 2 +-
src/gen/lib/Model/ApiResource.php | 2 +-
src/gen/lib/Model/ApiResourceCoverage.php | 2 +-
.../lib/Model/ApiResourceCoverageCoverage.php | 2 +-
.../lib/Model/ApiResourceLinkedResources.php | 2 +-
src/gen/lib/Model/ApiResources.php | 2 +-
src/gen/lib/Model/ApiStatus.php | 2 +-
src/gen/lib/Model/ApisFilter.php | 2 +-
src/gen/lib/Model/Applicant.php | 2 +-
src/gen/lib/Model/ApplicantSocialLinks.php | 2 +-
src/gen/lib/Model/ApplicantWebsites.php | 2 +-
src/gen/lib/Model/ApplicantsFilter.php | 2 +-
src/gen/lib/Model/Application.php | 2 +-
src/gen/lib/Model/ApplicationStage.php | 2 +-
src/gen/lib/Model/Assignee.php | 2 +-
src/gen/lib/Model/AtsActivity.php | 2 +-
src/gen/lib/Model/AtsEventType.php | 2 +-
src/gen/lib/Model/AuthType.php | 2 +-
src/gen/lib/Model/BadRequestResponse.php | 2 +-
src/gen/lib/Model/BalanceSheet.php | 2 +-
src/gen/lib/Model/BalanceSheetAssets.php | 2 +-
.../Model/BalanceSheetAssetsCurrentAssets.php | 2 +-
...alanceSheetAssetsCurrentAssetsAccounts.php | 2 +-
.../Model/BalanceSheetAssetsFixedAssets.php | 2 +-
.../BalanceSheetAssetsFixedAssetsAccounts.php | 2 +-
src/gen/lib/Model/BalanceSheetEquity.php | 2 +-
src/gen/lib/Model/BalanceSheetEquityItems.php | 2 +-
src/gen/lib/Model/BalanceSheetFilter.php | 2 +-
src/gen/lib/Model/BalanceSheetLiabilities.php | 2 +-
.../Model/BalanceSheetLiabilitiesAccounts.php | 2 +-
src/gen/lib/Model/BankAccount.php | 2 +-
src/gen/lib/Model/Benefit.php | 2 +-
src/gen/lib/Model/Bill.php | 2 +-
src/gen/lib/Model/BillLineItem.php | 2 +-
src/gen/lib/Model/BillsFilter.php | 2 +-
src/gen/lib/Model/BillsSort.php | 2 +-
src/gen/lib/Model/Branch.php | 2 +-
src/gen/lib/Model/CashDetails.php | 2 +-
src/gen/lib/Model/Collection.php | 2 +-
src/gen/lib/Model/CollectionTag.php | 2 +-
src/gen/lib/Model/CollectionTicketComment.php | 2 +-
src/gen/lib/Model/CollectionUser.php | 2 +-
src/gen/lib/Model/CollectionsSort.php | 2 +-
src/gen/lib/Model/CommentsSort.php | 2 +-
src/gen/lib/Model/CompaniesFilter.php | 2 +-
src/gen/lib/Model/CompaniesSort.php | 2 +-
src/gen/lib/Model/Company.php | 2 +-
src/gen/lib/Model/CompanyInfo.php | 2 +-
src/gen/lib/Model/CompanyRowType.php | 2 +-
src/gen/lib/Model/Compensation.php | 2 +-
src/gen/lib/Model/Connection.php | 2 +-
src/gen/lib/Model/ConnectionConfiguration.php | 2 +-
src/gen/lib/Model/ConnectionDefaults.php | 2 +-
src/gen/lib/Model/ConnectionImportData.php | 2 +-
.../Model/ConnectionImportDataCredentials.php | 2 +-
src/gen/lib/Model/ConnectionMetadata.php | 2 +-
src/gen/lib/Model/ConnectionState.php | 2 +-
src/gen/lib/Model/ConnectionWebhook.php | 2 +-
src/gen/lib/Model/Connector.php | 2 +-
src/gen/lib/Model/ConnectorDoc.php | 2 +-
src/gen/lib/Model/ConnectorEvent.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes1.php | 2 +-
src/gen/lib/Model/ConnectorResource.php | 2 +-
src/gen/lib/Model/ConnectorSetting.php | 2 +-
src/gen/lib/Model/ConnectorStatus.php | 2 +-
src/gen/lib/Model/ConnectorTlsSupport.php | 2 +-
src/gen/lib/Model/ConnectorUnifiedApis.php | 2 +-
src/gen/lib/Model/ConnectorsFilter.php | 2 +-
src/gen/lib/Model/Consumer.php | 2 +-
src/gen/lib/Model/ConsumerConnection.php | 2 +-
src/gen/lib/Model/ConsumerMetadata.php | 2 +-
...nsumerRequestCountsInDateRangeResponse.php | 2 +-
...erRequestCountsInDateRangeResponseData.php | 2 +-
src/gen/lib/Model/Contact.php | 2 +-
src/gen/lib/Model/ContactsFilter.php | 2 +-
src/gen/lib/Model/ContactsSort.php | 2 +-
src/gen/lib/Model/CopyFolderRequest.php | 2 +-
src/gen/lib/Model/CreateActivityResponse.php | 2 +-
src/gen/lib/Model/CreateApplicantResponse.php | 2 +-
.../lib/Model/CreateApplicationResponse.php | 2 +-
src/gen/lib/Model/CreateBillResponse.php | 2 +-
src/gen/lib/Model/CreateCommentResponse.php | 2 +-
src/gen/lib/Model/CreateCompanyResponse.php | 2 +-
.../lib/Model/CreateConnectionResponse.php | 2 +-
src/gen/lib/Model/CreateConsumerResponse.php | 2 +-
src/gen/lib/Model/CreateContactResponse.php | 2 +-
.../lib/Model/CreateCreditNoteResponse.php | 2 +-
.../lib/Model/CreateCustomMappingRequest.php | 2 +-
.../lib/Model/CreateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/CreateCustomerResponse.php | 2 +-
.../lib/Model/CreateDepartmentResponse.php | 2 +-
.../lib/Model/CreateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/CreateDriveResponse.php | 2 +-
.../Model/CreateEcommerceCustomerResponse.php | 2 +-
.../Model/CreateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/CreateEmployeeResponse.php | 2 +-
src/gen/lib/Model/CreateFileRequest.php | 2 +-
src/gen/lib/Model/CreateFileResponse.php | 2 +-
src/gen/lib/Model/CreateFolderRequest.php | 2 +-
src/gen/lib/Model/CreateFolderResponse.php | 2 +-
.../lib/Model/CreateHrisCompanyResponse.php | 2 +-
.../lib/Model/CreateInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/CreateInvoiceResponse.php | 2 +-
src/gen/lib/Model/CreateItemResponse.php | 2 +-
src/gen/lib/Model/CreateJobResponse.php | 2 +-
.../lib/Model/CreateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/CreateLeadResponse.php | 2 +-
.../lib/Model/CreateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/CreateLocationResponse.php | 2 +-
src/gen/lib/Model/CreateMerchantResponse.php | 2 +-
src/gen/lib/Model/CreateMessageResponse.php | 2 +-
.../lib/Model/CreateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/CreateModifierResponse.php | 2 +-
src/gen/lib/Model/CreateNoteResponse.php | 2 +-
.../lib/Model/CreateOpportunityResponse.php | 2 +-
src/gen/lib/Model/CreateOrderResponse.php | 2 +-
src/gen/lib/Model/CreateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/CreatePaymentResponse.php | 2 +-
src/gen/lib/Model/CreatePipelineResponse.php | 2 +-
.../lib/Model/CreatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/CreateProductResponse.php | 2 +-
.../lib/Model/CreatePurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/CreateSessionResponse.php | 2 +-
.../lib/Model/CreateSessionResponseData.php | 2 +-
.../lib/Model/CreateSharedLinkResponse.php | 2 +-
.../lib/Model/CreateSubsidiaryResponse.php | 488 +++++
src/gen/lib/Model/CreateSupplierResponse.php | 2 +-
src/gen/lib/Model/CreateTaxRateResponse.php | 2 +-
src/gen/lib/Model/CreateTenderResponse.php | 2 +-
src/gen/lib/Model/CreateTicketResponse.php | 2 +-
.../Model/CreateTimeOffRequestResponse.php | 2 +-
.../lib/Model/CreateUploadSessionRequest.php | 2 +-
.../lib/Model/CreateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/CreateUserResponse.php | 2 +-
src/gen/lib/Model/CreateWebhookRequest.php | 2 +-
src/gen/lib/Model/CreateWebhookResponse.php | 2 +-
src/gen/lib/Model/CreditNote.php | 2 +-
src/gen/lib/Model/CreditNotesFilter.php | 2 +-
src/gen/lib/Model/CreditNotesSort.php | 2 +-
src/gen/lib/Model/CrmEventType.php | 2 +-
src/gen/lib/Model/Currency.php | 2 +-
src/gen/lib/Model/CustomField.php | 2 +-
src/gen/lib/Model/CustomFieldFinder.php | 2 +-
src/gen/lib/Model/CustomMapping.php | 2 +-
src/gen/lib/Model/Customer.php | 2 +-
src/gen/lib/Model/CustomersFilter.php | 2 +-
src/gen/lib/Model/CustomersSort.php | 2 +-
src/gen/lib/Model/Deduction.php | 2 +-
src/gen/lib/Model/DeleteActivityResponse.php | 2 +-
src/gen/lib/Model/DeleteApplicantResponse.php | 2 +-
.../lib/Model/DeleteApplicationResponse.php | 2 +-
src/gen/lib/Model/DeleteBillResponse.php | 2 +-
src/gen/lib/Model/DeleteCommentResponse.php | 2 +-
src/gen/lib/Model/DeleteCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteConsumerResponse.php | 2 +-
src/gen/lib/Model/DeleteContactResponse.php | 2 +-
.../lib/Model/DeleteCreditNoteResponse.php | 2 +-
src/gen/lib/Model/DeleteCustomerResponse.php | 2 +-
.../lib/Model/DeleteDepartmentResponse.php | 2 +-
.../lib/Model/DeleteDriveGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteDriveResponse.php | 2 +-
.../Model/DeleteEcommerceCustomerResponse.php | 2 +-
.../Model/DeleteEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteEmployeeResponse.php | 2 +-
src/gen/lib/Model/DeleteFileResponse.php | 2 +-
src/gen/lib/Model/DeleteFolderResponse.php | 2 +-
.../lib/Model/DeleteHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteInvoiceResponse.php | 2 +-
src/gen/lib/Model/DeleteItemResponse.php | 2 +-
src/gen/lib/Model/DeleteJobResponse.php | 2 +-
.../lib/Model/DeleteJournalEntryResponse.php | 2 +-
src/gen/lib/Model/DeleteLeadResponse.php | 2 +-
.../lib/Model/DeleteLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/DeleteLocationResponse.php | 2 +-
src/gen/lib/Model/DeleteMerchantResponse.php | 2 +-
src/gen/lib/Model/DeleteMessageResponse.php | 2 +-
.../lib/Model/DeleteModifierGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteModifierResponse.php | 2 +-
src/gen/lib/Model/DeleteNoteResponse.php | 2 +-
.../lib/Model/DeleteOpportunityResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderTypeResponse.php | 2 +-
src/gen/lib/Model/DeletePaymentResponse.php | 2 +-
src/gen/lib/Model/DeletePipelineResponse.php | 2 +-
.../lib/Model/DeletePosPaymentResponse.php | 2 +-
src/gen/lib/Model/DeleteProductResponse.php | 2 +-
.../lib/Model/DeletePurchaseOrderResponse.php | 2 +-
.../lib/Model/DeleteSharedLinkResponse.php | 2 +-
.../lib/Model/DeleteSubsidiaryResponse.php | 488 +++++
src/gen/lib/Model/DeleteSupplierResponse.php | 2 +-
src/gen/lib/Model/DeleteTaxRateResponse.php | 2 +-
src/gen/lib/Model/DeleteTenderResponse.php | 2 +-
src/gen/lib/Model/DeleteTicketResponse.php | 2 +-
.../Model/DeleteTimeOffRequestResponse.php | 2 +-
.../lib/Model/DeleteUploadSessionResponse.php | 2 +-
src/gen/lib/Model/DeleteUserResponse.php | 2 +-
src/gen/lib/Model/DeleteWebhookResponse.php | 2 +-
src/gen/lib/Model/Department.php | 2 +-
src/gen/lib/Model/Drive.php | 2 +-
src/gen/lib/Model/DriveGroup.php | 2 +-
src/gen/lib/Model/DriveGroupsFilter.php | 2 +-
src/gen/lib/Model/DrivesFilter.php | 2 +-
src/gen/lib/Model/EcommerceAddress.php | 2 +-
src/gen/lib/Model/EcommerceCustomer.php | 2 +-
.../lib/Model/EcommerceCustomerAddresses.php | 2 +-
.../lib/Model/EcommerceCustomersFilter.php | 2 +-
src/gen/lib/Model/EcommerceDiscount.php | 2 +-
src/gen/lib/Model/EcommerceOrder.php | 2 +-
src/gen/lib/Model/EcommerceOrderLineItem.php | 2 +-
src/gen/lib/Model/EcommerceOrderStatus.php | 2 +-
src/gen/lib/Model/EcommerceOrdersFilter.php | 2 +-
src/gen/lib/Model/EcommerceProduct.php | 2 +-
.../lib/Model/EcommerceProductCategories.php | 2 +-
src/gen/lib/Model/EcommerceProductImages.php | 2 +-
src/gen/lib/Model/EcommerceProductImages1.php | 2 +-
src/gen/lib/Model/EcommerceProductOptions.php | 2 +-
.../lib/Model/EcommerceProductOptions1.php | 2 +-
.../lib/Model/EcommerceProductVariants.php | 2 +-
src/gen/lib/Model/EcommerceStore.php | 2 +-
src/gen/lib/Model/Email.php | 2 +-
src/gen/lib/Model/Employee.php | 2 +-
src/gen/lib/Model/EmployeeCompensation.php | 2 +-
src/gen/lib/Model/EmployeeEmploymentRole.php | 2 +-
src/gen/lib/Model/EmployeeJob.php | 2 +-
src/gen/lib/Model/EmployeeList.php | 2 +-
src/gen/lib/Model/EmployeeManager.php | 2 +-
src/gen/lib/Model/EmployeePayroll.php | 2 +-
src/gen/lib/Model/EmployeeSchedules.php | 2 +-
src/gen/lib/Model/EmployeesFilter.php | 2 +-
src/gen/lib/Model/EmployeesSort.php | 2 +-
src/gen/lib/Model/EmploymentStatus.php | 2 +-
src/gen/lib/Model/Error.php | 2 +-
src/gen/lib/Model/ExecuteWebhookResponse.php | 2 +-
src/gen/lib/Model/FileStorageEventType.php | 2 +-
src/gen/lib/Model/FileType.php | 2 +-
src/gen/lib/Model/FilesFilter.php | 2 +-
src/gen/lib/Model/FilesSearch.php | 2 +-
src/gen/lib/Model/FilesSort.php | 2 +-
src/gen/lib/Model/Folder.php | 2 +-
src/gen/lib/Model/FormField.php | 2 +-
src/gen/lib/Model/FormFieldOption.php | 2 +-
src/gen/lib/Model/FormFieldOptionGroup.php | 2 +-
src/gen/lib/Model/Gender.php | 2 +-
src/gen/lib/Model/GetActivitiesResponse.php | 2 +-
src/gen/lib/Model/GetActivityResponse.php | 2 +-
.../Model/GetApiResourceCoverageResponse.php | 2 +-
src/gen/lib/Model/GetApiResourceResponse.php | 2 +-
src/gen/lib/Model/GetApiResponse.php | 2 +-
src/gen/lib/Model/GetApisResponse.php | 2 +-
src/gen/lib/Model/GetApplicantResponse.php | 2 +-
src/gen/lib/Model/GetApplicantsResponse.php | 2 +-
src/gen/lib/Model/GetApplicationResponse.php | 2 +-
src/gen/lib/Model/GetApplicationsResponse.php | 2 +-
src/gen/lib/Model/GetBalanceSheetResponse.php | 2 +-
src/gen/lib/Model/GetBillResponse.php | 2 +-
src/gen/lib/Model/GetBillsResponse.php | 2 +-
src/gen/lib/Model/GetCollectionResponse.php | 2 +-
.../lib/Model/GetCollectionTagsResponse.php | 2 +-
.../lib/Model/GetCollectionUserResponse.php | 2 +-
.../lib/Model/GetCollectionUsersResponse.php | 2 +-
src/gen/lib/Model/GetCollectionsResponse.php | 2 +-
src/gen/lib/Model/GetCommentResponse.php | 2 +-
src/gen/lib/Model/GetCommentsResponse.php | 2 +-
src/gen/lib/Model/GetCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetCompanyInfoResponse.php | 2 +-
src/gen/lib/Model/GetCompanyResponse.php | 2 +-
src/gen/lib/Model/GetConnectionResponse.php | 2 +-
src/gen/lib/Model/GetConnectionsResponse.php | 2 +-
.../GetConnectorResourceExampleResponse.php | 2 +-
...etConnectorResourceExampleResponseData.php | 2 +-
.../Model/GetConnectorResourceResponse.php | 2 +-
.../GetConnectorResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetConnectorResponse.php | 2 +-
src/gen/lib/Model/GetConnectorsResponse.php | 2 +-
src/gen/lib/Model/GetConsumerResponse.php | 2 +-
src/gen/lib/Model/GetConsumersResponse.php | 2 +-
.../lib/Model/GetConsumersResponseData.php | 2 +-
src/gen/lib/Model/GetContactResponse.php | 2 +-
src/gen/lib/Model/GetContactsResponse.php | 2 +-
src/gen/lib/Model/GetCreditNoteResponse.php | 2 +-
src/gen/lib/Model/GetCreditNotesResponse.php | 2 +-
src/gen/lib/Model/GetCustomFieldsResponse.php | 2 +-
.../lib/Model/GetCustomMappingResponse.php | 2 +-
src/gen/lib/Model/GetCustomerResponse.php | 2 +-
src/gen/lib/Model/GetCustomersResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentsResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupsResponse.php | 2 +-
src/gen/lib/Model/GetDriveResponse.php | 2 +-
src/gen/lib/Model/GetDrivesResponse.php | 2 +-
.../Model/GetEcommerceCustomerResponse.php | 2 +-
.../Model/GetEcommerceCustomersResponse.php | 2 +-
.../lib/Model/GetEcommerceOrderResponse.php | 2 +-
.../lib/Model/GetEcommerceOrdersResponse.php | 2 +-
.../lib/Model/GetEmployeePayrollResponse.php | 2 +-
.../lib/Model/GetEmployeePayrollsResponse.php | 2 +-
src/gen/lib/Model/GetEmployeeResponse.php | 2 +-
.../Model/GetEmployeeSchedulesResponse.php | 2 +-
src/gen/lib/Model/GetEmployeesResponse.php | 2 +-
src/gen/lib/Model/GetFileResponse.php | 2 +-
src/gen/lib/Model/GetFilesResponse.php | 2 +-
src/gen/lib/Model/GetFolderResponse.php | 2 +-
src/gen/lib/Model/GetFoldersResponse.php | 2 +-
.../lib/Model/GetHrisCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceResponse.php | 2 +-
src/gen/lib/Model/GetInvoicesResponse.php | 2 +-
src/gen/lib/Model/GetItemResponse.php | 2 +-
src/gen/lib/Model/GetItemsResponse.php | 2 +-
src/gen/lib/Model/GetJobResponse.php | 2 +-
src/gen/lib/Model/GetJobsResponse.php | 2 +-
.../lib/Model/GetJournalEntriesResponse.php | 2 +-
src/gen/lib/Model/GetJournalEntryResponse.php | 2 +-
src/gen/lib/Model/GetLeadResponse.php | 2 +-
src/gen/lib/Model/GetLeadsResponse.php | 2 +-
.../lib/Model/GetLedgerAccountResponse.php | 2 +-
.../lib/Model/GetLedgerAccountsResponse.php | 2 +-
src/gen/lib/Model/GetLocationResponse.php | 2 +-
src/gen/lib/Model/GetLocationsResponse.php | 2 +-
src/gen/lib/Model/GetLogsResponse.php | 2 +-
src/gen/lib/Model/GetMerchantResponse.php | 2 +-
src/gen/lib/Model/GetMerchantsResponse.php | 2 +-
src/gen/lib/Model/GetMessageResponse.php | 2 +-
src/gen/lib/Model/GetMessagesResponse.php | 2 +-
.../lib/Model/GetModifierGroupResponse.php | 2 +-
.../lib/Model/GetModifierGroupsResponse.php | 2 +-
src/gen/lib/Model/GetModifierResponse.php | 2 +-
src/gen/lib/Model/GetModifiersResponse.php | 2 +-
src/gen/lib/Model/GetNoteResponse.php | 2 +-
src/gen/lib/Model/GetNotesResponse.php | 2 +-
.../lib/Model/GetOpportunitiesResponse.php | 2 +-
src/gen/lib/Model/GetOpportunityResponse.php | 2 +-
src/gen/lib/Model/GetOrderResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypeResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypesResponse.php | 2 +-
src/gen/lib/Model/GetOrdersResponse.php | 2 +-
src/gen/lib/Model/GetPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetPayrollResponse.php | 2 +-
src/gen/lib/Model/GetPayrollsResponse.php | 2 +-
src/gen/lib/Model/GetPipelineResponse.php | 2 +-
src/gen/lib/Model/GetPipelinesResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetProductResponse.php | 2 +-
src/gen/lib/Model/GetProductsResponse.php | 2 +-
.../lib/Model/GetProfitAndLossResponse.php | 2 +-
.../lib/Model/GetPurchaseOrderResponse.php | 2 +-
.../lib/Model/GetPurchaseOrdersResponse.php | 2 +-
.../lib/Model/GetResourceExampleResponse.php | 2 +-
.../lib/Model/GetResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinkResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinksResponse.php | 2 +-
src/gen/lib/Model/GetStoreResponse.php | 2 +-
src/gen/lib/Model/GetStoresResponse.php | 2 +-
src/gen/lib/Model/GetSubsidiariesResponse.php | 2 +-
src/gen/lib/Model/GetSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/GetSupplierResponse.php | 2 +-
src/gen/lib/Model/GetSuppliersResponse.php | 2 +-
src/gen/lib/Model/GetTaxRateResponse.php | 2 +-
src/gen/lib/Model/GetTaxRatesResponse.php | 2 +-
src/gen/lib/Model/GetTenderResponse.php | 2 +-
src/gen/lib/Model/GetTendersResponse.php | 2 +-
src/gen/lib/Model/GetTicketResponse.php | 2 +-
src/gen/lib/Model/GetTicketsResponse.php | 2 +-
.../lib/Model/GetTimeOffRequestResponse.php | 2 +-
.../lib/Model/GetTimeOffRequestsResponse.php | 2 +-
.../lib/Model/GetUploadSessionResponse.php | 2 +-
src/gen/lib/Model/GetUserResponse.php | 2 +-
src/gen/lib/Model/GetUsersResponse.php | 2 +-
.../lib/Model/GetWebhookEventLogsResponse.php | 2 +-
src/gen/lib/Model/GetWebhookResponse.php | 2 +-
src/gen/lib/Model/GetWebhooksResponse.php | 2 +-
src/gen/lib/Model/HrisCompany.php | 2 +-
src/gen/lib/Model/HrisEventType.php | 2 +-
src/gen/lib/Model/HrisJob.php | 2 +-
src/gen/lib/Model/HrisJobLocation.php | 2 +-
src/gen/lib/Model/HrisJobs.php | 2 +-
src/gen/lib/Model/IntegrationState.php | 2 +-
src/gen/lib/Model/Invoice.php | 2 +-
src/gen/lib/Model/InvoiceItem.php | 2 +-
src/gen/lib/Model/InvoiceItemSalesDetails.php | 2 +-
src/gen/lib/Model/InvoiceItemsFilter.php | 2 +-
src/gen/lib/Model/InvoiceLineItem.php | 2 +-
src/gen/lib/Model/InvoiceResponse.php | 2 +-
src/gen/lib/Model/InvoicesFilter.php | 2 +-
src/gen/lib/Model/InvoicesSort.php | 2 +-
src/gen/lib/Model/IssueTrackingEventType.php | 2 +-
src/gen/lib/Model/IssuesFilter.php | 2 +-
src/gen/lib/Model/Item.php | 2 +-
src/gen/lib/Model/Job.php | 2 +-
src/gen/lib/Model/JobLinks.php | 2 +-
src/gen/lib/Model/JobSalary.php | 2 +-
src/gen/lib/Model/JobStatus.php | 2 +-
src/gen/lib/Model/JournalEntriesFilter.php | 2 +-
src/gen/lib/Model/JournalEntriesSort.php | 2 +-
src/gen/lib/Model/JournalEntry.php | 2 +-
src/gen/lib/Model/JournalEntryLineItem.php | 2 +-
src/gen/lib/Model/Lead.php | 2 +-
src/gen/lib/Model/LeadEventType.php | 2 +-
src/gen/lib/Model/LeadsFilter.php | 2 +-
src/gen/lib/Model/LeadsSort.php | 2 +-
src/gen/lib/Model/LedgerAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountCategories.php | 2 +-
.../lib/Model/LedgerAccountParentAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountsFilter.php | 2 +-
src/gen/lib/Model/LedgerAccountsSort.php | 2 +-
src/gen/lib/Model/LinkedConnectorResource.php | 2 +-
src/gen/lib/Model/LinkedCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceOrder.php | 2 +-
src/gen/lib/Model/LinkedFolder.php | 2 +-
src/gen/lib/Model/LinkedInvoiceItem.php | 2 +-
src/gen/lib/Model/LinkedLedgerAccount.php | 2 +-
src/gen/lib/Model/LinkedParentCustomer.php | 2 +-
src/gen/lib/Model/LinkedSupplier.php | 2 +-
src/gen/lib/Model/LinkedTaxRate.php | 2 +-
src/gen/lib/Model/LinkedTrackingCategory.php | 2 +-
src/gen/lib/Model/Links.php | 2 +-
src/gen/lib/Model/Location.php | 2 +-
src/gen/lib/Model/Log.php | 2 +-
src/gen/lib/Model/LogOperation.php | 2 +-
src/gen/lib/Model/LogService.php | 2 +-
src/gen/lib/Model/LogsFilter.php | 2 +-
src/gen/lib/Model/Merchant.php | 2 +-
src/gen/lib/Model/Message.php | 2 +-
src/gen/lib/Model/Meta.php | 2 +-
src/gen/lib/Model/MetaCursors.php | 2 +-
src/gen/lib/Model/ModelInterface.php | 2 +-
src/gen/lib/Model/Modifier.php | 2 +-
src/gen/lib/Model/ModifierGroup.php | 2 +-
src/gen/lib/Model/ModifierGroupFilter.php | 2 +-
src/gen/lib/Model/NotFoundResponse.php | 2 +-
src/gen/lib/Model/NotImplementedResponse.php | 2 +-
src/gen/lib/Model/Note.php | 2 +-
src/gen/lib/Model/OAuthGrantType.php | 2 +-
src/gen/lib/Model/Offer.php | 2 +-
src/gen/lib/Model/OpportunitiesFilter.php | 2 +-
src/gen/lib/Model/OpportunitiesSort.php | 2 +-
src/gen/lib/Model/Opportunity.php | 2 +-
src/gen/lib/Model/Order.php | 2 +-
src/gen/lib/Model/OrderCustomers.php | 2 +-
src/gen/lib/Model/OrderDiscounts.php | 2 +-
src/gen/lib/Model/OrderFulfillments.php | 2 +-
src/gen/lib/Model/OrderLineItems.php | 2 +-
src/gen/lib/Model/OrderPayments.php | 2 +-
src/gen/lib/Model/OrderPickupDetails.php | 2 +-
...rderPickupDetailsCurbsidePickupDetails.php | 2 +-
.../lib/Model/OrderPickupDetailsRecipient.php | 2 +-
src/gen/lib/Model/OrderRefunds.php | 2 +-
src/gen/lib/Model/OrderTenders.php | 2 +-
src/gen/lib/Model/OrderType.php | 2 +-
src/gen/lib/Model/Owner.php | 2 +-
src/gen/lib/Model/PaginationCoverage.php | 2 +-
src/gen/lib/Model/PassThroughQuery.php | 2 +-
src/gen/lib/Model/Payment.php | 2 +-
src/gen/lib/Model/PaymentAllocations.php | 2 +-
src/gen/lib/Model/PaymentCard.php | 2 +-
src/gen/lib/Model/PaymentFrequency.php | 2 +-
src/gen/lib/Model/PaymentRequiredResponse.php | 2 +-
src/gen/lib/Model/PaymentUnit.php | 2 +-
src/gen/lib/Model/PaymentsFilter.php | 2 +-
src/gen/lib/Model/PaymentsSort.php | 2 +-
src/gen/lib/Model/Payroll.php | 2 +-
src/gen/lib/Model/PayrollTotals.php | 2 +-
src/gen/lib/Model/PayrollsFilter.php | 2 +-
src/gen/lib/Model/Person.php | 2 +-
src/gen/lib/Model/PhoneNumber.php | 2 +-
src/gen/lib/Model/Pipeline.php | 2 +-
src/gen/lib/Model/PipelineStages.php | 2 +-
src/gen/lib/Model/PosBankAccount.php | 2 +-
.../lib/Model/PosBankAccountAchDetails.php | 2 +-
src/gen/lib/Model/PosPayment.php | 2 +-
src/gen/lib/Model/PosPaymentCardDetails.php | 2 +-
.../lib/Model/PosPaymentExternalDetails.php | 2 +-
src/gen/lib/Model/Price.php | 2 +-
src/gen/lib/Model/ProbationPeriod.php | 2 +-
src/gen/lib/Model/ProfitAndLoss.php | 2 +-
src/gen/lib/Model/ProfitAndLossExpenses.php | 2 +-
src/gen/lib/Model/ProfitAndLossFilter.php | 2 +-
.../lib/Model/ProfitAndLossGrossProfit.php | 2 +-
src/gen/lib/Model/ProfitAndLossIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossNetIncome.php | 2 +-
.../Model/ProfitAndLossNetOperatingIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossRecord.php | 2 +-
src/gen/lib/Model/ProfitAndLossSection.php | 2 +-
src/gen/lib/Model/PurchaseOrder.php | 2 +-
src/gen/lib/Model/PurchaseOrdersFilter.php | 2 +-
src/gen/lib/Model/PurchaseOrdersSort.php | 2 +-
src/gen/lib/Model/RequestCountAllocation.php | 2 +-
src/gen/lib/Model/RequestRate.php | 2 +-
src/gen/lib/Model/ResolveWebhookResponse.php | 2 +-
src/gen/lib/Model/ResourceExample.php | 2 +-
src/gen/lib/Model/ResourceStatus.php | 2 +-
src/gen/lib/Model/Schedule.php | 2 +-
src/gen/lib/Model/ScheduleWorkPattern.php | 2 +-
.../lib/Model/ScheduleWorkPatternOddWeeks.php | 2 +-
src/gen/lib/Model/SchemaSupport.php | 2 +-
src/gen/lib/Model/ServiceCharge.php | 2 +-
src/gen/lib/Model/Session.php | 2 +-
src/gen/lib/Model/SessionSettings.php | 2 +-
src/gen/lib/Model/SessionTheme.php | 2 +-
src/gen/lib/Model/SharedLink.php | 2 +-
src/gen/lib/Model/SharedLinkTarget.php | 2 +-
src/gen/lib/Model/SimpleFormFieldOption.php | 2 +-
src/gen/lib/Model/SocialLink.php | 2 +-
src/gen/lib/Model/SortDirection.php | 2 +-
src/gen/lib/Model/Status.php | 2 +-
src/gen/lib/Model/Subsidiary.php | 2 +-
src/gen/lib/Model/Supplier.php | 2 +-
src/gen/lib/Model/SuppliersFilter.php | 2 +-
src/gen/lib/Model/SuppliersSort.php | 2 +-
src/gen/lib/Model/SupportedProperty.php | 2 +-
src/gen/lib/Model/Tax.php | 2 +-
src/gen/lib/Model/TaxRate.php | 2 +-
src/gen/lib/Model/TaxRatesFilter.php | 2 +-
src/gen/lib/Model/Team.php | 2 +-
src/gen/lib/Model/Tender.php | 2 +-
src/gen/lib/Model/Ticket.php | 2 +-
src/gen/lib/Model/TicketsSort.php | 2 +-
src/gen/lib/Model/TimeOffRequest.php | 2 +-
src/gen/lib/Model/TimeOffRequestNotes.php | 2 +-
src/gen/lib/Model/TimeOffRequestsFilter.php | 2 +-
src/gen/lib/Model/TooManyRequestsResponse.php | 2 +-
.../Model/TooManyRequestsResponseDetail.php | 2 +-
src/gen/lib/Model/TrackingItem.php | 2 +-
src/gen/lib/Model/UnauthorizedResponse.php | 2 +-
src/gen/lib/Model/UnexpectedErrorResponse.php | 2 +-
src/gen/lib/Model/UnifiedApiId.php | 2 +-
src/gen/lib/Model/UnifiedFile.php | 2 +-
src/gen/lib/Model/UnifiedFilePermissions.php | 2 +-
src/gen/lib/Model/UnifiedId.php | 2 +-
src/gen/lib/Model/UnprocessableResponse.php | 2 +-
src/gen/lib/Model/UpdateActivityResponse.php | 2 +-
src/gen/lib/Model/UpdateApplicantResponse.php | 2 +-
.../lib/Model/UpdateApplicationResponse.php | 2 +-
src/gen/lib/Model/UpdateBillResponse.php | 2 +-
src/gen/lib/Model/UpdateCommentResponse.php | 2 +-
src/gen/lib/Model/UpdateCompanyResponse.php | 2 +-
.../lib/Model/UpdateConnectionResponse.php | 2 +-
src/gen/lib/Model/UpdateConsumerRequest.php | 2 +-
src/gen/lib/Model/UpdateConsumerResponse.php | 2 +-
src/gen/lib/Model/UpdateContactResponse.php | 2 +-
.../lib/Model/UpdateCreditNoteResponse.php | 2 +-
.../lib/Model/UpdateCustomMappingRequest.php | 2 +-
.../lib/Model/UpdateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/UpdateCustomerResponse.php | 2 +-
.../lib/Model/UpdateDepartmentResponse.php | 2 +-
.../lib/Model/UpdateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateDriveResponse.php | 2 +-
.../Model/UpdateEcommerceCustomerResponse.php | 2 +-
.../Model/UpdateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateEmployeeResponse.php | 2 +-
src/gen/lib/Model/UpdateFileRequest.php | 2 +-
src/gen/lib/Model/UpdateFileResponse.php | 2 +-
src/gen/lib/Model/UpdateFolderRequest.php | 2 +-
src/gen/lib/Model/UpdateFolderResponse.php | 2 +-
.../lib/Model/UpdateHrisCompanyResponse.php | 2 +-
.../lib/Model/UpdateInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/UpdateInvoiceResponse.php | 2 +-
src/gen/lib/Model/UpdateItemResponse.php | 2 +-
src/gen/lib/Model/UpdateJobResponse.php | 2 +-
.../lib/Model/UpdateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/UpdateLeadResponse.php | 2 +-
.../lib/Model/UpdateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/UpdateLocationResponse.php | 2 +-
src/gen/lib/Model/UpdateMerchantResponse.php | 2 +-
src/gen/lib/Model/UpdateMessageResponse.php | 2 +-
.../lib/Model/UpdateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateModifierResponse.php | 2 +-
src/gen/lib/Model/UpdateNoteResponse.php | 2 +-
.../lib/Model/UpdateOpportunityResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/UpdatePaymentResponse.php | 2 +-
src/gen/lib/Model/UpdatePipelineResponse.php | 2 +-
.../lib/Model/UpdatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/UpdateProductResponse.php | 2 +-
.../lib/Model/UpdatePurchaseOrderResponse.php | 2 +-
.../lib/Model/UpdateSharedLinkResponse.php | 2 +-
.../lib/Model/UpdateSubsidiaryResponse.php | 488 +++++
src/gen/lib/Model/UpdateSupplierResponse.php | 2 +-
src/gen/lib/Model/UpdateTaxRateResponse.php | 2 +-
src/gen/lib/Model/UpdateTenderResponse.php | 2 +-
src/gen/lib/Model/UpdateTicketResponse.php | 2 +-
.../Model/UpdateTimeOffRequestResponse.php | 2 +-
.../lib/Model/UpdateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/UpdateUserResponse.php | 2 +-
src/gen/lib/Model/UpdateWebhookRequest.php | 2 +-
src/gen/lib/Model/UpdateWebhookResponse.php | 2 +-
src/gen/lib/Model/UploadSession.php | 2 +-
src/gen/lib/Model/User.php | 2 +-
src/gen/lib/Model/VaultEventType.php | 2 +-
src/gen/lib/Model/VirtualWebhooks.php | 2 +-
src/gen/lib/Model/WalletDetails.php | 2 +-
src/gen/lib/Model/Webhook.php | 2 +-
src/gen/lib/Model/WebhookEvent.php | 2 +-
src/gen/lib/Model/WebhookEventLog.php | 2 +-
src/gen/lib/Model/WebhookEventLogAttempts.php | 2 +-
src/gen/lib/Model/WebhookEventLogService.php | 2 +-
src/gen/lib/Model/WebhookEventLogsFilter.php | 2 +-
.../Model/WebhookEventLogsFilterService.php | 2 +-
src/gen/lib/Model/WebhookEventType.php | 2 +-
src/gen/lib/Model/WebhookSubscription.php | 2 +-
src/gen/lib/Model/WebhookSupport.php | 2 +-
src/gen/lib/Model/Website.php | 2 +-
src/gen/lib/ObjectSerializer.php | 2 +-
src/gen/test/Api/AccountingApiTest.php | 38 +-
src/gen/test/Api/AtsApiTest.php | 2 +-
src/gen/test/Api/ConnectorApiTest.php | 2 +-
src/gen/test/Api/CrmApiTest.php | 2 +-
src/gen/test/Api/EcommerceApiTest.php | 2 +-
src/gen/test/Api/FileStorageApiTest.php | 2 +-
src/gen/test/Api/HrisApiTest.php | 2 +-
src/gen/test/Api/IssueTrackingApiTest.php | 2 +-
src/gen/test/Api/LeadApiTest.php | 2 +-
src/gen/test/Api/PosApiTest.php | 2 +-
src/gen/test/Api/SmsApiTest.php | 2 +-
src/gen/test/Api/VaultApiTest.php | 2 +-
src/gen/test/Api/WebhookApiTest.php | 2 +-
.../test/Model/AccountingEventTypeTest.php | 2 +-
src/gen/test/Model/ActivitiesFilterTest.php | 2 +-
src/gen/test/Model/ActivitiesSortTest.php | 2 +-
src/gen/test/Model/ActivityAttendeeTest.php | 2 +-
src/gen/test/Model/ActivityTest.php | 2 +-
src/gen/test/Model/AddressTest.php | 2 +-
.../Model/ApiResourceCoverageCoverageTest.php | 2 +-
.../test/Model/ApiResourceCoverageTest.php | 2 +-
.../Model/ApiResourceLinkedResourcesTest.php | 2 +-
src/gen/test/Model/ApiResourceTest.php | 2 +-
src/gen/test/Model/ApiResourcesTest.php | 2 +-
src/gen/test/Model/ApiStatusTest.php | 2 +-
src/gen/test/Model/ApiTest.php | 2 +-
src/gen/test/Model/ApisFilterTest.php | 2 +-
.../test/Model/ApplicantSocialLinksTest.php | 2 +-
src/gen/test/Model/ApplicantTest.php | 2 +-
src/gen/test/Model/ApplicantWebsitesTest.php | 2 +-
src/gen/test/Model/ApplicantsFilterTest.php | 2 +-
src/gen/test/Model/ApplicationStageTest.php | 2 +-
src/gen/test/Model/ApplicationTest.php | 2 +-
src/gen/test/Model/AssigneeTest.php | 2 +-
src/gen/test/Model/AtsActivityTest.php | 2 +-
src/gen/test/Model/AtsEventTypeTest.php | 2 +-
src/gen/test/Model/AuthTypeTest.php | 2 +-
src/gen/test/Model/BadRequestResponseTest.php | 2 +-
...ceSheetAssetsCurrentAssetsAccountsTest.php | 2 +-
.../BalanceSheetAssetsCurrentAssetsTest.php | 2 +-
...anceSheetAssetsFixedAssetsAccountsTest.php | 2 +-
.../BalanceSheetAssetsFixedAssetsTest.php | 2 +-
src/gen/test/Model/BalanceSheetAssetsTest.php | 2 +-
.../Model/BalanceSheetEquityItemsTest.php | 2 +-
src/gen/test/Model/BalanceSheetEquityTest.php | 2 +-
src/gen/test/Model/BalanceSheetFilterTest.php | 2 +-
.../BalanceSheetLiabilitiesAccountsTest.php | 2 +-
.../Model/BalanceSheetLiabilitiesTest.php | 2 +-
src/gen/test/Model/BalanceSheetTest.php | 2 +-
src/gen/test/Model/BankAccountTest.php | 2 +-
src/gen/test/Model/BenefitTest.php | 2 +-
src/gen/test/Model/BillLineItemTest.php | 2 +-
src/gen/test/Model/BillTest.php | 2 +-
src/gen/test/Model/BillsFilterTest.php | 2 +-
src/gen/test/Model/BillsSortTest.php | 2 +-
src/gen/test/Model/BranchTest.php | 2 +-
src/gen/test/Model/CashDetailsTest.php | 2 +-
src/gen/test/Model/CollectionTagTest.php | 2 +-
src/gen/test/Model/CollectionTest.php | 2 +-
.../Model/CollectionTicketCommentTest.php | 2 +-
src/gen/test/Model/CollectionUserTest.php | 2 +-
src/gen/test/Model/CollectionsSortTest.php | 2 +-
src/gen/test/Model/CommentsSortTest.php | 2 +-
src/gen/test/Model/CompaniesFilterTest.php | 2 +-
src/gen/test/Model/CompaniesSortTest.php | 2 +-
src/gen/test/Model/CompanyInfoTest.php | 2 +-
src/gen/test/Model/CompanyRowTypeTest.php | 2 +-
src/gen/test/Model/CompanyTest.php | 2 +-
src/gen/test/Model/CompensationTest.php | 2 +-
.../Model/ConnectionConfigurationTest.php | 2 +-
src/gen/test/Model/ConnectionDefaultsTest.php | 2 +-
.../ConnectionImportDataCredentialsTest.php | 2 +-
.../test/Model/ConnectionImportDataTest.php | 2 +-
src/gen/test/Model/ConnectionMetadataTest.php | 2 +-
src/gen/test/Model/ConnectionStateTest.php | 2 +-
src/gen/test/Model/ConnectionTest.php | 2 +-
src/gen/test/Model/ConnectionWebhookTest.php | 2 +-
src/gen/test/Model/ConnectorDocTest.php | 2 +-
src/gen/test/Model/ConnectorEventTest.php | 2 +-
.../test/Model/ConnectorOauthScopes1Test.php | 2 +-
.../test/Model/ConnectorOauthScopesTest.php | 2 +-
src/gen/test/Model/ConnectorResourceTest.php | 2 +-
src/gen/test/Model/ConnectorSettingTest.php | 2 +-
src/gen/test/Model/ConnectorStatusTest.php | 2 +-
src/gen/test/Model/ConnectorTest.php | 2 +-
.../test/Model/ConnectorTlsSupportTest.php | 2 +-
.../test/Model/ConnectorUnifiedApisTest.php | 2 +-
src/gen/test/Model/ConnectorsFilterTest.php | 2 +-
src/gen/test/Model/ConsumerConnectionTest.php | 2 +-
src/gen/test/Model/ConsumerMetadataTest.php | 2 +-
...questCountsInDateRangeResponseDataTest.php | 2 +-
...erRequestCountsInDateRangeResponseTest.php | 2 +-
src/gen/test/Model/ConsumerTest.php | 2 +-
src/gen/test/Model/ContactTest.php | 2 +-
src/gen/test/Model/ContactsFilterTest.php | 2 +-
src/gen/test/Model/ContactsSortTest.php | 2 +-
src/gen/test/Model/CopyFolderRequestTest.php | 2 +-
.../test/Model/CreateActivityResponseTest.php | 2 +-
.../Model/CreateApplicantResponseTest.php | 2 +-
.../Model/CreateApplicationResponseTest.php | 2 +-
src/gen/test/Model/CreateBillResponseTest.php | 2 +-
.../test/Model/CreateCommentResponseTest.php | 2 +-
.../test/Model/CreateCompanyResponseTest.php | 2 +-
.../Model/CreateConnectionResponseTest.php | 2 +-
.../test/Model/CreateConsumerResponseTest.php | 2 +-
.../test/Model/CreateContactResponseTest.php | 2 +-
.../Model/CreateCreditNoteResponseTest.php | 2 +-
.../Model/CreateCustomMappingRequestTest.php | 2 +-
.../Model/CreateCustomMappingResponseTest.php | 2 +-
.../test/Model/CreateCustomerResponseTest.php | 2 +-
.../Model/CreateDepartmentResponseTest.php | 2 +-
.../Model/CreateDriveGroupResponseTest.php | 2 +-
.../test/Model/CreateDriveResponseTest.php | 2 +-
.../CreateEcommerceCustomerResponseTest.php | 2 +-
.../CreateEcommerceOrderResponseTest.php | 2 +-
.../test/Model/CreateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/CreateFileRequestTest.php | 2 +-
src/gen/test/Model/CreateFileResponseTest.php | 2 +-
.../test/Model/CreateFolderRequestTest.php | 2 +-
.../test/Model/CreateFolderResponseTest.php | 2 +-
.../Model/CreateHrisCompanyResponseTest.php | 2 +-
.../Model/CreateInvoiceItemResponseTest.php | 2 +-
.../test/Model/CreateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/CreateItemResponseTest.php | 2 +-
src/gen/test/Model/CreateJobResponseTest.php | 2 +-
.../Model/CreateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/CreateLeadResponseTest.php | 2 +-
.../Model/CreateLedgerAccountResponseTest.php | 2 +-
.../test/Model/CreateLocationResponseTest.php | 2 +-
.../test/Model/CreateMerchantResponseTest.php | 2 +-
.../test/Model/CreateMessageResponseTest.php | 2 +-
.../Model/CreateModifierGroupResponseTest.php | 2 +-
.../test/Model/CreateModifierResponseTest.php | 2 +-
src/gen/test/Model/CreateNoteResponseTest.php | 2 +-
.../Model/CreateOpportunityResponseTest.php | 2 +-
.../test/Model/CreateOrderResponseTest.php | 2 +-
.../Model/CreateOrderTypeResponseTest.php | 2 +-
.../test/Model/CreatePaymentResponseTest.php | 2 +-
.../test/Model/CreatePipelineResponseTest.php | 2 +-
.../Model/CreatePosPaymentResponseTest.php | 2 +-
.../test/Model/CreateProductResponseTest.php | 2 +-
.../Model/CreatePurchaseOrderResponseTest.php | 2 +-
.../Model/CreateSessionResponseDataTest.php | 2 +-
.../test/Model/CreateSessionResponseTest.php | 2 +-
.../Model/CreateSharedLinkResponseTest.php | 2 +-
.../Model/CreateSubsidiaryResponseTest.php | 135 ++
.../test/Model/CreateSupplierResponseTest.php | 2 +-
.../test/Model/CreateTaxRateResponseTest.php | 2 +-
.../test/Model/CreateTenderResponseTest.php | 2 +-
.../test/Model/CreateTicketResponseTest.php | 2 +-
.../CreateTimeOffRequestResponseTest.php | 2 +-
.../Model/CreateUploadSessionRequestTest.php | 2 +-
.../Model/CreateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/CreateUserResponseTest.php | 2 +-
.../test/Model/CreateWebhookRequestTest.php | 2 +-
.../test/Model/CreateWebhookResponseTest.php | 2 +-
src/gen/test/Model/CreditNoteTest.php | 2 +-
src/gen/test/Model/CreditNotesFilterTest.php | 2 +-
src/gen/test/Model/CreditNotesSortTest.php | 2 +-
src/gen/test/Model/CrmEventTypeTest.php | 2 +-
src/gen/test/Model/CurrencyTest.php | 2 +-
src/gen/test/Model/CustomFieldFinderTest.php | 2 +-
src/gen/test/Model/CustomFieldTest.php | 2 +-
src/gen/test/Model/CustomMappingTest.php | 2 +-
src/gen/test/Model/CustomerTest.php | 2 +-
src/gen/test/Model/CustomersFilterTest.php | 2 +-
src/gen/test/Model/CustomersSortTest.php | 2 +-
src/gen/test/Model/DeductionTest.php | 2 +-
.../test/Model/DeleteActivityResponseTest.php | 2 +-
.../Model/DeleteApplicantResponseTest.php | 2 +-
.../Model/DeleteApplicationResponseTest.php | 2 +-
src/gen/test/Model/DeleteBillResponseTest.php | 2 +-
.../test/Model/DeleteCommentResponseTest.php | 2 +-
.../test/Model/DeleteCompanyResponseTest.php | 2 +-
.../test/Model/DeleteConsumerResponseTest.php | 2 +-
.../test/Model/DeleteContactResponseTest.php | 2 +-
.../Model/DeleteCreditNoteResponseTest.php | 2 +-
.../test/Model/DeleteCustomerResponseTest.php | 2 +-
.../Model/DeleteDepartmentResponseTest.php | 2 +-
.../Model/DeleteDriveGroupResponseTest.php | 2 +-
.../test/Model/DeleteDriveResponseTest.php | 2 +-
.../DeleteEcommerceCustomerResponseTest.php | 2 +-
.../DeleteEcommerceOrderResponseTest.php | 2 +-
.../test/Model/DeleteEmployeeResponseTest.php | 2 +-
src/gen/test/Model/DeleteFileResponseTest.php | 2 +-
.../test/Model/DeleteFolderResponseTest.php | 2 +-
.../Model/DeleteHrisCompanyResponseTest.php | 2 +-
.../test/Model/DeleteInvoiceResponseTest.php | 2 +-
src/gen/test/Model/DeleteItemResponseTest.php | 2 +-
src/gen/test/Model/DeleteJobResponseTest.php | 2 +-
.../Model/DeleteJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/DeleteLeadResponseTest.php | 2 +-
.../Model/DeleteLedgerAccountResponseTest.php | 2 +-
.../test/Model/DeleteLocationResponseTest.php | 2 +-
.../test/Model/DeleteMerchantResponseTest.php | 2 +-
.../test/Model/DeleteMessageResponseTest.php | 2 +-
.../Model/DeleteModifierGroupResponseTest.php | 2 +-
.../test/Model/DeleteModifierResponseTest.php | 2 +-
src/gen/test/Model/DeleteNoteResponseTest.php | 2 +-
.../Model/DeleteOpportunityResponseTest.php | 2 +-
.../test/Model/DeleteOrderResponseTest.php | 2 +-
.../Model/DeleteOrderTypeResponseTest.php | 2 +-
.../test/Model/DeletePaymentResponseTest.php | 2 +-
.../test/Model/DeletePipelineResponseTest.php | 2 +-
.../Model/DeletePosPaymentResponseTest.php | 2 +-
.../test/Model/DeleteProductResponseTest.php | 2 +-
.../Model/DeletePurchaseOrderResponseTest.php | 2 +-
.../Model/DeleteSharedLinkResponseTest.php | 2 +-
.../Model/DeleteSubsidiaryResponseTest.php | 135 ++
.../test/Model/DeleteSupplierResponseTest.php | 2 +-
.../test/Model/DeleteTaxRateResponseTest.php | 2 +-
.../test/Model/DeleteTenderResponseTest.php | 2 +-
.../test/Model/DeleteTicketResponseTest.php | 2 +-
.../DeleteTimeOffRequestResponseTest.php | 2 +-
.../Model/DeleteUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/DeleteUserResponseTest.php | 2 +-
.../test/Model/DeleteWebhookResponseTest.php | 2 +-
src/gen/test/Model/DepartmentTest.php | 2 +-
src/gen/test/Model/DriveGroupTest.php | 2 +-
src/gen/test/Model/DriveGroupsFilterTest.php | 2 +-
src/gen/test/Model/DriveTest.php | 2 +-
src/gen/test/Model/DrivesFilterTest.php | 2 +-
src/gen/test/Model/EcommerceAddressTest.php | 2 +-
.../Model/EcommerceCustomerAddressesTest.php | 2 +-
src/gen/test/Model/EcommerceCustomerTest.php | 2 +-
.../Model/EcommerceCustomersFilterTest.php | 2 +-
src/gen/test/Model/EcommerceDiscountTest.php | 2 +-
.../test/Model/EcommerceOrderLineItemTest.php | 2 +-
.../test/Model/EcommerceOrderStatusTest.php | 2 +-
src/gen/test/Model/EcommerceOrderTest.php | 2 +-
.../test/Model/EcommerceOrdersFilterTest.php | 2 +-
.../Model/EcommerceProductCategoriesTest.php | 2 +-
.../Model/EcommerceProductImages1Test.php | 2 +-
.../test/Model/EcommerceProductImagesTest.php | 2 +-
.../Model/EcommerceProductOptions1Test.php | 2 +-
.../Model/EcommerceProductOptionsTest.php | 2 +-
src/gen/test/Model/EcommerceProductTest.php | 2 +-
.../Model/EcommerceProductVariantsTest.php | 2 +-
src/gen/test/Model/EcommerceStoreTest.php | 2 +-
src/gen/test/Model/EmailTest.php | 2 +-
.../test/Model/EmployeeCompensationTest.php | 2 +-
.../test/Model/EmployeeEmploymentRoleTest.php | 2 +-
src/gen/test/Model/EmployeeJobTest.php | 2 +-
src/gen/test/Model/EmployeeListTest.php | 2 +-
src/gen/test/Model/EmployeeManagerTest.php | 2 +-
src/gen/test/Model/EmployeePayrollTest.php | 2 +-
src/gen/test/Model/EmployeeSchedulesTest.php | 2 +-
src/gen/test/Model/EmployeeTest.php | 2 +-
src/gen/test/Model/EmployeesFilterTest.php | 2 +-
src/gen/test/Model/EmployeesSortTest.php | 2 +-
src/gen/test/Model/EmploymentStatusTest.php | 2 +-
src/gen/test/Model/ErrorTest.php | 2 +-
.../test/Model/ExecuteWebhookResponseTest.php | 2 +-
.../test/Model/FileStorageEventTypeTest.php | 2 +-
src/gen/test/Model/FileTypeTest.php | 2 +-
src/gen/test/Model/FilesFilterTest.php | 2 +-
src/gen/test/Model/FilesSearchTest.php | 2 +-
src/gen/test/Model/FilesSortTest.php | 2 +-
src/gen/test/Model/FolderTest.php | 2 +-
.../test/Model/FormFieldOptionGroupTest.php | 2 +-
src/gen/test/Model/FormFieldOptionTest.php | 2 +-
src/gen/test/Model/FormFieldTest.php | 2 +-
src/gen/test/Model/GenderTest.php | 2 +-
.../test/Model/GetActivitiesResponseTest.php | 2 +-
.../test/Model/GetActivityResponseTest.php | 2 +-
.../GetApiResourceCoverageResponseTest.php | 2 +-
.../test/Model/GetApiResourceResponseTest.php | 2 +-
src/gen/test/Model/GetApiResponseTest.php | 2 +-
src/gen/test/Model/GetApisResponseTest.php | 2 +-
.../test/Model/GetApplicantResponseTest.php | 2 +-
.../test/Model/GetApplicantsResponseTest.php | 2 +-
.../test/Model/GetApplicationResponseTest.php | 2 +-
.../Model/GetApplicationsResponseTest.php | 2 +-
.../Model/GetBalanceSheetResponseTest.php | 2 +-
src/gen/test/Model/GetBillResponseTest.php | 2 +-
src/gen/test/Model/GetBillsResponseTest.php | 2 +-
.../test/Model/GetCollectionResponseTest.php | 2 +-
.../Model/GetCollectionTagsResponseTest.php | 2 +-
.../Model/GetCollectionUserResponseTest.php | 2 +-
.../Model/GetCollectionUsersResponseTest.php | 2 +-
.../test/Model/GetCollectionsResponseTest.php | 2 +-
src/gen/test/Model/GetCommentResponseTest.php | 2 +-
.../test/Model/GetCommentsResponseTest.php | 2 +-
.../test/Model/GetCompaniesResponseTest.php | 2 +-
.../test/Model/GetCompanyInfoResponseTest.php | 2 +-
src/gen/test/Model/GetCompanyResponseTest.php | 2 +-
.../test/Model/GetConnectionResponseTest.php | 2 +-
.../test/Model/GetConnectionsResponseTest.php | 2 +-
...nnectorResourceExampleResponseDataTest.php | 2 +-
...etConnectorResourceExampleResponseTest.php | 2 +-
.../GetConnectorResourceResponseTest.php | 2 +-
...GetConnectorResourceSchemaResponseTest.php | 2 +-
.../test/Model/GetConnectorResponseTest.php | 2 +-
.../test/Model/GetConnectorsResponseTest.php | 2 +-
.../test/Model/GetConsumerResponseTest.php | 2 +-
.../Model/GetConsumersResponseDataTest.php | 2 +-
.../test/Model/GetConsumersResponseTest.php | 2 +-
src/gen/test/Model/GetContactResponseTest.php | 2 +-
.../test/Model/GetContactsResponseTest.php | 2 +-
.../test/Model/GetCreditNoteResponseTest.php | 2 +-
.../test/Model/GetCreditNotesResponseTest.php | 2 +-
.../Model/GetCustomFieldsResponseTest.php | 2 +-
.../Model/GetCustomMappingResponseTest.php | 2 +-
.../test/Model/GetCustomerResponseTest.php | 2 +-
.../test/Model/GetCustomersResponseTest.php | 2 +-
.../test/Model/GetDepartmentResponseTest.php | 2 +-
.../test/Model/GetDepartmentsResponseTest.php | 2 +-
.../test/Model/GetDriveGroupResponseTest.php | 2 +-
.../test/Model/GetDriveGroupsResponseTest.php | 2 +-
src/gen/test/Model/GetDriveResponseTest.php | 2 +-
src/gen/test/Model/GetDrivesResponseTest.php | 2 +-
.../GetEcommerceCustomerResponseTest.php | 2 +-
.../GetEcommerceCustomersResponseTest.php | 2 +-
.../Model/GetEcommerceOrderResponseTest.php | 2 +-
.../Model/GetEcommerceOrdersResponseTest.php | 2 +-
.../Model/GetEmployeePayrollResponseTest.php | 2 +-
.../Model/GetEmployeePayrollsResponseTest.php | 2 +-
.../test/Model/GetEmployeeResponseTest.php | 2 +-
.../GetEmployeeSchedulesResponseTest.php | 2 +-
.../test/Model/GetEmployeesResponseTest.php | 2 +-
src/gen/test/Model/GetFileResponseTest.php | 2 +-
src/gen/test/Model/GetFilesResponseTest.php | 2 +-
src/gen/test/Model/GetFolderResponseTest.php | 2 +-
src/gen/test/Model/GetFoldersResponseTest.php | 2 +-
.../Model/GetHrisCompaniesResponseTest.php | 2 +-
.../test/Model/GetHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/GetHrisJobResponseTest.php | 2 +-
.../test/Model/GetHrisJobsResponseTest.php | 2 +-
.../test/Model/GetInvoiceItemResponseTest.php | 2 +-
.../Model/GetInvoiceItemsResponseTest.php | 2 +-
src/gen/test/Model/GetInvoiceResponseTest.php | 2 +-
.../test/Model/GetInvoicesResponseTest.php | 2 +-
src/gen/test/Model/GetItemResponseTest.php | 2 +-
src/gen/test/Model/GetItemsResponseTest.php | 2 +-
src/gen/test/Model/GetJobResponseTest.php | 2 +-
src/gen/test/Model/GetJobsResponseTest.php | 2 +-
.../Model/GetJournalEntriesResponseTest.php | 2 +-
.../Model/GetJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/GetLeadResponseTest.php | 2 +-
src/gen/test/Model/GetLeadsResponseTest.php | 2 +-
.../Model/GetLedgerAccountResponseTest.php | 2 +-
.../Model/GetLedgerAccountsResponseTest.php | 2 +-
.../test/Model/GetLocationResponseTest.php | 2 +-
.../test/Model/GetLocationsResponseTest.php | 2 +-
src/gen/test/Model/GetLogsResponseTest.php | 2 +-
.../test/Model/GetMerchantResponseTest.php | 2 +-
.../test/Model/GetMerchantsResponseTest.php | 2 +-
src/gen/test/Model/GetMessageResponseTest.php | 2 +-
.../test/Model/GetMessagesResponseTest.php | 2 +-
.../Model/GetModifierGroupResponseTest.php | 2 +-
.../Model/GetModifierGroupsResponseTest.php | 2 +-
.../test/Model/GetModifierResponseTest.php | 2 +-
.../test/Model/GetModifiersResponseTest.php | 2 +-
src/gen/test/Model/GetNoteResponseTest.php | 2 +-
src/gen/test/Model/GetNotesResponseTest.php | 2 +-
.../Model/GetOpportunitiesResponseTest.php | 2 +-
.../test/Model/GetOpportunityResponseTest.php | 2 +-
src/gen/test/Model/GetOrderResponseTest.php | 2 +-
.../test/Model/GetOrderTypeResponseTest.php | 2 +-
.../test/Model/GetOrderTypesResponseTest.php | 2 +-
src/gen/test/Model/GetOrdersResponseTest.php | 2 +-
src/gen/test/Model/GetPaymentResponseTest.php | 2 +-
.../test/Model/GetPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetPayrollResponseTest.php | 2 +-
.../test/Model/GetPayrollsResponseTest.php | 2 +-
.../test/Model/GetPipelineResponseTest.php | 2 +-
.../test/Model/GetPipelinesResponseTest.php | 2 +-
.../test/Model/GetPosPaymentResponseTest.php | 2 +-
.../test/Model/GetPosPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetProductResponseTest.php | 2 +-
.../test/Model/GetProductsResponseTest.php | 2 +-
.../Model/GetProfitAndLossResponseTest.php | 2 +-
.../Model/GetPurchaseOrderResponseTest.php | 2 +-
.../Model/GetPurchaseOrdersResponseTest.php | 2 +-
.../Model/GetResourceExampleResponseTest.php | 2 +-
.../Model/GetResourceSchemaResponseTest.php | 2 +-
.../test/Model/GetSharedLinkResponseTest.php | 2 +-
.../test/Model/GetSharedLinksResponseTest.php | 2 +-
src/gen/test/Model/GetStoreResponseTest.php | 2 +-
src/gen/test/Model/GetStoresResponseTest.php | 2 +-
.../Model/GetSubsidiariesResponseTest.php | 2 +-
.../test/Model/GetSubsidiaryResponseTest.php | 2 +-
.../test/Model/GetSupplierResponseTest.php | 2 +-
.../test/Model/GetSuppliersResponseTest.php | 2 +-
src/gen/test/Model/GetTaxRateResponseTest.php | 2 +-
.../test/Model/GetTaxRatesResponseTest.php | 2 +-
src/gen/test/Model/GetTenderResponseTest.php | 2 +-
src/gen/test/Model/GetTendersResponseTest.php | 2 +-
src/gen/test/Model/GetTicketResponseTest.php | 2 +-
src/gen/test/Model/GetTicketsResponseTest.php | 2 +-
.../Model/GetTimeOffRequestResponseTest.php | 2 +-
.../Model/GetTimeOffRequestsResponseTest.php | 2 +-
.../Model/GetUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/GetUserResponseTest.php | 2 +-
src/gen/test/Model/GetUsersResponseTest.php | 2 +-
.../Model/GetWebhookEventLogsResponseTest.php | 2 +-
src/gen/test/Model/GetWebhookResponseTest.php | 2 +-
.../test/Model/GetWebhooksResponseTest.php | 2 +-
src/gen/test/Model/HrisCompanyTest.php | 2 +-
src/gen/test/Model/HrisEventTypeTest.php | 2 +-
src/gen/test/Model/HrisJobLocationTest.php | 2 +-
src/gen/test/Model/HrisJobTest.php | 2 +-
src/gen/test/Model/HrisJobsTest.php | 2 +-
src/gen/test/Model/IntegrationStateTest.php | 2 +-
.../Model/InvoiceItemSalesDetailsTest.php | 2 +-
src/gen/test/Model/InvoiceItemTest.php | 2 +-
src/gen/test/Model/InvoiceItemsFilterTest.php | 2 +-
src/gen/test/Model/InvoiceLineItemTest.php | 2 +-
src/gen/test/Model/InvoiceResponseTest.php | 2 +-
src/gen/test/Model/InvoiceTest.php | 2 +-
src/gen/test/Model/InvoicesFilterTest.php | 2 +-
src/gen/test/Model/InvoicesSortTest.php | 2 +-
.../test/Model/IssueTrackingEventTypeTest.php | 2 +-
src/gen/test/Model/IssuesFilterTest.php | 2 +-
src/gen/test/Model/ItemTest.php | 2 +-
src/gen/test/Model/JobLinksTest.php | 2 +-
src/gen/test/Model/JobSalaryTest.php | 2 +-
src/gen/test/Model/JobStatusTest.php | 2 +-
src/gen/test/Model/JobTest.php | 2 +-
.../test/Model/JournalEntriesFilterTest.php | 2 +-
src/gen/test/Model/JournalEntriesSortTest.php | 2 +-
.../test/Model/JournalEntryLineItemTest.php | 2 +-
src/gen/test/Model/JournalEntryTest.php | 2 +-
src/gen/test/Model/LeadEventTypeTest.php | 2 +-
src/gen/test/Model/LeadTest.php | 2 +-
src/gen/test/Model/LeadsFilterTest.php | 2 +-
src/gen/test/Model/LeadsSortTest.php | 2 +-
.../Model/LedgerAccountCategoriesTest.php | 2 +-
.../Model/LedgerAccountParentAccountTest.php | 2 +-
src/gen/test/Model/LedgerAccountTest.php | 2 +-
.../test/Model/LedgerAccountsFilterTest.php | 2 +-
src/gen/test/Model/LedgerAccountsSortTest.php | 2 +-
.../Model/LinkedConnectorResourceTest.php | 2 +-
src/gen/test/Model/LinkedCustomerTest.php | 2 +-
.../Model/LinkedEcommerceCustomerTest.php | 2 +-
.../test/Model/LinkedEcommerceOrderTest.php | 2 +-
src/gen/test/Model/LinkedFolderTest.php | 2 +-
src/gen/test/Model/LinkedInvoiceItemTest.php | 2 +-
.../test/Model/LinkedLedgerAccountTest.php | 2 +-
.../test/Model/LinkedParentCustomerTest.php | 2 +-
src/gen/test/Model/LinkedSupplierTest.php | 2 +-
src/gen/test/Model/LinkedTaxRateTest.php | 2 +-
.../test/Model/LinkedTrackingCategoryTest.php | 2 +-
src/gen/test/Model/LinksTest.php | 2 +-
src/gen/test/Model/LocationTest.php | 2 +-
src/gen/test/Model/LogOperationTest.php | 2 +-
src/gen/test/Model/LogServiceTest.php | 2 +-
src/gen/test/Model/LogTest.php | 2 +-
src/gen/test/Model/LogsFilterTest.php | 2 +-
src/gen/test/Model/MerchantTest.php | 2 +-
src/gen/test/Model/MessageTest.php | 2 +-
src/gen/test/Model/MetaCursorsTest.php | 2 +-
src/gen/test/Model/MetaTest.php | 2 +-
.../test/Model/ModifierGroupFilterTest.php | 2 +-
src/gen/test/Model/ModifierGroupTest.php | 2 +-
src/gen/test/Model/ModifierTest.php | 2 +-
src/gen/test/Model/NotFoundResponseTest.php | 2 +-
.../test/Model/NotImplementedResponseTest.php | 2 +-
src/gen/test/Model/NoteTest.php | 2 +-
src/gen/test/Model/OAuthGrantTypeTest.php | 2 +-
src/gen/test/Model/OfferTest.php | 2 +-
.../test/Model/OpportunitiesFilterTest.php | 2 +-
src/gen/test/Model/OpportunitiesSortTest.php | 2 +-
src/gen/test/Model/OpportunityTest.php | 2 +-
src/gen/test/Model/OrderCustomersTest.php | 2 +-
src/gen/test/Model/OrderDiscountsTest.php | 2 +-
src/gen/test/Model/OrderFulfillmentsTest.php | 2 +-
src/gen/test/Model/OrderLineItemsTest.php | 2 +-
src/gen/test/Model/OrderPaymentsTest.php | 2 +-
...PickupDetailsCurbsidePickupDetailsTest.php | 2 +-
.../Model/OrderPickupDetailsRecipientTest.php | 2 +-
src/gen/test/Model/OrderPickupDetailsTest.php | 2 +-
src/gen/test/Model/OrderRefundsTest.php | 2 +-
src/gen/test/Model/OrderTendersTest.php | 2 +-
src/gen/test/Model/OrderTest.php | 2 +-
src/gen/test/Model/OrderTypeTest.php | 2 +-
src/gen/test/Model/OwnerTest.php | 2 +-
src/gen/test/Model/PaginationCoverageTest.php | 2 +-
src/gen/test/Model/PassThroughQueryTest.php | 2 +-
src/gen/test/Model/PaymentAllocationsTest.php | 2 +-
src/gen/test/Model/PaymentCardTest.php | 2 +-
src/gen/test/Model/PaymentFrequencyTest.php | 2 +-
.../Model/PaymentRequiredResponseTest.php | 2 +-
src/gen/test/Model/PaymentTest.php | 2 +-
src/gen/test/Model/PaymentUnitTest.php | 2 +-
src/gen/test/Model/PaymentsFilterTest.php | 2 +-
src/gen/test/Model/PaymentsSortTest.php | 2 +-
src/gen/test/Model/PayrollTest.php | 2 +-
src/gen/test/Model/PayrollTotalsTest.php | 2 +-
src/gen/test/Model/PayrollsFilterTest.php | 2 +-
src/gen/test/Model/PersonTest.php | 2 +-
src/gen/test/Model/PhoneNumberTest.php | 2 +-
src/gen/test/Model/PipelineStagesTest.php | 2 +-
src/gen/test/Model/PipelineTest.php | 2 +-
.../Model/PosBankAccountAchDetailsTest.php | 2 +-
src/gen/test/Model/PosBankAccountTest.php | 2 +-
.../test/Model/PosPaymentCardDetailsTest.php | 2 +-
.../Model/PosPaymentExternalDetailsTest.php | 2 +-
src/gen/test/Model/PosPaymentTest.php | 2 +-
src/gen/test/Model/PriceTest.php | 2 +-
src/gen/test/Model/ProbationPeriodTest.php | 2 +-
.../test/Model/ProfitAndLossExpensesTest.php | 2 +-
.../test/Model/ProfitAndLossFilterTest.php | 2 +-
.../Model/ProfitAndLossGrossProfitTest.php | 2 +-
.../test/Model/ProfitAndLossIncomeTest.php | 2 +-
.../test/Model/ProfitAndLossNetIncomeTest.php | 2 +-
.../ProfitAndLossNetOperatingIncomeTest.php | 2 +-
.../test/Model/ProfitAndLossRecordTest.php | 2 +-
.../test/Model/ProfitAndLossSectionTest.php | 2 +-
src/gen/test/Model/ProfitAndLossTest.php | 2 +-
src/gen/test/Model/PurchaseOrderTest.php | 2 +-
.../test/Model/PurchaseOrdersFilterTest.php | 2 +-
src/gen/test/Model/PurchaseOrdersSortTest.php | 2 +-
.../test/Model/RequestCountAllocationTest.php | 2 +-
src/gen/test/Model/RequestRateTest.php | 2 +-
.../test/Model/ResolveWebhookResponseTest.php | 2 +-
src/gen/test/Model/ResourceExampleTest.php | 2 +-
src/gen/test/Model/ResourceStatusTest.php | 2 +-
src/gen/test/Model/ScheduleTest.php | 2 +-
.../Model/ScheduleWorkPatternOddWeeksTest.php | 2 +-
.../test/Model/ScheduleWorkPatternTest.php | 2 +-
src/gen/test/Model/SchemaSupportTest.php | 2 +-
src/gen/test/Model/ServiceChargeTest.php | 2 +-
src/gen/test/Model/SessionSettingsTest.php | 2 +-
src/gen/test/Model/SessionTest.php | 2 +-
src/gen/test/Model/SessionThemeTest.php | 2 +-
src/gen/test/Model/SharedLinkTargetTest.php | 2 +-
src/gen/test/Model/SharedLinkTest.php | 2 +-
.../test/Model/SimpleFormFieldOptionTest.php | 2 +-
src/gen/test/Model/SocialLinkTest.php | 2 +-
src/gen/test/Model/SortDirectionTest.php | 2 +-
src/gen/test/Model/StatusTest.php | 2 +-
src/gen/test/Model/SubsidiaryTest.php | 2 +-
src/gen/test/Model/SupplierTest.php | 2 +-
src/gen/test/Model/SuppliersFilterTest.php | 2 +-
src/gen/test/Model/SuppliersSortTest.php | 2 +-
src/gen/test/Model/SupportedPropertyTest.php | 2 +-
src/gen/test/Model/TaxRateTest.php | 2 +-
src/gen/test/Model/TaxRatesFilterTest.php | 2 +-
src/gen/test/Model/TaxTest.php | 2 +-
src/gen/test/Model/TeamTest.php | 2 +-
src/gen/test/Model/TenderTest.php | 2 +-
src/gen/test/Model/TicketTest.php | 2 +-
src/gen/test/Model/TicketsSortTest.php | 2 +-
.../test/Model/TimeOffRequestNotesTest.php | 2 +-
src/gen/test/Model/TimeOffRequestTest.php | 2 +-
.../test/Model/TimeOffRequestsFilterTest.php | 2 +-
.../TooManyRequestsResponseDetailTest.php | 2 +-
.../Model/TooManyRequestsResponseTest.php | 2 +-
src/gen/test/Model/TrackingItemTest.php | 2 +-
.../test/Model/UnauthorizedResponseTest.php | 2 +-
.../Model/UnexpectedErrorResponseTest.php | 2 +-
src/gen/test/Model/UnifiedApiIdTest.php | 2 +-
.../test/Model/UnifiedFilePermissionsTest.php | 2 +-
src/gen/test/Model/UnifiedFileTest.php | 2 +-
src/gen/test/Model/UnifiedIdTest.php | 2 +-
.../test/Model/UnprocessableResponseTest.php | 2 +-
.../test/Model/UpdateActivityResponseTest.php | 2 +-
.../Model/UpdateApplicantResponseTest.php | 2 +-
.../Model/UpdateApplicationResponseTest.php | 2 +-
src/gen/test/Model/UpdateBillResponseTest.php | 2 +-
.../test/Model/UpdateCommentResponseTest.php | 2 +-
.../test/Model/UpdateCompanyResponseTest.php | 2 +-
.../Model/UpdateConnectionResponseTest.php | 2 +-
.../test/Model/UpdateConsumerRequestTest.php | 2 +-
.../test/Model/UpdateConsumerResponseTest.php | 2 +-
.../test/Model/UpdateContactResponseTest.php | 2 +-
.../Model/UpdateCreditNoteResponseTest.php | 2 +-
.../Model/UpdateCustomMappingRequestTest.php | 2 +-
.../Model/UpdateCustomMappingResponseTest.php | 2 +-
.../test/Model/UpdateCustomerResponseTest.php | 2 +-
.../Model/UpdateDepartmentResponseTest.php | 2 +-
.../Model/UpdateDriveGroupResponseTest.php | 2 +-
.../test/Model/UpdateDriveResponseTest.php | 2 +-
.../UpdateEcommerceCustomerResponseTest.php | 2 +-
.../UpdateEcommerceOrderResponseTest.php | 2 +-
.../test/Model/UpdateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/UpdateFileRequestTest.php | 2 +-
src/gen/test/Model/UpdateFileResponseTest.php | 2 +-
.../test/Model/UpdateFolderRequestTest.php | 2 +-
.../test/Model/UpdateFolderResponseTest.php | 2 +-
.../Model/UpdateHrisCompanyResponseTest.php | 2 +-
.../Model/UpdateInvoiceItemsResponseTest.php | 2 +-
.../test/Model/UpdateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/UpdateItemResponseTest.php | 2 +-
src/gen/test/Model/UpdateJobResponseTest.php | 2 +-
.../Model/UpdateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/UpdateLeadResponseTest.php | 2 +-
.../Model/UpdateLedgerAccountResponseTest.php | 2 +-
.../test/Model/UpdateLocationResponseTest.php | 2 +-
.../test/Model/UpdateMerchantResponseTest.php | 2 +-
.../test/Model/UpdateMessageResponseTest.php | 2 +-
.../Model/UpdateModifierGroupResponseTest.php | 2 +-
.../test/Model/UpdateModifierResponseTest.php | 2 +-
src/gen/test/Model/UpdateNoteResponseTest.php | 2 +-
.../Model/UpdateOpportunityResponseTest.php | 2 +-
.../test/Model/UpdateOrderResponseTest.php | 2 +-
.../Model/UpdateOrderTypeResponseTest.php | 2 +-
.../test/Model/UpdatePaymentResponseTest.php | 2 +-
.../test/Model/UpdatePipelineResponseTest.php | 2 +-
.../Model/UpdatePosPaymentResponseTest.php | 2 +-
.../test/Model/UpdateProductResponseTest.php | 2 +-
.../Model/UpdatePurchaseOrderResponseTest.php | 2 +-
.../Model/UpdateSharedLinkResponseTest.php | 2 +-
.../Model/UpdateSubsidiaryResponseTest.php | 135 ++
.../test/Model/UpdateSupplierResponseTest.php | 2 +-
.../test/Model/UpdateTaxRateResponseTest.php | 2 +-
.../test/Model/UpdateTenderResponseTest.php | 2 +-
.../test/Model/UpdateTicketResponseTest.php | 2 +-
.../UpdateTimeOffRequestResponseTest.php | 2 +-
.../Model/UpdateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/UpdateUserResponseTest.php | 2 +-
.../test/Model/UpdateWebhookRequestTest.php | 2 +-
.../test/Model/UpdateWebhookResponseTest.php | 2 +-
src/gen/test/Model/UploadSessionTest.php | 2 +-
src/gen/test/Model/UserTest.php | 2 +-
src/gen/test/Model/VaultEventTypeTest.php | 2 +-
src/gen/test/Model/VirtualWebhooksTest.php | 2 +-
src/gen/test/Model/WalletDetailsTest.php | 2 +-
.../Model/WebhookEventLogAttemptsTest.php | 2 +-
.../test/Model/WebhookEventLogServiceTest.php | 2 +-
src/gen/test/Model/WebhookEventLogTest.php | 2 +-
.../WebhookEventLogsFilterServiceTest.php | 2 +-
.../test/Model/WebhookEventLogsFilterTest.php | 2 +-
src/gen/test/Model/WebhookEventTest.php | 2 +-
src/gen/test/Model/WebhookEventTypeTest.php | 2 +-
.../test/Model/WebhookSubscriptionTest.php | 2 +-
src/gen/test/Model/WebhookSupportTest.php | 2 +-
src/gen/test/Model/WebhookTest.php | 2 +-
src/gen/test/Model/WebsiteTest.php | 2 +-
1270 files changed, 5088 insertions(+), 1460 deletions(-)
create mode 100644 src/gen/docs/models/CreateSubsidiaryResponse.md
create mode 100644 src/gen/docs/models/DeleteSubsidiaryResponse.md
create mode 100644 src/gen/docs/models/UpdateSubsidiaryResponse.md
create mode 100644 src/gen/lib/Model/CreateSubsidiaryResponse.php
create mode 100644 src/gen/lib/Model/DeleteSubsidiaryResponse.php
create mode 100644 src/gen/lib/Model/UpdateSubsidiaryResponse.php
create mode 100644 src/gen/test/Model/CreateSubsidiaryResponseTest.php
create mode 100644 src/gen/test/Model/DeleteSubsidiaryResponseTest.php
create mode 100644 src/gen/test/Model/UpdateSubsidiaryResponseTest.php
diff --git a/src/gen/.openapi-generator/FILES b/src/gen/.openapi-generator/FILES
index 56087156db..6593281a18 100644
--- a/src/gen/.openapi-generator/FILES
+++ b/src/gen/.openapi-generator/FILES
@@ -154,6 +154,7 @@ docs/Model/CreatePurchaseOrderResponse.md
docs/Model/CreateSessionResponse.md
docs/Model/CreateSessionResponseData.md
docs/Model/CreateSharedLinkResponse.md
+docs/Model/CreateSubsidiaryResponse.md
docs/Model/CreateSupplierResponse.md
docs/Model/CreateTaxRateResponse.md
docs/Model/CreateTenderResponse.md
@@ -216,6 +217,7 @@ docs/Model/DeletePosPaymentResponse.md
docs/Model/DeleteProductResponse.md
docs/Model/DeletePurchaseOrderResponse.md
docs/Model/DeleteSharedLinkResponse.md
+docs/Model/DeleteSubsidiaryResponse.md
docs/Model/DeleteSupplierResponse.md
docs/Model/DeleteTaxRateResponse.md
docs/Model/DeleteTenderResponse.md
@@ -611,6 +613,7 @@ docs/Model/UpdatePosPaymentResponse.md
docs/Model/UpdateProductResponse.md
docs/Model/UpdatePurchaseOrderResponse.md
docs/Model/UpdateSharedLinkResponse.md
+docs/Model/UpdateSubsidiaryResponse.md
docs/Model/UpdateSupplierResponse.md
docs/Model/UpdateTaxRateResponse.md
docs/Model/UpdateTenderResponse.md
@@ -787,6 +790,7 @@ lib/Model/CreatePurchaseOrderResponse.php
lib/Model/CreateSessionResponse.php
lib/Model/CreateSessionResponseData.php
lib/Model/CreateSharedLinkResponse.php
+lib/Model/CreateSubsidiaryResponse.php
lib/Model/CreateSupplierResponse.php
lib/Model/CreateTaxRateResponse.php
lib/Model/CreateTenderResponse.php
@@ -849,6 +853,7 @@ lib/Model/DeletePosPaymentResponse.php
lib/Model/DeleteProductResponse.php
lib/Model/DeletePurchaseOrderResponse.php
lib/Model/DeleteSharedLinkResponse.php
+lib/Model/DeleteSubsidiaryResponse.php
lib/Model/DeleteSupplierResponse.php
lib/Model/DeleteTaxRateResponse.php
lib/Model/DeleteTenderResponse.php
@@ -1245,6 +1250,7 @@ lib/Model/UpdatePosPaymentResponse.php
lib/Model/UpdateProductResponse.php
lib/Model/UpdatePurchaseOrderResponse.php
lib/Model/UpdateSharedLinkResponse.php
+lib/Model/UpdateSubsidiaryResponse.php
lib/Model/UpdateSupplierResponse.php
lib/Model/UpdateTaxRateResponse.php
lib/Model/UpdateTenderResponse.php
@@ -1417,6 +1423,7 @@ test/Model/CreatePurchaseOrderResponseTest.php
test/Model/CreateSessionResponseDataTest.php
test/Model/CreateSessionResponseTest.php
test/Model/CreateSharedLinkResponseTest.php
+test/Model/CreateSubsidiaryResponseTest.php
test/Model/CreateSupplierResponseTest.php
test/Model/CreateTaxRateResponseTest.php
test/Model/CreateTenderResponseTest.php
@@ -1479,6 +1486,7 @@ test/Model/DeletePosPaymentResponseTest.php
test/Model/DeleteProductResponseTest.php
test/Model/DeletePurchaseOrderResponseTest.php
test/Model/DeleteSharedLinkResponseTest.php
+test/Model/DeleteSubsidiaryResponseTest.php
test/Model/DeleteSupplierResponseTest.php
test/Model/DeleteTaxRateResponseTest.php
test/Model/DeleteTenderResponseTest.php
@@ -1874,6 +1882,7 @@ test/Model/UpdatePosPaymentResponseTest.php
test/Model/UpdateProductResponseTest.php
test/Model/UpdatePurchaseOrderResponseTest.php
test/Model/UpdateSharedLinkResponseTest.php
+test/Model/UpdateSubsidiaryResponseTest.php
test/Model/UpdateSupplierResponseTest.php
test/Model/UpdateTaxRateResponseTest.php
test/Model/UpdateTenderResponseTest.php
diff --git a/src/gen/docs/apis/AccountingApi.md b/src/gen/docs/apis/AccountingApi.md
index 70d9748e10..25db28bf53 100644
--- a/src/gen/docs/apis/AccountingApi.md
+++ b/src/gen/docs/apis/AccountingApi.md
@@ -53,8 +53,11 @@
* [Delete Purchase Order](#purchaseOrdersDelete)
* [Get Purchase Order](#purchaseOrdersOne)
* [Update Purchase Order](#purchaseOrdersUpdate)
+* [Create Subsidiary](#subsidiariesAdd)
* [List Subsidiaries](#subsidiariesAll)
+* [Delete Subsidiary](#subsidiariesDelete)
* [Get Subsidiary](#subsidiariesOne)
+* [Update Subsidiary](#subsidiariesUpdate)
* [Create Supplier](#suppliersAdd)
* [List Suppliers](#suppliersAll)
* [Delete Supplier](#suppliersDelete)
@@ -3295,6 +3298,72 @@ try {
```
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Create Subsidiary
+
+
+Method: **subsidiariesAdd**
+
+```php
+Apideck->getAccountingApi()->subsidiariesAdd($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **subsidiary** | [\Apideck\Client\Model\Subsidiary](../models/\Apideck\Client\Model\Subsidiary.md)| |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\CreateSubsidiaryResponse`](../models/\Apideck\Client\Model\CreateSubsidiaryResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**201** | Subsidiaries |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->subsidiariesAdd($subsidiary);
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
@@ -3363,6 +3432,72 @@ try {
```
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Delete Subsidiary
+
+
+Method: **subsidiariesDelete**
+
+```php
+Apideck->getAccountingApi()->subsidiariesDelete($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **id** | **string**| ID of the record you are acting upon. |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\DeleteSubsidiaryResponse`](../models/\Apideck\Client\Model\DeleteSubsidiaryResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | Subsidiarys |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->subsidiariesDelete('id_example');
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
@@ -3430,6 +3565,73 @@ try {
```
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Update Subsidiary
+
+
+Method: **subsidiariesUpdate**
+
+```php
+Apideck->getAccountingApi()->subsidiariesUpdate($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **id** | **string**| ID of the record you are acting upon. |
+ **subsidiary** | [\Apideck\Client\Model\Subsidiary](../models/\Apideck\Client\Model\Subsidiary.md)| |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\UpdateSubsidiaryResponse`](../models/\Apideck\Client\Model\UpdateSubsidiaryResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | Subsidiaries |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->subsidiariesUpdate('id_example', $subsidiary);
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
diff --git a/src/gen/docs/models/CreateSubsidiaryResponse.md b/src/gen/docs/models/CreateSubsidiaryResponse.md
new file mode 100644
index 0000000000..76f62f1a73
--- /dev/null
+++ b/src/gen/docs/models/CreateSubsidiaryResponse.md
@@ -0,0 +1,31 @@
+# Apideck.CreateSubsidiaryResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\UnifiedId**](UnifiedId.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`UnifiedId`](UnifiedId.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/DeleteSubsidiaryResponse.md b/src/gen/docs/models/DeleteSubsidiaryResponse.md
new file mode 100644
index 0000000000..88d1f8939a
--- /dev/null
+++ b/src/gen/docs/models/DeleteSubsidiaryResponse.md
@@ -0,0 +1,31 @@
+# Apideck.DeleteSubsidiaryResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\UnifiedId**](UnifiedId.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`UnifiedId`](UnifiedId.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/UpdateSubsidiaryResponse.md b/src/gen/docs/models/UpdateSubsidiaryResponse.md
new file mode 100644
index 0000000000..790a468916
--- /dev/null
+++ b/src/gen/docs/models/UpdateSubsidiaryResponse.md
@@ -0,0 +1,31 @@
+# Apideck.UpdateSubsidiaryResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\UnifiedId**](UnifiedId.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`UnifiedId`](UnifiedId.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/lib/Api/AccountingApi.php b/src/gen/lib/Api/AccountingApi.php
index 79901a9e04..1bfbbbe7ba 100644
--- a/src/gen/lib/Api/AccountingApi.php
+++ b/src/gen/lib/Api/AccountingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -25519,49 +25519,1572 @@ public function purchaseOrdersUpdateRequest($id, $purchase_order, $x_apideck_con
);
}
+ /**
+ * Operation subsidiariesAdd
+ *
+ * Create Subsidiary
+ *
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary subsidiary (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\CreateSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function subsidiariesAdd($subsidiary, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ list($response) = $this->subsidiariesAddWithHttpInfo($subsidiary, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ return $response;
+ }
+
+ /**
+ * Operation subsidiariesAddWithHttpInfo
+ *
+ * Create Subsidiary
+ *
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\CreateSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function subsidiariesAddWithHttpInfo($subsidiary, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ $request = $this->subsidiariesAddRequest($subsidiary, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 201:
+ if ('\Apideck\Client\Model\CreateSubsidiaryResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateSubsidiaryResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\CreateSubsidiaryResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 201:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\CreateSubsidiaryResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation subsidiariesAddAsync
+ *
+ * Create Subsidiary
+ *
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesAddAsync($subsidiary, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ return $this->subsidiariesAddAsyncWithHttpInfo($subsidiary, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation subsidiariesAddAsyncWithHttpInfo
+ *
+ * Create Subsidiary
+ *
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesAddAsyncWithHttpInfo($subsidiary, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ $returnType = '\Apideck\Client\Model\CreateSubsidiaryResponse';
+ $request = $this->subsidiariesAddRequest($subsidiary, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+
+ 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();
+ }
+
+ 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 'subsidiariesAdd'
+ *
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function subsidiariesAddRequest($subsidiary, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ // verify the required parameter 'subsidiary' is set
+ if ($subsidiary === null || (is_array($subsidiary) && count($subsidiary) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $subsidiary when calling subsidiariesAdd'
+ );
+ }
+
+ $resourcePath = '/accounting/subsidiaries';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ ['application/json']
+ );
+ }
+
+ // for model (json/xml)
+ if (isset($subsidiary)) {
+ if ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($subsidiary));
+ } else {
+ $httpBody = $subsidiary;
+ }
+ } elseif (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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'POST',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
/**
* Operation subsidiariesAll
*
- * List Subsidiaries
+ * List Subsidiaries
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\GetSubsidiariesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function subsidiariesAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ list($response) = $this->subsidiariesAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields);
+ return $response;
+ }
+
+ /**
+ * Operation subsidiariesAllWithHttpInfo
+ *
+ * List Subsidiaries
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\GetSubsidiariesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function subsidiariesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ $request = $this->subsidiariesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\GetSubsidiariesResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetSubsidiariesResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\GetSubsidiariesResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\GetSubsidiariesResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation subsidiariesAllAsync
+ *
+ * List Subsidiaries
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ return $this->subsidiariesAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation subsidiariesAllAsyncWithHttpInfo
+ *
+ * List Subsidiaries
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ $returnType = '\Apideck\Client\Model\GetSubsidiariesResponse';
+ $request = $this->subsidiariesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields);
+
+ 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();
+ }
+
+ 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 'subsidiariesAll'
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function subsidiariesAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ {
+ if ($limit !== null && $limit > 200) {
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.subsidiariesAll, must be smaller than or equal to 200.');
+ }
+ if ($limit !== null && $limit < 1) {
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.subsidiariesAll, must be bigger than or equal to 1.');
+ }
+
+
+ $resourcePath = '/accounting/subsidiaries';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+ // query params
+
+ if ('raw' === 'cursor') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($cursor)) {
+ foreach($cursor as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['cursor'] = $cursor ? 'true' : 'false';
+ }
+ }
+
+
+ if ($cursor !== null && 'sort' === 'cursor') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($cursor !== null && 'filter' === 'cursor') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($cursor !== null && !('cursor' === 'raw' || 'cursor' === 'sort' || 'cursor' === 'filter')) {
+ if('form' === 'form' && is_array($cursor)) {
+ foreach($cursor as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['cursor'] = $cursor;
+ }
+ }
+ // query params
+
+ if ('raw' === 'limit') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($limit)) {
+ foreach($limit as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['limit'] = $limit ? 'true' : 'false';
+ }
+ }
+
+
+ if ($limit !== null && 'sort' === 'limit') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($limit !== null && 'filter' === 'limit') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($limit !== null && !('limit' === 'raw' || 'limit' === 'sort' || 'limit' === 'filter')) {
+ if('form' === 'form' && is_array($limit)) {
+ foreach($limit as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['limit'] = $limit;
+ }
+ }
+ // query params
+
+ if ('raw' === 'fields') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields ? 'true' : 'false';
+ }
+ }
+
+
+ if ($fields !== null && 'sort' === 'fields') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($fields !== null && 'filter' === 'fields') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'GET',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation subsidiariesDelete
+ *
+ * Delete Subsidiary
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\DeleteSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function subsidiariesDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ list($response) = $this->subsidiariesDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ return $response;
+ }
+
+ /**
+ * Operation subsidiariesDeleteWithHttpInfo
+ *
+ * Delete Subsidiary
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\DeleteSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function subsidiariesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $request = $this->subsidiariesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\DeleteSubsidiaryResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteSubsidiaryResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\DeleteSubsidiaryResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\DeleteSubsidiaryResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation subsidiariesDeleteAsync
+ *
+ * Delete Subsidiary
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ return $this->subsidiariesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation subsidiariesDeleteAsyncWithHttpInfo
+ *
+ * Delete Subsidiary
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function subsidiariesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $returnType = '\Apideck\Client\Model\DeleteSubsidiaryResponse';
+ $request = $this->subsidiariesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+ }
+
+ 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 'subsidiariesDelete'
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function subsidiariesDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ // verify the required parameter 'id' is set
+ if ($id === null || (is_array($id) && count($id) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $id when calling subsidiariesDelete'
+ );
+ }
+
+ $resourcePath = '/accounting/subsidiaries/{id}';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+ // path params
+ if ($id !== null) {
+ $resourcePath = str_replace(
+ '{' . 'id' . '}',
+ ObjectSerializer::toPathValue($id),
+ $resourcePath
+ );
+ }
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'DELETE',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation subsidiariesOne
+ *
+ * Get Subsidiary
*
- * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
- * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
- * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetSubsidiariesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\GetSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function subsidiariesAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ public function subsidiariesOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- list($response) = $this->subsidiariesAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields);
+ list($response) = $this->subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $response;
}
/**
- * Operation subsidiariesAllWithHttpInfo
+ * Operation subsidiariesOneWithHttpInfo
*
- * List Subsidiaries
+ * Get Subsidiary
*
- * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
- * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
- * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetSubsidiariesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\GetSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function subsidiariesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ public function subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $request = $this->subsidiariesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields);
+ $request = $this->subsidiariesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
try {
$options = $this->createHttpClientOption();
@@ -25600,14 +27123,14 @@ public function subsidiariesAllWithHttpInfo($raw = false, $x_apideck_consumer_id
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetSubsidiariesResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\GetSubsidiaryResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetSubsidiariesResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetSubsidiaryResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -25685,7 +27208,7 @@ public function subsidiariesAllWithHttpInfo($raw = false, $x_apideck_consumer_id
];
}
- $returnType = '\Apideck\Client\Model\GetSubsidiariesResponse';
+ $returnType = '\Apideck\Client\Model\GetSubsidiaryResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -25703,7 +27226,7 @@ public function subsidiariesAllWithHttpInfo($raw = false, $x_apideck_consumer_id
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetSubsidiariesResponse',
+ '\Apideck\Client\Model\GetSubsidiaryResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -25762,24 +27285,23 @@ public function subsidiariesAllWithHttpInfo($raw = false, $x_apideck_consumer_id
}
/**
- * Operation subsidiariesAllAsync
+ * Operation subsidiariesOneAsync
*
- * List Subsidiaries
+ * Get Subsidiary
*
- * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
- * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
- * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function subsidiariesAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ public function subsidiariesOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- return $this->subsidiariesAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields)
+ return $this->subsidiariesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
->then(
function ($response) {
return $response[0];
@@ -25788,25 +27310,24 @@ function ($response) {
}
/**
- * Operation subsidiariesAllAsyncWithHttpInfo
+ * Operation subsidiariesOneAsyncWithHttpInfo
*
- * List Subsidiaries
+ * Get Subsidiary
*
- * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
- * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
- * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function subsidiariesAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ public function subsidiariesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $returnType = '\Apideck\Client\Model\GetSubsidiariesResponse';
- $request = $this->subsidiariesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields);
+ $returnType = '\Apideck\Client\Model\GetSubsidiaryResponse';
+ $request = $this->subsidiariesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -25842,30 +27363,28 @@ function ($exception) {
}
/**
- * Create request for operation 'subsidiariesAll'
+ * Create request for operation 'subsidiariesOne'
*
- * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
- * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
- * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function subsidiariesAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null)
+ public function subsidiariesOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- if ($limit !== null && $limit > 200) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.subsidiariesAll, must be smaller than or equal to 200.');
- }
- if ($limit !== null && $limit < 1) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.subsidiariesAll, must be bigger than or equal to 1.');
+ // verify the required parameter 'id' is set
+ if ($id === null || (is_array($id) && count($id) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $id when calling subsidiariesOne'
+ );
}
-
- $resourcePath = '/accounting/subsidiaries';
+ $resourcePath = '/accounting/subsidiaries/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -25914,86 +27433,6 @@ public function subsidiariesAllRequest($raw = false, $x_apideck_consumer_id = nu
}
// query params
- if ('raw' === 'cursor') {
- // Support for raw as true/false parameter
- if('form' === 'form' && is_array($cursor)) {
- foreach($cursor as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['cursor'] = $cursor ? 'true' : 'false';
- }
- }
-
-
- if ($cursor !== null && 'sort' === 'cursor') {
- // Support for sort options
- $sort_data = $sort->jsonSerialize();
- foreach($sort_data as $key => $value) {
- $queryParams['sort['.$key.']'] = $value;
- }
- }
-
- if ($cursor !== null && 'filter' === 'cursor') {
- // Support for filter options
- $filter_data = $filter->jsonSerialize();
- foreach($filter_data as $key => $value) {
- $queryParams['filter['.$key.']'] = $value;
- }
- }
- if ($cursor !== null && !('cursor' === 'raw' || 'cursor' === 'sort' || 'cursor' === 'filter')) {
- if('form' === 'form' && is_array($cursor)) {
- foreach($cursor as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['cursor'] = $cursor;
- }
- }
- // query params
-
- if ('raw' === 'limit') {
- // Support for raw as true/false parameter
- if('form' === 'form' && is_array($limit)) {
- foreach($limit as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['limit'] = $limit ? 'true' : 'false';
- }
- }
-
-
- if ($limit !== null && 'sort' === 'limit') {
- // Support for sort options
- $sort_data = $sort->jsonSerialize();
- foreach($sort_data as $key => $value) {
- $queryParams['sort['.$key.']'] = $value;
- }
- }
-
- if ($limit !== null && 'filter' === 'limit') {
- // Support for filter options
- $filter_data = $filter->jsonSerialize();
- foreach($filter_data as $key => $value) {
- $queryParams['filter['.$key.']'] = $value;
- }
- }
- if ($limit !== null && !('limit' === 'raw' || 'limit' === 'sort' || 'limit' === 'filter')) {
- if('form' === 'form' && is_array($limit)) {
- foreach($limit as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['limit'] = $limit;
- }
- }
- // query params
-
if ('raw' === 'fields') {
// Support for raw as true/false parameter
if('form' === 'form' && is_array($fields)) {
@@ -26046,6 +27485,14 @@ public function subsidiariesAllRequest($raw = false, $x_apideck_consumer_id = nu
$headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
}
+ // path params
+ if ($id !== null) {
+ $resourcePath = str_replace(
+ '{' . 'id' . '}',
+ ObjectSerializer::toPathValue($id),
+ $resourcePath
+ );
+ }
if ($multipart) {
@@ -26111,46 +27558,46 @@ public function subsidiariesAllRequest($raw = false, $x_apideck_consumer_id = nu
}
/**
- * Operation subsidiariesOne
+ * Operation subsidiariesUpdate
*
- * Get Subsidiary
+ * Update Subsidiary
*
* @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary subsidiary (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
- * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\UpdateSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function subsidiariesOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function subsidiariesUpdate($id, $subsidiary, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- list($response) = $this->subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ list($response) = $this->subsidiariesUpdateWithHttpInfo($id, $subsidiary, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $response;
}
/**
- * Operation subsidiariesOneWithHttpInfo
+ * Operation subsidiariesUpdateWithHttpInfo
*
- * Get Subsidiary
+ * Update Subsidiary
*
* @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
- * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\UpdateSubsidiaryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function subsidiariesUpdateWithHttpInfo($id, $subsidiary, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $request = $this->subsidiariesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $request = $this->subsidiariesUpdateRequest($id, $subsidiary, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
try {
$options = $this->createHttpClientOption();
@@ -26189,14 +27636,14 @@ public function subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id = null,
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetSubsidiaryResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\UpdateSubsidiaryResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetSubsidiaryResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateSubsidiaryResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -26274,7 +27721,7 @@ public function subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id = null,
];
}
- $returnType = '\Apideck\Client\Model\GetSubsidiaryResponse';
+ $returnType = '\Apideck\Client\Model\UpdateSubsidiaryResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -26292,7 +27739,7 @@ public function subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id = null,
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetSubsidiaryResponse',
+ '\Apideck\Client\Model\UpdateSubsidiaryResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -26351,23 +27798,23 @@ public function subsidiariesOneWithHttpInfo($id, $x_apideck_consumer_id = null,
}
/**
- * Operation subsidiariesOneAsync
+ * Operation subsidiariesUpdateAsync
*
- * Get Subsidiary
+ * Update Subsidiary
*
* @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
- * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function subsidiariesOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function subsidiariesUpdateAsync($id, $subsidiary, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- return $this->subsidiariesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
+ return $this->subsidiariesUpdateAsyncWithHttpInfo($id, $subsidiary, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
->then(
function ($response) {
return $response[0];
@@ -26376,24 +27823,24 @@ function ($response) {
}
/**
- * Operation subsidiariesOneAsyncWithHttpInfo
+ * Operation subsidiariesUpdateAsyncWithHttpInfo
*
- * Get Subsidiary
+ * Update Subsidiary
*
* @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
- * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function subsidiariesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function subsidiariesUpdateAsyncWithHttpInfo($id, $subsidiary, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $returnType = '\Apideck\Client\Model\GetSubsidiaryResponse';
- $request = $this->subsidiariesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $returnType = '\Apideck\Client\Model\UpdateSubsidiaryResponse';
+ $request = $this->subsidiariesUpdateRequest($id, $subsidiary, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -26429,24 +27876,30 @@ function ($exception) {
}
/**
- * Create request for operation 'subsidiariesOne'
+ * Create request for operation 'subsidiariesUpdate'
*
* @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Subsidiary $subsidiary (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
- * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function subsidiariesOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function subsidiariesUpdateRequest($id, $subsidiary, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling subsidiariesOne'
+ 'Missing the required parameter $id when calling subsidiariesUpdate'
+ );
+ }
+ // verify the required parameter 'subsidiary' is set
+ if ($subsidiary === null || (is_array($subsidiary) && count($subsidiary) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $subsidiary when calling subsidiariesUpdate'
);
}
@@ -26497,46 +27950,6 @@ public function subsidiariesOneRequest($id, $x_apideck_consumer_id = null, $x_ap
$queryParams['raw'] = $raw;
}
}
- // query params
-
- if ('raw' === 'fields') {
- // Support for raw as true/false parameter
- if('form' === 'form' && is_array($fields)) {
- foreach($fields as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['fields'] = $fields ? 'true' : 'false';
- }
- }
-
-
- if ($fields !== null && 'sort' === 'fields') {
- // Support for sort options
- $sort_data = $sort->jsonSerialize();
- foreach($sort_data as $key => $value) {
- $queryParams['sort['.$key.']'] = $value;
- }
- }
-
- if ($fields !== null && 'filter' === 'fields') {
- // Support for filter options
- $filter_data = $filter->jsonSerialize();
- foreach($filter_data as $key => $value) {
- $queryParams['filter['.$key.']'] = $value;
- }
- }
- if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
- if('form' === 'form' && is_array($fields)) {
- foreach($fields as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['fields'] = $fields;
- }
- }
// header params
if ($x_apideck_consumer_id !== null) {
@@ -26568,12 +27981,18 @@ public function subsidiariesOneRequest($id, $x_apideck_consumer_id = null, $x_ap
} else {
$headers = $this->headerSelector->selectHeaders(
['application/json'],
- []
+ ['application/json']
);
}
// for model (json/xml)
- if (count($formParams) > 0) {
+ if (isset($subsidiary)) {
+ if ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($subsidiary));
+ } else {
+ $httpBody = $subsidiary;
+ }
+ } elseif (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
@@ -26616,7 +28035,7 @@ public function subsidiariesOneRequest($id, $x_apideck_consumer_id = null, $x_ap
$query = \GuzzleHttp\Psr7\Query::build($queryParams);
return new Request(
- 'GET',
+ 'PATCH',
$this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
diff --git a/src/gen/lib/Api/AtsApi.php b/src/gen/lib/Api/AtsApi.php
index 2d5d93bca3..180465ba54 100644
--- a/src/gen/lib/Api/AtsApi.php
+++ b/src/gen/lib/Api/AtsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/ConnectorApi.php b/src/gen/lib/Api/ConnectorApi.php
index ebfd78d497..4440525fc8 100644
--- a/src/gen/lib/Api/ConnectorApi.php
+++ b/src/gen/lib/Api/ConnectorApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/CrmApi.php b/src/gen/lib/Api/CrmApi.php
index 4731996349..02db5ac521 100644
--- a/src/gen/lib/Api/CrmApi.php
+++ b/src/gen/lib/Api/CrmApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/EcommerceApi.php b/src/gen/lib/Api/EcommerceApi.php
index 350b43ce64..431bd32575 100644
--- a/src/gen/lib/Api/EcommerceApi.php
+++ b/src/gen/lib/Api/EcommerceApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/FileStorageApi.php b/src/gen/lib/Api/FileStorageApi.php
index 976ca43ec3..1a928f413d 100644
--- a/src/gen/lib/Api/FileStorageApi.php
+++ b/src/gen/lib/Api/FileStorageApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/HrisApi.php b/src/gen/lib/Api/HrisApi.php
index 88cf7c52a8..27b8ab87fd 100644
--- a/src/gen/lib/Api/HrisApi.php
+++ b/src/gen/lib/Api/HrisApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/IssueTrackingApi.php b/src/gen/lib/Api/IssueTrackingApi.php
index 73a3c1f78c..163bb6acc6 100644
--- a/src/gen/lib/Api/IssueTrackingApi.php
+++ b/src/gen/lib/Api/IssueTrackingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/LeadApi.php b/src/gen/lib/Api/LeadApi.php
index 56fcd1ef63..a3c14eb403 100644
--- a/src/gen/lib/Api/LeadApi.php
+++ b/src/gen/lib/Api/LeadApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/PosApi.php b/src/gen/lib/Api/PosApi.php
index 375c6d9cdf..c071cd5c0b 100644
--- a/src/gen/lib/Api/PosApi.php
+++ b/src/gen/lib/Api/PosApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/SmsApi.php b/src/gen/lib/Api/SmsApi.php
index 7e37d7652c..f754393f94 100644
--- a/src/gen/lib/Api/SmsApi.php
+++ b/src/gen/lib/Api/SmsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/VaultApi.php b/src/gen/lib/Api/VaultApi.php
index 035d09f72e..3b06823efd 100644
--- a/src/gen/lib/Api/VaultApi.php
+++ b/src/gen/lib/Api/VaultApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/WebhookApi.php b/src/gen/lib/Api/WebhookApi.php
index f7fcdaffdb..e9fcf90f4a 100644
--- a/src/gen/lib/Api/WebhookApi.php
+++ b/src/gen/lib/Api/WebhookApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ApiException.php b/src/gen/lib/ApiException.php
index 1613d958cf..4a4efc8f38 100644
--- a/src/gen/lib/ApiException.php
+++ b/src/gen/lib/ApiException.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Configuration.php b/src/gen/lib/Configuration.php
index 39e950263d..46c846af18 100644
--- a/src/gen/lib/Configuration.php
+++ b/src/gen/lib/Configuration.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -447,7 +447,7 @@ public static function toDebugReport()
$report = 'PHP SDK (Apideck\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: 10.2.1' . PHP_EOL;
+ $report .= ' The version of the OpenAPI document: 10.2.2' . PHP_EOL;
$report .= ' SDK Package Version: 3.2.0' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
diff --git a/src/gen/lib/HeaderSelector.php b/src/gen/lib/HeaderSelector.php
index 5c26efbcde..ce0c3a2702 100644
--- a/src/gen/lib/HeaderSelector.php
+++ b/src/gen/lib/HeaderSelector.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingEventType.php b/src/gen/lib/Model/AccountingEventType.php
index 559087c6a4..9cf9b83b5d 100644
--- a/src/gen/lib/Model/AccountingEventType.php
+++ b/src/gen/lib/Model/AccountingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivitiesFilter.php b/src/gen/lib/Model/ActivitiesFilter.php
index 83fde5261c..88e6a1ff6f 100644
--- a/src/gen/lib/Model/ActivitiesFilter.php
+++ b/src/gen/lib/Model/ActivitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivitiesSort.php b/src/gen/lib/Model/ActivitiesSort.php
index c87562a5df..4bdf2ac5ad 100644
--- a/src/gen/lib/Model/ActivitiesSort.php
+++ b/src/gen/lib/Model/ActivitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Activity.php b/src/gen/lib/Model/Activity.php
index 9b917dcb70..f7539ff180 100644
--- a/src/gen/lib/Model/Activity.php
+++ b/src/gen/lib/Model/Activity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivityAttendee.php b/src/gen/lib/Model/ActivityAttendee.php
index 1a42b61446..d1cb779087 100644
--- a/src/gen/lib/Model/ActivityAttendee.php
+++ b/src/gen/lib/Model/ActivityAttendee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Address.php b/src/gen/lib/Model/Address.php
index c11e446933..e943d38cfc 100644
--- a/src/gen/lib/Model/Address.php
+++ b/src/gen/lib/Model/Address.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Api.php b/src/gen/lib/Model/Api.php
index fd821ce42d..b52a7bb787 100644
--- a/src/gen/lib/Model/Api.php
+++ b/src/gen/lib/Model/Api.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResource.php b/src/gen/lib/Model/ApiResource.php
index 6d102975df..592912025b 100644
--- a/src/gen/lib/Model/ApiResource.php
+++ b/src/gen/lib/Model/ApiResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverage.php b/src/gen/lib/Model/ApiResourceCoverage.php
index 3dad57b00c..970af10464 100644
--- a/src/gen/lib/Model/ApiResourceCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverageCoverage.php b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
index 972f782a73..0cbea7beb6 100644
--- a/src/gen/lib/Model/ApiResourceCoverageCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceLinkedResources.php b/src/gen/lib/Model/ApiResourceLinkedResources.php
index 6b9d65342f..55c293a66e 100644
--- a/src/gen/lib/Model/ApiResourceLinkedResources.php
+++ b/src/gen/lib/Model/ApiResourceLinkedResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResources.php b/src/gen/lib/Model/ApiResources.php
index 9b7a2e7d0c..20da7f9021 100644
--- a/src/gen/lib/Model/ApiResources.php
+++ b/src/gen/lib/Model/ApiResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiStatus.php b/src/gen/lib/Model/ApiStatus.php
index 2517eb74cf..e787face01 100644
--- a/src/gen/lib/Model/ApiStatus.php
+++ b/src/gen/lib/Model/ApiStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApisFilter.php b/src/gen/lib/Model/ApisFilter.php
index 029560d179..9e0898aebe 100644
--- a/src/gen/lib/Model/ApisFilter.php
+++ b/src/gen/lib/Model/ApisFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Applicant.php b/src/gen/lib/Model/Applicant.php
index a8430bd178..d3e39c508a 100644
--- a/src/gen/lib/Model/Applicant.php
+++ b/src/gen/lib/Model/Applicant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantSocialLinks.php b/src/gen/lib/Model/ApplicantSocialLinks.php
index f0394f242a..6b4a6dbcbe 100644
--- a/src/gen/lib/Model/ApplicantSocialLinks.php
+++ b/src/gen/lib/Model/ApplicantSocialLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantWebsites.php b/src/gen/lib/Model/ApplicantWebsites.php
index 94b29362dd..ea4acb55da 100644
--- a/src/gen/lib/Model/ApplicantWebsites.php
+++ b/src/gen/lib/Model/ApplicantWebsites.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantsFilter.php b/src/gen/lib/Model/ApplicantsFilter.php
index f816408b5a..21a5f4e7c6 100644
--- a/src/gen/lib/Model/ApplicantsFilter.php
+++ b/src/gen/lib/Model/ApplicantsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Application.php b/src/gen/lib/Model/Application.php
index 30c50574cc..9a59c7505d 100644
--- a/src/gen/lib/Model/Application.php
+++ b/src/gen/lib/Model/Application.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicationStage.php b/src/gen/lib/Model/ApplicationStage.php
index 22b1527a9b..21723108ee 100644
--- a/src/gen/lib/Model/ApplicationStage.php
+++ b/src/gen/lib/Model/ApplicationStage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Assignee.php b/src/gen/lib/Model/Assignee.php
index 3dbd162d47..a64131212b 100644
--- a/src/gen/lib/Model/Assignee.php
+++ b/src/gen/lib/Model/Assignee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsActivity.php b/src/gen/lib/Model/AtsActivity.php
index 55d3fe5442..008a96b2b2 100644
--- a/src/gen/lib/Model/AtsActivity.php
+++ b/src/gen/lib/Model/AtsActivity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsEventType.php b/src/gen/lib/Model/AtsEventType.php
index 478b3195ba..fc94840c0e 100644
--- a/src/gen/lib/Model/AtsEventType.php
+++ b/src/gen/lib/Model/AtsEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AuthType.php b/src/gen/lib/Model/AuthType.php
index 3d249a4406..b94ea59366 100644
--- a/src/gen/lib/Model/AuthType.php
+++ b/src/gen/lib/Model/AuthType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BadRequestResponse.php b/src/gen/lib/Model/BadRequestResponse.php
index a20e8191d4..65cce5dd14 100644
--- a/src/gen/lib/Model/BadRequestResponse.php
+++ b/src/gen/lib/Model/BadRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheet.php b/src/gen/lib/Model/BalanceSheet.php
index a325f5c47a..c1a7f019de 100644
--- a/src/gen/lib/Model/BalanceSheet.php
+++ b/src/gen/lib/Model/BalanceSheet.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssets.php b/src/gen/lib/Model/BalanceSheetAssets.php
index 425912c95b..9a30e8df60 100644
--- a/src/gen/lib/Model/BalanceSheetAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
index 47e80cab03..7964a16e3d 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
index a9256199af..2b863fbc67 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
index 6f5d3145c4..ef0fdcb9a8 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
index e5c2e32d73..80f59b4a87 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquity.php b/src/gen/lib/Model/BalanceSheetEquity.php
index 42576bd8aa..b47f8d178b 100644
--- a/src/gen/lib/Model/BalanceSheetEquity.php
+++ b/src/gen/lib/Model/BalanceSheetEquity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquityItems.php b/src/gen/lib/Model/BalanceSheetEquityItems.php
index f033a106bd..85aa484d38 100644
--- a/src/gen/lib/Model/BalanceSheetEquityItems.php
+++ b/src/gen/lib/Model/BalanceSheetEquityItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetFilter.php b/src/gen/lib/Model/BalanceSheetFilter.php
index bc69d90313..bb61560cb5 100644
--- a/src/gen/lib/Model/BalanceSheetFilter.php
+++ b/src/gen/lib/Model/BalanceSheetFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilities.php b/src/gen/lib/Model/BalanceSheetLiabilities.php
index d0c576f2c7..50aa1861c1 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilities.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilities.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
index ef7af6d2e1..720348fb22 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BankAccount.php b/src/gen/lib/Model/BankAccount.php
index c4a17c1f52..483fb93f33 100644
--- a/src/gen/lib/Model/BankAccount.php
+++ b/src/gen/lib/Model/BankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Benefit.php b/src/gen/lib/Model/Benefit.php
index 1efe1dcd2f..5d56bdbe51 100644
--- a/src/gen/lib/Model/Benefit.php
+++ b/src/gen/lib/Model/Benefit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Bill.php b/src/gen/lib/Model/Bill.php
index 2c05d08e25..7bf1c2a4c5 100644
--- a/src/gen/lib/Model/Bill.php
+++ b/src/gen/lib/Model/Bill.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillLineItem.php b/src/gen/lib/Model/BillLineItem.php
index 56ae31448f..076a9b85c2 100644
--- a/src/gen/lib/Model/BillLineItem.php
+++ b/src/gen/lib/Model/BillLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsFilter.php b/src/gen/lib/Model/BillsFilter.php
index 278d1cfb07..cca8967e9c 100644
--- a/src/gen/lib/Model/BillsFilter.php
+++ b/src/gen/lib/Model/BillsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsSort.php b/src/gen/lib/Model/BillsSort.php
index 4e2f147dca..a8a583c6b8 100644
--- a/src/gen/lib/Model/BillsSort.php
+++ b/src/gen/lib/Model/BillsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Branch.php b/src/gen/lib/Model/Branch.php
index f8d6eacd51..5ae725bcd3 100644
--- a/src/gen/lib/Model/Branch.php
+++ b/src/gen/lib/Model/Branch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CashDetails.php b/src/gen/lib/Model/CashDetails.php
index c27f9fc3a7..db6b1bba2c 100644
--- a/src/gen/lib/Model/CashDetails.php
+++ b/src/gen/lib/Model/CashDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Collection.php b/src/gen/lib/Model/Collection.php
index 8e6624e766..5e895541b8 100644
--- a/src/gen/lib/Model/Collection.php
+++ b/src/gen/lib/Model/Collection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTag.php b/src/gen/lib/Model/CollectionTag.php
index 20211e4a9c..2c23483c9d 100644
--- a/src/gen/lib/Model/CollectionTag.php
+++ b/src/gen/lib/Model/CollectionTag.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTicketComment.php b/src/gen/lib/Model/CollectionTicketComment.php
index f3e2077371..c5666310c5 100644
--- a/src/gen/lib/Model/CollectionTicketComment.php
+++ b/src/gen/lib/Model/CollectionTicketComment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionUser.php b/src/gen/lib/Model/CollectionUser.php
index fdaefb1697..71ec4a7307 100644
--- a/src/gen/lib/Model/CollectionUser.php
+++ b/src/gen/lib/Model/CollectionUser.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionsSort.php b/src/gen/lib/Model/CollectionsSort.php
index 3530768dbd..24b63aecd5 100644
--- a/src/gen/lib/Model/CollectionsSort.php
+++ b/src/gen/lib/Model/CollectionsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CommentsSort.php b/src/gen/lib/Model/CommentsSort.php
index 0997e4cfd0..4a85fe8e44 100644
--- a/src/gen/lib/Model/CommentsSort.php
+++ b/src/gen/lib/Model/CommentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesFilter.php b/src/gen/lib/Model/CompaniesFilter.php
index a5a5430ca6..f67801c156 100644
--- a/src/gen/lib/Model/CompaniesFilter.php
+++ b/src/gen/lib/Model/CompaniesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesSort.php b/src/gen/lib/Model/CompaniesSort.php
index 77fe20792d..2f6017d4bd 100644
--- a/src/gen/lib/Model/CompaniesSort.php
+++ b/src/gen/lib/Model/CompaniesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Company.php b/src/gen/lib/Model/Company.php
index eda5c3f6f5..69acda5a98 100644
--- a/src/gen/lib/Model/Company.php
+++ b/src/gen/lib/Model/Company.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyInfo.php b/src/gen/lib/Model/CompanyInfo.php
index d15abf375f..733f15d8fd 100644
--- a/src/gen/lib/Model/CompanyInfo.php
+++ b/src/gen/lib/Model/CompanyInfo.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyRowType.php b/src/gen/lib/Model/CompanyRowType.php
index db58041752..aa49b690b5 100644
--- a/src/gen/lib/Model/CompanyRowType.php
+++ b/src/gen/lib/Model/CompanyRowType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Compensation.php b/src/gen/lib/Model/Compensation.php
index 2569d8421c..dee3292c70 100644
--- a/src/gen/lib/Model/Compensation.php
+++ b/src/gen/lib/Model/Compensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connection.php b/src/gen/lib/Model/Connection.php
index 2e12d7f803..6be138ff17 100644
--- a/src/gen/lib/Model/Connection.php
+++ b/src/gen/lib/Model/Connection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionConfiguration.php b/src/gen/lib/Model/ConnectionConfiguration.php
index c9b7b5af12..0b7cc27a69 100644
--- a/src/gen/lib/Model/ConnectionConfiguration.php
+++ b/src/gen/lib/Model/ConnectionConfiguration.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionDefaults.php b/src/gen/lib/Model/ConnectionDefaults.php
index c474f887e0..3b2b8c2f47 100644
--- a/src/gen/lib/Model/ConnectionDefaults.php
+++ b/src/gen/lib/Model/ConnectionDefaults.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportData.php b/src/gen/lib/Model/ConnectionImportData.php
index 3858ff9ff9..7682c889b9 100644
--- a/src/gen/lib/Model/ConnectionImportData.php
+++ b/src/gen/lib/Model/ConnectionImportData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportDataCredentials.php b/src/gen/lib/Model/ConnectionImportDataCredentials.php
index 2bae2cb207..e41905d382 100644
--- a/src/gen/lib/Model/ConnectionImportDataCredentials.php
+++ b/src/gen/lib/Model/ConnectionImportDataCredentials.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionMetadata.php b/src/gen/lib/Model/ConnectionMetadata.php
index c1e6413fc1..664033ee61 100644
--- a/src/gen/lib/Model/ConnectionMetadata.php
+++ b/src/gen/lib/Model/ConnectionMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionState.php b/src/gen/lib/Model/ConnectionState.php
index 3aa1c794f3..daed406303 100644
--- a/src/gen/lib/Model/ConnectionState.php
+++ b/src/gen/lib/Model/ConnectionState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionWebhook.php b/src/gen/lib/Model/ConnectionWebhook.php
index 2107f108a2..bd5b17e118 100644
--- a/src/gen/lib/Model/ConnectionWebhook.php
+++ b/src/gen/lib/Model/ConnectionWebhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connector.php b/src/gen/lib/Model/Connector.php
index 9f4396f826..9e618fa585 100644
--- a/src/gen/lib/Model/Connector.php
+++ b/src/gen/lib/Model/Connector.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorDoc.php b/src/gen/lib/Model/ConnectorDoc.php
index cad3465d28..d66b367089 100644
--- a/src/gen/lib/Model/ConnectorDoc.php
+++ b/src/gen/lib/Model/ConnectorDoc.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorEvent.php b/src/gen/lib/Model/ConnectorEvent.php
index 5fcad74b57..5fc13a5702 100644
--- a/src/gen/lib/Model/ConnectorEvent.php
+++ b/src/gen/lib/Model/ConnectorEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes.php b/src/gen/lib/Model/ConnectorOauthScopes.php
index ce29674ec3..e62e8bef38 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes1.php b/src/gen/lib/Model/ConnectorOauthScopes1.php
index e426216680..798443f6f9 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes1.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorResource.php b/src/gen/lib/Model/ConnectorResource.php
index 25516c016e..4006739083 100644
--- a/src/gen/lib/Model/ConnectorResource.php
+++ b/src/gen/lib/Model/ConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorSetting.php b/src/gen/lib/Model/ConnectorSetting.php
index f8de305a29..3ca0f0051e 100644
--- a/src/gen/lib/Model/ConnectorSetting.php
+++ b/src/gen/lib/Model/ConnectorSetting.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorStatus.php b/src/gen/lib/Model/ConnectorStatus.php
index c73a1b3de0..89784c1488 100644
--- a/src/gen/lib/Model/ConnectorStatus.php
+++ b/src/gen/lib/Model/ConnectorStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorTlsSupport.php b/src/gen/lib/Model/ConnectorTlsSupport.php
index f3cc0b9def..fd3ac59815 100644
--- a/src/gen/lib/Model/ConnectorTlsSupport.php
+++ b/src/gen/lib/Model/ConnectorTlsSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorUnifiedApis.php b/src/gen/lib/Model/ConnectorUnifiedApis.php
index 5ce0be9dab..8c856697e5 100644
--- a/src/gen/lib/Model/ConnectorUnifiedApis.php
+++ b/src/gen/lib/Model/ConnectorUnifiedApis.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorsFilter.php b/src/gen/lib/Model/ConnectorsFilter.php
index 2405221870..b2b243fc52 100644
--- a/src/gen/lib/Model/ConnectorsFilter.php
+++ b/src/gen/lib/Model/ConnectorsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Consumer.php b/src/gen/lib/Model/Consumer.php
index e12668d635..d3b602d71f 100644
--- a/src/gen/lib/Model/Consumer.php
+++ b/src/gen/lib/Model/Consumer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerConnection.php b/src/gen/lib/Model/ConsumerConnection.php
index 989360faef..76891dd5bd 100644
--- a/src/gen/lib/Model/ConsumerConnection.php
+++ b/src/gen/lib/Model/ConsumerConnection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerMetadata.php b/src/gen/lib/Model/ConsumerMetadata.php
index 4c171a31ba..7d4c0d3154 100644
--- a/src/gen/lib/Model/ConsumerMetadata.php
+++ b/src/gen/lib/Model/ConsumerMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
index 6afa2c30bc..255f8b124e 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
index e8d473a2f0..5cc700baa9 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Contact.php b/src/gen/lib/Model/Contact.php
index e5c4295d1b..5d6aa55f13 100644
--- a/src/gen/lib/Model/Contact.php
+++ b/src/gen/lib/Model/Contact.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsFilter.php b/src/gen/lib/Model/ContactsFilter.php
index 9ec67b9901..b6ea6d0cb2 100644
--- a/src/gen/lib/Model/ContactsFilter.php
+++ b/src/gen/lib/Model/ContactsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsSort.php b/src/gen/lib/Model/ContactsSort.php
index c019ecea29..d02e0e4040 100644
--- a/src/gen/lib/Model/ContactsSort.php
+++ b/src/gen/lib/Model/ContactsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CopyFolderRequest.php b/src/gen/lib/Model/CopyFolderRequest.php
index 009bc871bf..9b79fe89d5 100644
--- a/src/gen/lib/Model/CopyFolderRequest.php
+++ b/src/gen/lib/Model/CopyFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateActivityResponse.php b/src/gen/lib/Model/CreateActivityResponse.php
index 2f65df1d27..6aac924087 100644
--- a/src/gen/lib/Model/CreateActivityResponse.php
+++ b/src/gen/lib/Model/CreateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicantResponse.php b/src/gen/lib/Model/CreateApplicantResponse.php
index 27e2c7bf8c..8833553536 100644
--- a/src/gen/lib/Model/CreateApplicantResponse.php
+++ b/src/gen/lib/Model/CreateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicationResponse.php b/src/gen/lib/Model/CreateApplicationResponse.php
index 660f8fd9f1..c9a749c4e4 100644
--- a/src/gen/lib/Model/CreateApplicationResponse.php
+++ b/src/gen/lib/Model/CreateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateBillResponse.php b/src/gen/lib/Model/CreateBillResponse.php
index 01f07acb0b..a0a42e2239 100644
--- a/src/gen/lib/Model/CreateBillResponse.php
+++ b/src/gen/lib/Model/CreateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCommentResponse.php b/src/gen/lib/Model/CreateCommentResponse.php
index f047dd7798..54a582019a 100644
--- a/src/gen/lib/Model/CreateCommentResponse.php
+++ b/src/gen/lib/Model/CreateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCompanyResponse.php b/src/gen/lib/Model/CreateCompanyResponse.php
index a152466e46..67e2fb399f 100644
--- a/src/gen/lib/Model/CreateCompanyResponse.php
+++ b/src/gen/lib/Model/CreateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConnectionResponse.php b/src/gen/lib/Model/CreateConnectionResponse.php
index ebb9482532..9e67a78fc5 100644
--- a/src/gen/lib/Model/CreateConnectionResponse.php
+++ b/src/gen/lib/Model/CreateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConsumerResponse.php b/src/gen/lib/Model/CreateConsumerResponse.php
index eb9c433ef6..f1285acdcd 100644
--- a/src/gen/lib/Model/CreateConsumerResponse.php
+++ b/src/gen/lib/Model/CreateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateContactResponse.php b/src/gen/lib/Model/CreateContactResponse.php
index c4318e3ddb..f35d3ca555 100644
--- a/src/gen/lib/Model/CreateContactResponse.php
+++ b/src/gen/lib/Model/CreateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCreditNoteResponse.php b/src/gen/lib/Model/CreateCreditNoteResponse.php
index 0e59cb5c7b..a1006327e8 100644
--- a/src/gen/lib/Model/CreateCreditNoteResponse.php
+++ b/src/gen/lib/Model/CreateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingRequest.php b/src/gen/lib/Model/CreateCustomMappingRequest.php
index 6f2db6525d..272031766d 100644
--- a/src/gen/lib/Model/CreateCustomMappingRequest.php
+++ b/src/gen/lib/Model/CreateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingResponse.php b/src/gen/lib/Model/CreateCustomMappingResponse.php
index e25cdfd3b1..43b6075909 100644
--- a/src/gen/lib/Model/CreateCustomMappingResponse.php
+++ b/src/gen/lib/Model/CreateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomerResponse.php b/src/gen/lib/Model/CreateCustomerResponse.php
index 717e85199f..55321e43f5 100644
--- a/src/gen/lib/Model/CreateCustomerResponse.php
+++ b/src/gen/lib/Model/CreateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDepartmentResponse.php b/src/gen/lib/Model/CreateDepartmentResponse.php
index 62c8ab2aa2..3a4a7757b9 100644
--- a/src/gen/lib/Model/CreateDepartmentResponse.php
+++ b/src/gen/lib/Model/CreateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveGroupResponse.php b/src/gen/lib/Model/CreateDriveGroupResponse.php
index 3877f9a431..ffb5a94fe3 100644
--- a/src/gen/lib/Model/CreateDriveGroupResponse.php
+++ b/src/gen/lib/Model/CreateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveResponse.php b/src/gen/lib/Model/CreateDriveResponse.php
index 7d06f8706a..bc41f38d3c 100644
--- a/src/gen/lib/Model/CreateDriveResponse.php
+++ b/src/gen/lib/Model/CreateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
index 27af7c7bf8..bfdb2c63b6 100644
--- a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceOrderResponse.php b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
index 37dfa87ef5..555805d0e0 100644
--- a/src/gen/lib/Model/CreateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEmployeeResponse.php b/src/gen/lib/Model/CreateEmployeeResponse.php
index 79f519f492..160412c721 100644
--- a/src/gen/lib/Model/CreateEmployeeResponse.php
+++ b/src/gen/lib/Model/CreateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileRequest.php b/src/gen/lib/Model/CreateFileRequest.php
index 47616802b8..7fc889c35b 100644
--- a/src/gen/lib/Model/CreateFileRequest.php
+++ b/src/gen/lib/Model/CreateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileResponse.php b/src/gen/lib/Model/CreateFileResponse.php
index 390d95fa03..7d837d67d5 100644
--- a/src/gen/lib/Model/CreateFileResponse.php
+++ b/src/gen/lib/Model/CreateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderRequest.php b/src/gen/lib/Model/CreateFolderRequest.php
index 633b97a05e..cc650def0b 100644
--- a/src/gen/lib/Model/CreateFolderRequest.php
+++ b/src/gen/lib/Model/CreateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderResponse.php b/src/gen/lib/Model/CreateFolderResponse.php
index 36382eac92..fca45ade69 100644
--- a/src/gen/lib/Model/CreateFolderResponse.php
+++ b/src/gen/lib/Model/CreateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateHrisCompanyResponse.php b/src/gen/lib/Model/CreateHrisCompanyResponse.php
index 77dc72c200..5ac1544004 100644
--- a/src/gen/lib/Model/CreateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/CreateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceItemResponse.php b/src/gen/lib/Model/CreateInvoiceItemResponse.php
index 3d37121d71..b65ce9de26 100644
--- a/src/gen/lib/Model/CreateInvoiceItemResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceResponse.php b/src/gen/lib/Model/CreateInvoiceResponse.php
index 5fcc2295da..c639d7dbd5 100644
--- a/src/gen/lib/Model/CreateInvoiceResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateItemResponse.php b/src/gen/lib/Model/CreateItemResponse.php
index 4679f4d8cd..825f01bf9d 100644
--- a/src/gen/lib/Model/CreateItemResponse.php
+++ b/src/gen/lib/Model/CreateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJobResponse.php b/src/gen/lib/Model/CreateJobResponse.php
index 49d5847caa..d8c52e3c8d 100644
--- a/src/gen/lib/Model/CreateJobResponse.php
+++ b/src/gen/lib/Model/CreateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJournalEntryResponse.php b/src/gen/lib/Model/CreateJournalEntryResponse.php
index b8b0bcbcf5..2e0eb90ba7 100644
--- a/src/gen/lib/Model/CreateJournalEntryResponse.php
+++ b/src/gen/lib/Model/CreateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLeadResponse.php b/src/gen/lib/Model/CreateLeadResponse.php
index 3550901b28..194a7b7b49 100644
--- a/src/gen/lib/Model/CreateLeadResponse.php
+++ b/src/gen/lib/Model/CreateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLedgerAccountResponse.php b/src/gen/lib/Model/CreateLedgerAccountResponse.php
index f5bf6dcb3d..408a0186b1 100644
--- a/src/gen/lib/Model/CreateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/CreateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLocationResponse.php b/src/gen/lib/Model/CreateLocationResponse.php
index a82be4733f..9f4fb1cd96 100644
--- a/src/gen/lib/Model/CreateLocationResponse.php
+++ b/src/gen/lib/Model/CreateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMerchantResponse.php b/src/gen/lib/Model/CreateMerchantResponse.php
index ca83cd66d0..ffa932979b 100644
--- a/src/gen/lib/Model/CreateMerchantResponse.php
+++ b/src/gen/lib/Model/CreateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMessageResponse.php b/src/gen/lib/Model/CreateMessageResponse.php
index 3e1b939dd2..aee9453db0 100644
--- a/src/gen/lib/Model/CreateMessageResponse.php
+++ b/src/gen/lib/Model/CreateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierGroupResponse.php b/src/gen/lib/Model/CreateModifierGroupResponse.php
index 8c4c595d2f..9831255882 100644
--- a/src/gen/lib/Model/CreateModifierGroupResponse.php
+++ b/src/gen/lib/Model/CreateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierResponse.php b/src/gen/lib/Model/CreateModifierResponse.php
index 41273ba63c..ab1c4e488a 100644
--- a/src/gen/lib/Model/CreateModifierResponse.php
+++ b/src/gen/lib/Model/CreateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateNoteResponse.php b/src/gen/lib/Model/CreateNoteResponse.php
index 50a28dc069..b557b010fa 100644
--- a/src/gen/lib/Model/CreateNoteResponse.php
+++ b/src/gen/lib/Model/CreateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOpportunityResponse.php b/src/gen/lib/Model/CreateOpportunityResponse.php
index 54babec346..fbe2d192d6 100644
--- a/src/gen/lib/Model/CreateOpportunityResponse.php
+++ b/src/gen/lib/Model/CreateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderResponse.php b/src/gen/lib/Model/CreateOrderResponse.php
index 41e6bad12a..2fdc58eba3 100644
--- a/src/gen/lib/Model/CreateOrderResponse.php
+++ b/src/gen/lib/Model/CreateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderTypeResponse.php b/src/gen/lib/Model/CreateOrderTypeResponse.php
index 0ff0a09b99..76d675042b 100644
--- a/src/gen/lib/Model/CreateOrderTypeResponse.php
+++ b/src/gen/lib/Model/CreateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePaymentResponse.php b/src/gen/lib/Model/CreatePaymentResponse.php
index fdb9036e95..da07af93db 100644
--- a/src/gen/lib/Model/CreatePaymentResponse.php
+++ b/src/gen/lib/Model/CreatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePipelineResponse.php b/src/gen/lib/Model/CreatePipelineResponse.php
index fdb1ae4057..be78fd37af 100644
--- a/src/gen/lib/Model/CreatePipelineResponse.php
+++ b/src/gen/lib/Model/CreatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePosPaymentResponse.php b/src/gen/lib/Model/CreatePosPaymentResponse.php
index e44c9cce4e..40b49f68e6 100644
--- a/src/gen/lib/Model/CreatePosPaymentResponse.php
+++ b/src/gen/lib/Model/CreatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateProductResponse.php b/src/gen/lib/Model/CreateProductResponse.php
index 0e4a5d64e9..d304e4cc84 100644
--- a/src/gen/lib/Model/CreateProductResponse.php
+++ b/src/gen/lib/Model/CreateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePurchaseOrderResponse.php b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
index 6167605682..10e51b5707 100644
--- a/src/gen/lib/Model/CreatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponse.php b/src/gen/lib/Model/CreateSessionResponse.php
index 88974f219a..a9a8fc513f 100644
--- a/src/gen/lib/Model/CreateSessionResponse.php
+++ b/src/gen/lib/Model/CreateSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponseData.php b/src/gen/lib/Model/CreateSessionResponseData.php
index 5765c5222f..cb6da9aa40 100644
--- a/src/gen/lib/Model/CreateSessionResponseData.php
+++ b/src/gen/lib/Model/CreateSessionResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSharedLinkResponse.php b/src/gen/lib/Model/CreateSharedLinkResponse.php
index 640e776d06..dbc9743766 100644
--- a/src/gen/lib/Model/CreateSharedLinkResponse.php
+++ b/src/gen/lib/Model/CreateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSubsidiaryResponse.php b/src/gen/lib/Model/CreateSubsidiaryResponse.php
new file mode 100644
index 0000000000..aeb0cd99fe
--- /dev/null
+++ b/src/gen/lib/Model/CreateSubsidiaryResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class CreateSubsidiaryResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'CreateSubsidiaryResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\UnifiedId'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\UnifiedId
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\UnifiedId $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/CreateSupplierResponse.php b/src/gen/lib/Model/CreateSupplierResponse.php
index c999c1243d..bc191965a8 100644
--- a/src/gen/lib/Model/CreateSupplierResponse.php
+++ b/src/gen/lib/Model/CreateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTaxRateResponse.php b/src/gen/lib/Model/CreateTaxRateResponse.php
index 432ef1e5dc..3af9768de3 100644
--- a/src/gen/lib/Model/CreateTaxRateResponse.php
+++ b/src/gen/lib/Model/CreateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTenderResponse.php b/src/gen/lib/Model/CreateTenderResponse.php
index 02cf7d644e..b327cebd2e 100644
--- a/src/gen/lib/Model/CreateTenderResponse.php
+++ b/src/gen/lib/Model/CreateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTicketResponse.php b/src/gen/lib/Model/CreateTicketResponse.php
index 7f3f29bb57..d039ca2537 100644
--- a/src/gen/lib/Model/CreateTicketResponse.php
+++ b/src/gen/lib/Model/CreateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTimeOffRequestResponse.php b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
index 262994302f..cd2f12704c 100644
--- a/src/gen/lib/Model/CreateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionRequest.php b/src/gen/lib/Model/CreateUploadSessionRequest.php
index 611971094d..6d215d1518 100644
--- a/src/gen/lib/Model/CreateUploadSessionRequest.php
+++ b/src/gen/lib/Model/CreateUploadSessionRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionResponse.php b/src/gen/lib/Model/CreateUploadSessionResponse.php
index f0340b7375..e867c3396f 100644
--- a/src/gen/lib/Model/CreateUploadSessionResponse.php
+++ b/src/gen/lib/Model/CreateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUserResponse.php b/src/gen/lib/Model/CreateUserResponse.php
index d6e528d121..2b94bede51 100644
--- a/src/gen/lib/Model/CreateUserResponse.php
+++ b/src/gen/lib/Model/CreateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookRequest.php b/src/gen/lib/Model/CreateWebhookRequest.php
index cd966996fc..ded6c5f325 100644
--- a/src/gen/lib/Model/CreateWebhookRequest.php
+++ b/src/gen/lib/Model/CreateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookResponse.php b/src/gen/lib/Model/CreateWebhookResponse.php
index af35317bd6..11a298162e 100644
--- a/src/gen/lib/Model/CreateWebhookResponse.php
+++ b/src/gen/lib/Model/CreateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNote.php b/src/gen/lib/Model/CreditNote.php
index 103284f4ca..48c256a839 100644
--- a/src/gen/lib/Model/CreditNote.php
+++ b/src/gen/lib/Model/CreditNote.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesFilter.php b/src/gen/lib/Model/CreditNotesFilter.php
index 7084366200..b6d7aae27a 100644
--- a/src/gen/lib/Model/CreditNotesFilter.php
+++ b/src/gen/lib/Model/CreditNotesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesSort.php b/src/gen/lib/Model/CreditNotesSort.php
index 33ecf5ac88..124c57dd19 100644
--- a/src/gen/lib/Model/CreditNotesSort.php
+++ b/src/gen/lib/Model/CreditNotesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CrmEventType.php b/src/gen/lib/Model/CrmEventType.php
index b7f4af9d75..3a794e5f5e 100644
--- a/src/gen/lib/Model/CrmEventType.php
+++ b/src/gen/lib/Model/CrmEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Currency.php b/src/gen/lib/Model/Currency.php
index 841263591e..7a560ee37c 100644
--- a/src/gen/lib/Model/Currency.php
+++ b/src/gen/lib/Model/Currency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomField.php b/src/gen/lib/Model/CustomField.php
index 62d68ca3e3..dfdbcdc0bb 100644
--- a/src/gen/lib/Model/CustomField.php
+++ b/src/gen/lib/Model/CustomField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomFieldFinder.php b/src/gen/lib/Model/CustomFieldFinder.php
index 218d71d494..e6ea75763c 100644
--- a/src/gen/lib/Model/CustomFieldFinder.php
+++ b/src/gen/lib/Model/CustomFieldFinder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomMapping.php b/src/gen/lib/Model/CustomMapping.php
index 81f02a2506..4741572842 100644
--- a/src/gen/lib/Model/CustomMapping.php
+++ b/src/gen/lib/Model/CustomMapping.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Customer.php b/src/gen/lib/Model/Customer.php
index 053e9e80a6..88aac2ef90 100644
--- a/src/gen/lib/Model/Customer.php
+++ b/src/gen/lib/Model/Customer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersFilter.php b/src/gen/lib/Model/CustomersFilter.php
index 9dcb7515b4..7b4b0665d6 100644
--- a/src/gen/lib/Model/CustomersFilter.php
+++ b/src/gen/lib/Model/CustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersSort.php b/src/gen/lib/Model/CustomersSort.php
index 2758fb9df8..ffcc295864 100644
--- a/src/gen/lib/Model/CustomersSort.php
+++ b/src/gen/lib/Model/CustomersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Deduction.php b/src/gen/lib/Model/Deduction.php
index 3525833b3a..cda9e577c9 100644
--- a/src/gen/lib/Model/Deduction.php
+++ b/src/gen/lib/Model/Deduction.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteActivityResponse.php b/src/gen/lib/Model/DeleteActivityResponse.php
index 0af9d95da4..c6fcc54f0c 100644
--- a/src/gen/lib/Model/DeleteActivityResponse.php
+++ b/src/gen/lib/Model/DeleteActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicantResponse.php b/src/gen/lib/Model/DeleteApplicantResponse.php
index 44715a805c..d2e8b30fae 100644
--- a/src/gen/lib/Model/DeleteApplicantResponse.php
+++ b/src/gen/lib/Model/DeleteApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicationResponse.php b/src/gen/lib/Model/DeleteApplicationResponse.php
index fa8bddba9b..104869e581 100644
--- a/src/gen/lib/Model/DeleteApplicationResponse.php
+++ b/src/gen/lib/Model/DeleteApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteBillResponse.php b/src/gen/lib/Model/DeleteBillResponse.php
index 7167fce068..320a91e3b4 100644
--- a/src/gen/lib/Model/DeleteBillResponse.php
+++ b/src/gen/lib/Model/DeleteBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCommentResponse.php b/src/gen/lib/Model/DeleteCommentResponse.php
index 41dd411cca..9c5f4fb651 100644
--- a/src/gen/lib/Model/DeleteCommentResponse.php
+++ b/src/gen/lib/Model/DeleteCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCompanyResponse.php b/src/gen/lib/Model/DeleteCompanyResponse.php
index e60877d9dc..0c33408e25 100644
--- a/src/gen/lib/Model/DeleteCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteConsumerResponse.php b/src/gen/lib/Model/DeleteConsumerResponse.php
index 76bbba4c15..70eac6a438 100644
--- a/src/gen/lib/Model/DeleteConsumerResponse.php
+++ b/src/gen/lib/Model/DeleteConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteContactResponse.php b/src/gen/lib/Model/DeleteContactResponse.php
index 7d157f1e78..2cf005eb2b 100644
--- a/src/gen/lib/Model/DeleteContactResponse.php
+++ b/src/gen/lib/Model/DeleteContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCreditNoteResponse.php b/src/gen/lib/Model/DeleteCreditNoteResponse.php
index 331fdcb6d6..92f588e49e 100644
--- a/src/gen/lib/Model/DeleteCreditNoteResponse.php
+++ b/src/gen/lib/Model/DeleteCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCustomerResponse.php b/src/gen/lib/Model/DeleteCustomerResponse.php
index d244065bfa..298eb2d381 100644
--- a/src/gen/lib/Model/DeleteCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDepartmentResponse.php b/src/gen/lib/Model/DeleteDepartmentResponse.php
index 08f9947740..940138d211 100644
--- a/src/gen/lib/Model/DeleteDepartmentResponse.php
+++ b/src/gen/lib/Model/DeleteDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveGroupResponse.php b/src/gen/lib/Model/DeleteDriveGroupResponse.php
index d92c780db1..950c8ad231 100644
--- a/src/gen/lib/Model/DeleteDriveGroupResponse.php
+++ b/src/gen/lib/Model/DeleteDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveResponse.php b/src/gen/lib/Model/DeleteDriveResponse.php
index e86d31deac..4a7c6e2b6f 100644
--- a/src/gen/lib/Model/DeleteDriveResponse.php
+++ b/src/gen/lib/Model/DeleteDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
index fec52ff747..04fc7cfe38 100644
--- a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
index 307f74cc9d..a26d62948c 100644
--- a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEmployeeResponse.php b/src/gen/lib/Model/DeleteEmployeeResponse.php
index 0ee924797c..6e333707f9 100644
--- a/src/gen/lib/Model/DeleteEmployeeResponse.php
+++ b/src/gen/lib/Model/DeleteEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFileResponse.php b/src/gen/lib/Model/DeleteFileResponse.php
index ac012af88c..46d8cdba23 100644
--- a/src/gen/lib/Model/DeleteFileResponse.php
+++ b/src/gen/lib/Model/DeleteFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFolderResponse.php b/src/gen/lib/Model/DeleteFolderResponse.php
index 016aa61d6e..b1fd70ba31 100644
--- a/src/gen/lib/Model/DeleteFolderResponse.php
+++ b/src/gen/lib/Model/DeleteFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteHrisCompanyResponse.php b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
index 3d0d52d117..71bc7beb9a 100644
--- a/src/gen/lib/Model/DeleteHrisCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteInvoiceResponse.php b/src/gen/lib/Model/DeleteInvoiceResponse.php
index 4ebb089e6f..9bfe723636 100644
--- a/src/gen/lib/Model/DeleteInvoiceResponse.php
+++ b/src/gen/lib/Model/DeleteInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteItemResponse.php b/src/gen/lib/Model/DeleteItemResponse.php
index a100556ecf..e8d69908c1 100644
--- a/src/gen/lib/Model/DeleteItemResponse.php
+++ b/src/gen/lib/Model/DeleteItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJobResponse.php b/src/gen/lib/Model/DeleteJobResponse.php
index e206bee9d5..bae14d84c3 100644
--- a/src/gen/lib/Model/DeleteJobResponse.php
+++ b/src/gen/lib/Model/DeleteJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJournalEntryResponse.php b/src/gen/lib/Model/DeleteJournalEntryResponse.php
index 390a8014fe..79682862d9 100644
--- a/src/gen/lib/Model/DeleteJournalEntryResponse.php
+++ b/src/gen/lib/Model/DeleteJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLeadResponse.php b/src/gen/lib/Model/DeleteLeadResponse.php
index 0a8a562adc..d2324ed209 100644
--- a/src/gen/lib/Model/DeleteLeadResponse.php
+++ b/src/gen/lib/Model/DeleteLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLedgerAccountResponse.php b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
index 4bf6fedfdf..183ca9bd58 100644
--- a/src/gen/lib/Model/DeleteLedgerAccountResponse.php
+++ b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLocationResponse.php b/src/gen/lib/Model/DeleteLocationResponse.php
index 820d9948c5..9707d41bf3 100644
--- a/src/gen/lib/Model/DeleteLocationResponse.php
+++ b/src/gen/lib/Model/DeleteLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMerchantResponse.php b/src/gen/lib/Model/DeleteMerchantResponse.php
index 5b39a5389f..a9ec269bed 100644
--- a/src/gen/lib/Model/DeleteMerchantResponse.php
+++ b/src/gen/lib/Model/DeleteMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMessageResponse.php b/src/gen/lib/Model/DeleteMessageResponse.php
index 758335a7bb..c29af6f455 100644
--- a/src/gen/lib/Model/DeleteMessageResponse.php
+++ b/src/gen/lib/Model/DeleteMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierGroupResponse.php b/src/gen/lib/Model/DeleteModifierGroupResponse.php
index ad4604a87d..1dad924219 100644
--- a/src/gen/lib/Model/DeleteModifierGroupResponse.php
+++ b/src/gen/lib/Model/DeleteModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierResponse.php b/src/gen/lib/Model/DeleteModifierResponse.php
index a7254a6759..c97d067147 100644
--- a/src/gen/lib/Model/DeleteModifierResponse.php
+++ b/src/gen/lib/Model/DeleteModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteNoteResponse.php b/src/gen/lib/Model/DeleteNoteResponse.php
index 07cb308f76..7df23d7aad 100644
--- a/src/gen/lib/Model/DeleteNoteResponse.php
+++ b/src/gen/lib/Model/DeleteNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOpportunityResponse.php b/src/gen/lib/Model/DeleteOpportunityResponse.php
index 4534edc884..5dab63af84 100644
--- a/src/gen/lib/Model/DeleteOpportunityResponse.php
+++ b/src/gen/lib/Model/DeleteOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderResponse.php b/src/gen/lib/Model/DeleteOrderResponse.php
index d771ea81da..712b9f5a6e 100644
--- a/src/gen/lib/Model/DeleteOrderResponse.php
+++ b/src/gen/lib/Model/DeleteOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderTypeResponse.php b/src/gen/lib/Model/DeleteOrderTypeResponse.php
index 642c3e5e08..d416065235 100644
--- a/src/gen/lib/Model/DeleteOrderTypeResponse.php
+++ b/src/gen/lib/Model/DeleteOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePaymentResponse.php b/src/gen/lib/Model/DeletePaymentResponse.php
index 260de7da15..4429d8965c 100644
--- a/src/gen/lib/Model/DeletePaymentResponse.php
+++ b/src/gen/lib/Model/DeletePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePipelineResponse.php b/src/gen/lib/Model/DeletePipelineResponse.php
index f69fffb5bb..7988041d74 100644
--- a/src/gen/lib/Model/DeletePipelineResponse.php
+++ b/src/gen/lib/Model/DeletePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePosPaymentResponse.php b/src/gen/lib/Model/DeletePosPaymentResponse.php
index f4f6753e4b..241b3a6ce4 100644
--- a/src/gen/lib/Model/DeletePosPaymentResponse.php
+++ b/src/gen/lib/Model/DeletePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteProductResponse.php b/src/gen/lib/Model/DeleteProductResponse.php
index 6aac9dc4a9..ccea254a21 100644
--- a/src/gen/lib/Model/DeleteProductResponse.php
+++ b/src/gen/lib/Model/DeleteProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePurchaseOrderResponse.php b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
index 2f259988e2..3afc31af21 100644
--- a/src/gen/lib/Model/DeletePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSharedLinkResponse.php b/src/gen/lib/Model/DeleteSharedLinkResponse.php
index 7a98482552..a261526f0b 100644
--- a/src/gen/lib/Model/DeleteSharedLinkResponse.php
+++ b/src/gen/lib/Model/DeleteSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSubsidiaryResponse.php b/src/gen/lib/Model/DeleteSubsidiaryResponse.php
new file mode 100644
index 0000000000..53f7f78951
--- /dev/null
+++ b/src/gen/lib/Model/DeleteSubsidiaryResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class DeleteSubsidiaryResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'DeleteSubsidiaryResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\UnifiedId'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\UnifiedId
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\UnifiedId $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/DeleteSupplierResponse.php b/src/gen/lib/Model/DeleteSupplierResponse.php
index 1697f12db2..077542953a 100644
--- a/src/gen/lib/Model/DeleteSupplierResponse.php
+++ b/src/gen/lib/Model/DeleteSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTaxRateResponse.php b/src/gen/lib/Model/DeleteTaxRateResponse.php
index 7d166861c1..55a2cb4171 100644
--- a/src/gen/lib/Model/DeleteTaxRateResponse.php
+++ b/src/gen/lib/Model/DeleteTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTenderResponse.php b/src/gen/lib/Model/DeleteTenderResponse.php
index 26d3791182..d212a3245e 100644
--- a/src/gen/lib/Model/DeleteTenderResponse.php
+++ b/src/gen/lib/Model/DeleteTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTicketResponse.php b/src/gen/lib/Model/DeleteTicketResponse.php
index 8f6d3ee340..753c383a1e 100644
--- a/src/gen/lib/Model/DeleteTicketResponse.php
+++ b/src/gen/lib/Model/DeleteTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
index 87c8a4f50f..46c511ada2 100644
--- a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUploadSessionResponse.php b/src/gen/lib/Model/DeleteUploadSessionResponse.php
index 6a06edf226..46ff6dcacb 100644
--- a/src/gen/lib/Model/DeleteUploadSessionResponse.php
+++ b/src/gen/lib/Model/DeleteUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUserResponse.php b/src/gen/lib/Model/DeleteUserResponse.php
index 93e9327a5a..3eb823bb30 100644
--- a/src/gen/lib/Model/DeleteUserResponse.php
+++ b/src/gen/lib/Model/DeleteUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteWebhookResponse.php b/src/gen/lib/Model/DeleteWebhookResponse.php
index f707c8104c..01e6a85703 100644
--- a/src/gen/lib/Model/DeleteWebhookResponse.php
+++ b/src/gen/lib/Model/DeleteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Department.php b/src/gen/lib/Model/Department.php
index 8da7255191..53894bb7dd 100644
--- a/src/gen/lib/Model/Department.php
+++ b/src/gen/lib/Model/Department.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Drive.php b/src/gen/lib/Model/Drive.php
index 5f252d5519..35f2a8e995 100644
--- a/src/gen/lib/Model/Drive.php
+++ b/src/gen/lib/Model/Drive.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroup.php b/src/gen/lib/Model/DriveGroup.php
index 2482ae9a39..7a025e8f64 100644
--- a/src/gen/lib/Model/DriveGroup.php
+++ b/src/gen/lib/Model/DriveGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroupsFilter.php b/src/gen/lib/Model/DriveGroupsFilter.php
index c9f8fc9640..c128c5bf8d 100644
--- a/src/gen/lib/Model/DriveGroupsFilter.php
+++ b/src/gen/lib/Model/DriveGroupsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DrivesFilter.php b/src/gen/lib/Model/DrivesFilter.php
index c9cfe673cd..dc8e424b20 100644
--- a/src/gen/lib/Model/DrivesFilter.php
+++ b/src/gen/lib/Model/DrivesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceAddress.php b/src/gen/lib/Model/EcommerceAddress.php
index daa420a86e..29c2e5af3a 100644
--- a/src/gen/lib/Model/EcommerceAddress.php
+++ b/src/gen/lib/Model/EcommerceAddress.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomer.php b/src/gen/lib/Model/EcommerceCustomer.php
index 07ec6bcd15..4f19157bcd 100644
--- a/src/gen/lib/Model/EcommerceCustomer.php
+++ b/src/gen/lib/Model/EcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomerAddresses.php b/src/gen/lib/Model/EcommerceCustomerAddresses.php
index d270f2d078..3b09c6e7c5 100644
--- a/src/gen/lib/Model/EcommerceCustomerAddresses.php
+++ b/src/gen/lib/Model/EcommerceCustomerAddresses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomersFilter.php b/src/gen/lib/Model/EcommerceCustomersFilter.php
index 767ae27220..43bf5865e1 100644
--- a/src/gen/lib/Model/EcommerceCustomersFilter.php
+++ b/src/gen/lib/Model/EcommerceCustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceDiscount.php b/src/gen/lib/Model/EcommerceDiscount.php
index c61756e71a..807b5272f6 100644
--- a/src/gen/lib/Model/EcommerceDiscount.php
+++ b/src/gen/lib/Model/EcommerceDiscount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrder.php b/src/gen/lib/Model/EcommerceOrder.php
index e7d1d6cfd4..a1458ea0bb 100644
--- a/src/gen/lib/Model/EcommerceOrder.php
+++ b/src/gen/lib/Model/EcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderLineItem.php b/src/gen/lib/Model/EcommerceOrderLineItem.php
index 9b52e97c28..b181b84caf 100644
--- a/src/gen/lib/Model/EcommerceOrderLineItem.php
+++ b/src/gen/lib/Model/EcommerceOrderLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderStatus.php b/src/gen/lib/Model/EcommerceOrderStatus.php
index 8e6d9eb938..1e77bc8d81 100644
--- a/src/gen/lib/Model/EcommerceOrderStatus.php
+++ b/src/gen/lib/Model/EcommerceOrderStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrdersFilter.php b/src/gen/lib/Model/EcommerceOrdersFilter.php
index 06d824472d..5a6ef4bf29 100644
--- a/src/gen/lib/Model/EcommerceOrdersFilter.php
+++ b/src/gen/lib/Model/EcommerceOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProduct.php b/src/gen/lib/Model/EcommerceProduct.php
index d1213b94f1..0b3cac8659 100644
--- a/src/gen/lib/Model/EcommerceProduct.php
+++ b/src/gen/lib/Model/EcommerceProduct.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductCategories.php b/src/gen/lib/Model/EcommerceProductCategories.php
index 9a83d200ec..931db86c3e 100644
--- a/src/gen/lib/Model/EcommerceProductCategories.php
+++ b/src/gen/lib/Model/EcommerceProductCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages.php b/src/gen/lib/Model/EcommerceProductImages.php
index 26c75beecc..d1a39737dc 100644
--- a/src/gen/lib/Model/EcommerceProductImages.php
+++ b/src/gen/lib/Model/EcommerceProductImages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages1.php b/src/gen/lib/Model/EcommerceProductImages1.php
index 14cd7b84e2..9a4a4bd34e 100644
--- a/src/gen/lib/Model/EcommerceProductImages1.php
+++ b/src/gen/lib/Model/EcommerceProductImages1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions.php b/src/gen/lib/Model/EcommerceProductOptions.php
index ce915fe31c..45ada5feb7 100644
--- a/src/gen/lib/Model/EcommerceProductOptions.php
+++ b/src/gen/lib/Model/EcommerceProductOptions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions1.php b/src/gen/lib/Model/EcommerceProductOptions1.php
index 13875f02fd..234faf6d09 100644
--- a/src/gen/lib/Model/EcommerceProductOptions1.php
+++ b/src/gen/lib/Model/EcommerceProductOptions1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductVariants.php b/src/gen/lib/Model/EcommerceProductVariants.php
index 50e828db9e..582c81d941 100644
--- a/src/gen/lib/Model/EcommerceProductVariants.php
+++ b/src/gen/lib/Model/EcommerceProductVariants.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceStore.php b/src/gen/lib/Model/EcommerceStore.php
index 810fa6d34f..12ed781dc0 100644
--- a/src/gen/lib/Model/EcommerceStore.php
+++ b/src/gen/lib/Model/EcommerceStore.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Email.php b/src/gen/lib/Model/Email.php
index 4c806c12e0..d2b88cd911 100644
--- a/src/gen/lib/Model/Email.php
+++ b/src/gen/lib/Model/Email.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Employee.php b/src/gen/lib/Model/Employee.php
index 8d3175932f..19073950ed 100644
--- a/src/gen/lib/Model/Employee.php
+++ b/src/gen/lib/Model/Employee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeCompensation.php b/src/gen/lib/Model/EmployeeCompensation.php
index f665724699..a7768ee579 100644
--- a/src/gen/lib/Model/EmployeeCompensation.php
+++ b/src/gen/lib/Model/EmployeeCompensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeEmploymentRole.php b/src/gen/lib/Model/EmployeeEmploymentRole.php
index 011e35903d..569ab65cc7 100644
--- a/src/gen/lib/Model/EmployeeEmploymentRole.php
+++ b/src/gen/lib/Model/EmployeeEmploymentRole.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeJob.php b/src/gen/lib/Model/EmployeeJob.php
index 336d8db84e..d4c993fce7 100644
--- a/src/gen/lib/Model/EmployeeJob.php
+++ b/src/gen/lib/Model/EmployeeJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeList.php b/src/gen/lib/Model/EmployeeList.php
index e24889c0d4..9056bfd566 100644
--- a/src/gen/lib/Model/EmployeeList.php
+++ b/src/gen/lib/Model/EmployeeList.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeManager.php b/src/gen/lib/Model/EmployeeManager.php
index c0ca96c399..efcb38c752 100644
--- a/src/gen/lib/Model/EmployeeManager.php
+++ b/src/gen/lib/Model/EmployeeManager.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeePayroll.php b/src/gen/lib/Model/EmployeePayroll.php
index ba05891c13..f6212f1445 100644
--- a/src/gen/lib/Model/EmployeePayroll.php
+++ b/src/gen/lib/Model/EmployeePayroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeSchedules.php b/src/gen/lib/Model/EmployeeSchedules.php
index d1af6c095d..cc96efec2b 100644
--- a/src/gen/lib/Model/EmployeeSchedules.php
+++ b/src/gen/lib/Model/EmployeeSchedules.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesFilter.php b/src/gen/lib/Model/EmployeesFilter.php
index 43234c7962..4f4a699a03 100644
--- a/src/gen/lib/Model/EmployeesFilter.php
+++ b/src/gen/lib/Model/EmployeesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesSort.php b/src/gen/lib/Model/EmployeesSort.php
index 681c95b362..4a6f0bd053 100644
--- a/src/gen/lib/Model/EmployeesSort.php
+++ b/src/gen/lib/Model/EmployeesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmploymentStatus.php b/src/gen/lib/Model/EmploymentStatus.php
index b371fff539..f0f6737fb1 100644
--- a/src/gen/lib/Model/EmploymentStatus.php
+++ b/src/gen/lib/Model/EmploymentStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Error.php b/src/gen/lib/Model/Error.php
index 6cdd88c8af..ebe8e4be47 100644
--- a/src/gen/lib/Model/Error.php
+++ b/src/gen/lib/Model/Error.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ExecuteWebhookResponse.php b/src/gen/lib/Model/ExecuteWebhookResponse.php
index 7824030bfb..3806de2f6b 100644
--- a/src/gen/lib/Model/ExecuteWebhookResponse.php
+++ b/src/gen/lib/Model/ExecuteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileStorageEventType.php b/src/gen/lib/Model/FileStorageEventType.php
index b78b797b10..55ed91df3a 100644
--- a/src/gen/lib/Model/FileStorageEventType.php
+++ b/src/gen/lib/Model/FileStorageEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileType.php b/src/gen/lib/Model/FileType.php
index bd80edb4f7..66fff58a51 100644
--- a/src/gen/lib/Model/FileType.php
+++ b/src/gen/lib/Model/FileType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesFilter.php b/src/gen/lib/Model/FilesFilter.php
index c67b6d77dd..c3b8bb3863 100644
--- a/src/gen/lib/Model/FilesFilter.php
+++ b/src/gen/lib/Model/FilesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSearch.php b/src/gen/lib/Model/FilesSearch.php
index 6ac1a6af8e..5a1dee4e97 100644
--- a/src/gen/lib/Model/FilesSearch.php
+++ b/src/gen/lib/Model/FilesSearch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSort.php b/src/gen/lib/Model/FilesSort.php
index 2e9e021a89..64e0e17a5e 100644
--- a/src/gen/lib/Model/FilesSort.php
+++ b/src/gen/lib/Model/FilesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Folder.php b/src/gen/lib/Model/Folder.php
index 434835b9bb..e3b6df127d 100644
--- a/src/gen/lib/Model/Folder.php
+++ b/src/gen/lib/Model/Folder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormField.php b/src/gen/lib/Model/FormField.php
index b761203397..d553d36778 100644
--- a/src/gen/lib/Model/FormField.php
+++ b/src/gen/lib/Model/FormField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOption.php b/src/gen/lib/Model/FormFieldOption.php
index e030751f15..2324a52a62 100644
--- a/src/gen/lib/Model/FormFieldOption.php
+++ b/src/gen/lib/Model/FormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOptionGroup.php b/src/gen/lib/Model/FormFieldOptionGroup.php
index dfcdaf015a..66eded07cb 100644
--- a/src/gen/lib/Model/FormFieldOptionGroup.php
+++ b/src/gen/lib/Model/FormFieldOptionGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Gender.php b/src/gen/lib/Model/Gender.php
index 2136b0a2d6..488418730c 100644
--- a/src/gen/lib/Model/Gender.php
+++ b/src/gen/lib/Model/Gender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetActivitiesResponse.php b/src/gen/lib/Model/GetActivitiesResponse.php
index 6e6db1353e..5427daddb1 100644
--- a/src/gen/lib/Model/GetActivitiesResponse.php
+++ b/src/gen/lib/Model/GetActivitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetActivityResponse.php b/src/gen/lib/Model/GetActivityResponse.php
index b04787b292..a08d74512d 100644
--- a/src/gen/lib/Model/GetActivityResponse.php
+++ b/src/gen/lib/Model/GetActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceCoverageResponse.php b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
index 38c189973f..14e627726e 100644
--- a/src/gen/lib/Model/GetApiResourceCoverageResponse.php
+++ b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceResponse.php b/src/gen/lib/Model/GetApiResourceResponse.php
index d254993305..f55e36b316 100644
--- a/src/gen/lib/Model/GetApiResourceResponse.php
+++ b/src/gen/lib/Model/GetApiResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResponse.php b/src/gen/lib/Model/GetApiResponse.php
index ddc5c82e03..a707bbf082 100644
--- a/src/gen/lib/Model/GetApiResponse.php
+++ b/src/gen/lib/Model/GetApiResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApisResponse.php b/src/gen/lib/Model/GetApisResponse.php
index e5c3b7974a..4be5711272 100644
--- a/src/gen/lib/Model/GetApisResponse.php
+++ b/src/gen/lib/Model/GetApisResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantResponse.php b/src/gen/lib/Model/GetApplicantResponse.php
index b89d15866e..4b8473ae35 100644
--- a/src/gen/lib/Model/GetApplicantResponse.php
+++ b/src/gen/lib/Model/GetApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantsResponse.php b/src/gen/lib/Model/GetApplicantsResponse.php
index 1a4e9e8ae7..9f00dab816 100644
--- a/src/gen/lib/Model/GetApplicantsResponse.php
+++ b/src/gen/lib/Model/GetApplicantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationResponse.php b/src/gen/lib/Model/GetApplicationResponse.php
index 06ea52475d..ae98b733f1 100644
--- a/src/gen/lib/Model/GetApplicationResponse.php
+++ b/src/gen/lib/Model/GetApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationsResponse.php b/src/gen/lib/Model/GetApplicationsResponse.php
index 377dfce7a1..711c50e4b5 100644
--- a/src/gen/lib/Model/GetApplicationsResponse.php
+++ b/src/gen/lib/Model/GetApplicationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBalanceSheetResponse.php b/src/gen/lib/Model/GetBalanceSheetResponse.php
index d9b0bf4835..877f933302 100644
--- a/src/gen/lib/Model/GetBalanceSheetResponse.php
+++ b/src/gen/lib/Model/GetBalanceSheetResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillResponse.php b/src/gen/lib/Model/GetBillResponse.php
index 93a4145435..29affc45ee 100644
--- a/src/gen/lib/Model/GetBillResponse.php
+++ b/src/gen/lib/Model/GetBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillsResponse.php b/src/gen/lib/Model/GetBillsResponse.php
index d946421f75..d2d8751fe3 100644
--- a/src/gen/lib/Model/GetBillsResponse.php
+++ b/src/gen/lib/Model/GetBillsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionResponse.php b/src/gen/lib/Model/GetCollectionResponse.php
index a9a2d50ad2..f6cc1ea1ac 100644
--- a/src/gen/lib/Model/GetCollectionResponse.php
+++ b/src/gen/lib/Model/GetCollectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionTagsResponse.php b/src/gen/lib/Model/GetCollectionTagsResponse.php
index c544ea50a0..13e609a97d 100644
--- a/src/gen/lib/Model/GetCollectionTagsResponse.php
+++ b/src/gen/lib/Model/GetCollectionTagsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUserResponse.php b/src/gen/lib/Model/GetCollectionUserResponse.php
index 3c1f71f219..381426c408 100644
--- a/src/gen/lib/Model/GetCollectionUserResponse.php
+++ b/src/gen/lib/Model/GetCollectionUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUsersResponse.php b/src/gen/lib/Model/GetCollectionUsersResponse.php
index cf823665aa..0b687b2ae4 100644
--- a/src/gen/lib/Model/GetCollectionUsersResponse.php
+++ b/src/gen/lib/Model/GetCollectionUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionsResponse.php b/src/gen/lib/Model/GetCollectionsResponse.php
index f76c3dec86..cee3116c97 100644
--- a/src/gen/lib/Model/GetCollectionsResponse.php
+++ b/src/gen/lib/Model/GetCollectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentResponse.php b/src/gen/lib/Model/GetCommentResponse.php
index 27da2d0f74..d9b218ec1d 100644
--- a/src/gen/lib/Model/GetCommentResponse.php
+++ b/src/gen/lib/Model/GetCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentsResponse.php b/src/gen/lib/Model/GetCommentsResponse.php
index d2db2fdd6c..b849334ec3 100644
--- a/src/gen/lib/Model/GetCommentsResponse.php
+++ b/src/gen/lib/Model/GetCommentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompaniesResponse.php b/src/gen/lib/Model/GetCompaniesResponse.php
index 2d236e2d1e..ac4b827794 100644
--- a/src/gen/lib/Model/GetCompaniesResponse.php
+++ b/src/gen/lib/Model/GetCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyInfoResponse.php b/src/gen/lib/Model/GetCompanyInfoResponse.php
index 5b6289c550..efa6ba4c16 100644
--- a/src/gen/lib/Model/GetCompanyInfoResponse.php
+++ b/src/gen/lib/Model/GetCompanyInfoResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyResponse.php b/src/gen/lib/Model/GetCompanyResponse.php
index 726bb9dc15..be604a0abc 100644
--- a/src/gen/lib/Model/GetCompanyResponse.php
+++ b/src/gen/lib/Model/GetCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionResponse.php b/src/gen/lib/Model/GetConnectionResponse.php
index 71e91d482d..891a5d12ba 100644
--- a/src/gen/lib/Model/GetConnectionResponse.php
+++ b/src/gen/lib/Model/GetConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionsResponse.php b/src/gen/lib/Model/GetConnectionsResponse.php
index 5ea750a83f..1663e3fd30 100644
--- a/src/gen/lib/Model/GetConnectionsResponse.php
+++ b/src/gen/lib/Model/GetConnectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
index 155bf74991..a56ef5fdfc 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
index eeee89f999..f2d91c36db 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceResponse.php b/src/gen/lib/Model/GetConnectorResourceResponse.php
index eca806fb49..ea63603032 100644
--- a/src/gen/lib/Model/GetConnectorResourceResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
index 6f0552f885..9ed5e6fa57 100644
--- a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResponse.php b/src/gen/lib/Model/GetConnectorResponse.php
index 35b58fc2a7..e7154fb1fe 100644
--- a/src/gen/lib/Model/GetConnectorResponse.php
+++ b/src/gen/lib/Model/GetConnectorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorsResponse.php b/src/gen/lib/Model/GetConnectorsResponse.php
index c25e41a397..33e8d9f513 100644
--- a/src/gen/lib/Model/GetConnectorsResponse.php
+++ b/src/gen/lib/Model/GetConnectorsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumerResponse.php b/src/gen/lib/Model/GetConsumerResponse.php
index 6b57b0dbde..9be2119eee 100644
--- a/src/gen/lib/Model/GetConsumerResponse.php
+++ b/src/gen/lib/Model/GetConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponse.php b/src/gen/lib/Model/GetConsumersResponse.php
index 7dde97c084..8bf87a3adc 100644
--- a/src/gen/lib/Model/GetConsumersResponse.php
+++ b/src/gen/lib/Model/GetConsumersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponseData.php b/src/gen/lib/Model/GetConsumersResponseData.php
index 8c1a9d897e..1122cbab50 100644
--- a/src/gen/lib/Model/GetConsumersResponseData.php
+++ b/src/gen/lib/Model/GetConsumersResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactResponse.php b/src/gen/lib/Model/GetContactResponse.php
index 968ddc3bd8..4a13a54740 100644
--- a/src/gen/lib/Model/GetContactResponse.php
+++ b/src/gen/lib/Model/GetContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactsResponse.php b/src/gen/lib/Model/GetContactsResponse.php
index da283e5588..c82e862ad0 100644
--- a/src/gen/lib/Model/GetContactsResponse.php
+++ b/src/gen/lib/Model/GetContactsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNoteResponse.php b/src/gen/lib/Model/GetCreditNoteResponse.php
index 120214fe3a..a2792cd58b 100644
--- a/src/gen/lib/Model/GetCreditNoteResponse.php
+++ b/src/gen/lib/Model/GetCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNotesResponse.php b/src/gen/lib/Model/GetCreditNotesResponse.php
index f2ed1e2f45..4e367c0a6a 100644
--- a/src/gen/lib/Model/GetCreditNotesResponse.php
+++ b/src/gen/lib/Model/GetCreditNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomFieldsResponse.php b/src/gen/lib/Model/GetCustomFieldsResponse.php
index d107623e50..f747e98585 100644
--- a/src/gen/lib/Model/GetCustomFieldsResponse.php
+++ b/src/gen/lib/Model/GetCustomFieldsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomMappingResponse.php b/src/gen/lib/Model/GetCustomMappingResponse.php
index a0b6e5a018..505bb2b6d1 100644
--- a/src/gen/lib/Model/GetCustomMappingResponse.php
+++ b/src/gen/lib/Model/GetCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomerResponse.php b/src/gen/lib/Model/GetCustomerResponse.php
index aa17231f33..dda10ed11e 100644
--- a/src/gen/lib/Model/GetCustomerResponse.php
+++ b/src/gen/lib/Model/GetCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomersResponse.php b/src/gen/lib/Model/GetCustomersResponse.php
index 62894bcde3..c56304319b 100644
--- a/src/gen/lib/Model/GetCustomersResponse.php
+++ b/src/gen/lib/Model/GetCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentResponse.php b/src/gen/lib/Model/GetDepartmentResponse.php
index a17af2fd4a..2ba1431c11 100644
--- a/src/gen/lib/Model/GetDepartmentResponse.php
+++ b/src/gen/lib/Model/GetDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentsResponse.php b/src/gen/lib/Model/GetDepartmentsResponse.php
index 82d5cc588b..9c5fc37138 100644
--- a/src/gen/lib/Model/GetDepartmentsResponse.php
+++ b/src/gen/lib/Model/GetDepartmentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupResponse.php b/src/gen/lib/Model/GetDriveGroupResponse.php
index 8ae0f3a991..fac2a22d5e 100644
--- a/src/gen/lib/Model/GetDriveGroupResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupsResponse.php b/src/gen/lib/Model/GetDriveGroupsResponse.php
index cd2ec384d7..348204be8a 100644
--- a/src/gen/lib/Model/GetDriveGroupsResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveResponse.php b/src/gen/lib/Model/GetDriveResponse.php
index 708a1821d0..90ba2fb826 100644
--- a/src/gen/lib/Model/GetDriveResponse.php
+++ b/src/gen/lib/Model/GetDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDrivesResponse.php b/src/gen/lib/Model/GetDrivesResponse.php
index df5f4a2d71..b66c7fb1db 100644
--- a/src/gen/lib/Model/GetDrivesResponse.php
+++ b/src/gen/lib/Model/GetDrivesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomerResponse.php b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
index d47cd224d5..861ff41d11 100644
--- a/src/gen/lib/Model/GetEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomersResponse.php b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
index e77375f83f..0de5ca613b 100644
--- a/src/gen/lib/Model/GetEcommerceCustomersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrderResponse.php b/src/gen/lib/Model/GetEcommerceOrderResponse.php
index 44af677f01..a5d29808a2 100644
--- a/src/gen/lib/Model/GetEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrdersResponse.php b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
index ba58df2ab9..6c22819c49 100644
--- a/src/gen/lib/Model/GetEcommerceOrdersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollResponse.php b/src/gen/lib/Model/GetEmployeePayrollResponse.php
index ebe99f1ea1..e4634283f1 100644
--- a/src/gen/lib/Model/GetEmployeePayrollResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollsResponse.php b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
index fba2636633..5c30fb27eb 100644
--- a/src/gen/lib/Model/GetEmployeePayrollsResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeResponse.php b/src/gen/lib/Model/GetEmployeeResponse.php
index c90e7dcb65..10bd6864fc 100644
--- a/src/gen/lib/Model/GetEmployeeResponse.php
+++ b/src/gen/lib/Model/GetEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
index 1271c8075c..3f4801ff17 100644
--- a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
+++ b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeesResponse.php b/src/gen/lib/Model/GetEmployeesResponse.php
index 4db39c7025..3eb2b2a51b 100644
--- a/src/gen/lib/Model/GetEmployeesResponse.php
+++ b/src/gen/lib/Model/GetEmployeesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFileResponse.php b/src/gen/lib/Model/GetFileResponse.php
index 7d8121839d..291c42190b 100644
--- a/src/gen/lib/Model/GetFileResponse.php
+++ b/src/gen/lib/Model/GetFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFilesResponse.php b/src/gen/lib/Model/GetFilesResponse.php
index 86eeefc6a2..2028472222 100644
--- a/src/gen/lib/Model/GetFilesResponse.php
+++ b/src/gen/lib/Model/GetFilesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFolderResponse.php b/src/gen/lib/Model/GetFolderResponse.php
index fb0ba44221..150154bf31 100644
--- a/src/gen/lib/Model/GetFolderResponse.php
+++ b/src/gen/lib/Model/GetFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFoldersResponse.php b/src/gen/lib/Model/GetFoldersResponse.php
index 4b359a4235..c73165eccf 100644
--- a/src/gen/lib/Model/GetFoldersResponse.php
+++ b/src/gen/lib/Model/GetFoldersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompaniesResponse.php b/src/gen/lib/Model/GetHrisCompaniesResponse.php
index 0332b16ce9..df989b4363 100644
--- a/src/gen/lib/Model/GetHrisCompaniesResponse.php
+++ b/src/gen/lib/Model/GetHrisCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompanyResponse.php b/src/gen/lib/Model/GetHrisCompanyResponse.php
index 6f8b3a1924..69dc84eb58 100644
--- a/src/gen/lib/Model/GetHrisCompanyResponse.php
+++ b/src/gen/lib/Model/GetHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobResponse.php b/src/gen/lib/Model/GetHrisJobResponse.php
index 1f540d28a7..e9c8ba7f12 100644
--- a/src/gen/lib/Model/GetHrisJobResponse.php
+++ b/src/gen/lib/Model/GetHrisJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobsResponse.php b/src/gen/lib/Model/GetHrisJobsResponse.php
index 080ea530a5..a386557f5e 100644
--- a/src/gen/lib/Model/GetHrisJobsResponse.php
+++ b/src/gen/lib/Model/GetHrisJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemResponse.php b/src/gen/lib/Model/GetInvoiceItemResponse.php
index 59b77cc78f..a848714521 100644
--- a/src/gen/lib/Model/GetInvoiceItemResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemsResponse.php b/src/gen/lib/Model/GetInvoiceItemsResponse.php
index 7a8924665c..a53cf8cc1d 100644
--- a/src/gen/lib/Model/GetInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceResponse.php b/src/gen/lib/Model/GetInvoiceResponse.php
index c95360c944..9efe58cd62 100644
--- a/src/gen/lib/Model/GetInvoiceResponse.php
+++ b/src/gen/lib/Model/GetInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoicesResponse.php b/src/gen/lib/Model/GetInvoicesResponse.php
index 906090a3c1..3fff00dc04 100644
--- a/src/gen/lib/Model/GetInvoicesResponse.php
+++ b/src/gen/lib/Model/GetInvoicesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemResponse.php b/src/gen/lib/Model/GetItemResponse.php
index 8941717534..4ef8472842 100644
--- a/src/gen/lib/Model/GetItemResponse.php
+++ b/src/gen/lib/Model/GetItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemsResponse.php b/src/gen/lib/Model/GetItemsResponse.php
index d4c0260f62..883f32369b 100644
--- a/src/gen/lib/Model/GetItemsResponse.php
+++ b/src/gen/lib/Model/GetItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobResponse.php b/src/gen/lib/Model/GetJobResponse.php
index db710b239d..0e3dcd1b7c 100644
--- a/src/gen/lib/Model/GetJobResponse.php
+++ b/src/gen/lib/Model/GetJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobsResponse.php b/src/gen/lib/Model/GetJobsResponse.php
index c80e400439..a15116ea35 100644
--- a/src/gen/lib/Model/GetJobsResponse.php
+++ b/src/gen/lib/Model/GetJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntriesResponse.php b/src/gen/lib/Model/GetJournalEntriesResponse.php
index e44251b60a..cd95805a45 100644
--- a/src/gen/lib/Model/GetJournalEntriesResponse.php
+++ b/src/gen/lib/Model/GetJournalEntriesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntryResponse.php b/src/gen/lib/Model/GetJournalEntryResponse.php
index 4c694fdce5..f20fb3b3d5 100644
--- a/src/gen/lib/Model/GetJournalEntryResponse.php
+++ b/src/gen/lib/Model/GetJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadResponse.php b/src/gen/lib/Model/GetLeadResponse.php
index 3b11333e51..2d0e2db5a9 100644
--- a/src/gen/lib/Model/GetLeadResponse.php
+++ b/src/gen/lib/Model/GetLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadsResponse.php b/src/gen/lib/Model/GetLeadsResponse.php
index ce1a2471d8..8cdebb25c8 100644
--- a/src/gen/lib/Model/GetLeadsResponse.php
+++ b/src/gen/lib/Model/GetLeadsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountResponse.php b/src/gen/lib/Model/GetLedgerAccountResponse.php
index 44ff2ce871..1f54845e4d 100644
--- a/src/gen/lib/Model/GetLedgerAccountResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountsResponse.php b/src/gen/lib/Model/GetLedgerAccountsResponse.php
index bbebb9b83b..d3973b85ce 100644
--- a/src/gen/lib/Model/GetLedgerAccountsResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationResponse.php b/src/gen/lib/Model/GetLocationResponse.php
index 058c593e15..24bad1a42e 100644
--- a/src/gen/lib/Model/GetLocationResponse.php
+++ b/src/gen/lib/Model/GetLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationsResponse.php b/src/gen/lib/Model/GetLocationsResponse.php
index 0ee6aed204..42c9dde063 100644
--- a/src/gen/lib/Model/GetLocationsResponse.php
+++ b/src/gen/lib/Model/GetLocationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLogsResponse.php b/src/gen/lib/Model/GetLogsResponse.php
index 7dbc47bff3..a33c10ff8f 100644
--- a/src/gen/lib/Model/GetLogsResponse.php
+++ b/src/gen/lib/Model/GetLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantResponse.php b/src/gen/lib/Model/GetMerchantResponse.php
index ea7af832ec..4befeb6bf5 100644
--- a/src/gen/lib/Model/GetMerchantResponse.php
+++ b/src/gen/lib/Model/GetMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantsResponse.php b/src/gen/lib/Model/GetMerchantsResponse.php
index 680df3379d..725ffbb1cb 100644
--- a/src/gen/lib/Model/GetMerchantsResponse.php
+++ b/src/gen/lib/Model/GetMerchantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessageResponse.php b/src/gen/lib/Model/GetMessageResponse.php
index 3fecc1c965..1dbcde5e7d 100644
--- a/src/gen/lib/Model/GetMessageResponse.php
+++ b/src/gen/lib/Model/GetMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessagesResponse.php b/src/gen/lib/Model/GetMessagesResponse.php
index d7d5f5c385..774cab0c51 100644
--- a/src/gen/lib/Model/GetMessagesResponse.php
+++ b/src/gen/lib/Model/GetMessagesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupResponse.php b/src/gen/lib/Model/GetModifierGroupResponse.php
index 4f6f7ad99d..23dc9ef10a 100644
--- a/src/gen/lib/Model/GetModifierGroupResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupsResponse.php b/src/gen/lib/Model/GetModifierGroupsResponse.php
index effb56cdab..8487eab280 100644
--- a/src/gen/lib/Model/GetModifierGroupsResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierResponse.php b/src/gen/lib/Model/GetModifierResponse.php
index 0e52806278..f484de209e 100644
--- a/src/gen/lib/Model/GetModifierResponse.php
+++ b/src/gen/lib/Model/GetModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifiersResponse.php b/src/gen/lib/Model/GetModifiersResponse.php
index 0df92a3ef8..4776a14267 100644
--- a/src/gen/lib/Model/GetModifiersResponse.php
+++ b/src/gen/lib/Model/GetModifiersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNoteResponse.php b/src/gen/lib/Model/GetNoteResponse.php
index b1fbbeeeb8..5190c9db6a 100644
--- a/src/gen/lib/Model/GetNoteResponse.php
+++ b/src/gen/lib/Model/GetNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNotesResponse.php b/src/gen/lib/Model/GetNotesResponse.php
index 9d15f64853..fec29c46a0 100644
--- a/src/gen/lib/Model/GetNotesResponse.php
+++ b/src/gen/lib/Model/GetNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunitiesResponse.php b/src/gen/lib/Model/GetOpportunitiesResponse.php
index e5337c308f..3c7c119dae 100644
--- a/src/gen/lib/Model/GetOpportunitiesResponse.php
+++ b/src/gen/lib/Model/GetOpportunitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunityResponse.php b/src/gen/lib/Model/GetOpportunityResponse.php
index 7ac4e802c4..22362c99d4 100644
--- a/src/gen/lib/Model/GetOpportunityResponse.php
+++ b/src/gen/lib/Model/GetOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderResponse.php b/src/gen/lib/Model/GetOrderResponse.php
index 2b454b120c..d63085f24c 100644
--- a/src/gen/lib/Model/GetOrderResponse.php
+++ b/src/gen/lib/Model/GetOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypeResponse.php b/src/gen/lib/Model/GetOrderTypeResponse.php
index 55e23df29c..918be67627 100644
--- a/src/gen/lib/Model/GetOrderTypeResponse.php
+++ b/src/gen/lib/Model/GetOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypesResponse.php b/src/gen/lib/Model/GetOrderTypesResponse.php
index 56fa692aa5..80bc7b27c9 100644
--- a/src/gen/lib/Model/GetOrderTypesResponse.php
+++ b/src/gen/lib/Model/GetOrderTypesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrdersResponse.php b/src/gen/lib/Model/GetOrdersResponse.php
index 9cda6a47d4..f9d38fd967 100644
--- a/src/gen/lib/Model/GetOrdersResponse.php
+++ b/src/gen/lib/Model/GetOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentResponse.php b/src/gen/lib/Model/GetPaymentResponse.php
index 376f59151c..d556d6b493 100644
--- a/src/gen/lib/Model/GetPaymentResponse.php
+++ b/src/gen/lib/Model/GetPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentsResponse.php b/src/gen/lib/Model/GetPaymentsResponse.php
index 7cbe61933c..0578a5a69d 100644
--- a/src/gen/lib/Model/GetPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollResponse.php b/src/gen/lib/Model/GetPayrollResponse.php
index 43c16f59bf..650578a5b8 100644
--- a/src/gen/lib/Model/GetPayrollResponse.php
+++ b/src/gen/lib/Model/GetPayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollsResponse.php b/src/gen/lib/Model/GetPayrollsResponse.php
index bfc0b5a281..498b6a3b37 100644
--- a/src/gen/lib/Model/GetPayrollsResponse.php
+++ b/src/gen/lib/Model/GetPayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelineResponse.php b/src/gen/lib/Model/GetPipelineResponse.php
index 2a427ffd62..983352ece6 100644
--- a/src/gen/lib/Model/GetPipelineResponse.php
+++ b/src/gen/lib/Model/GetPipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelinesResponse.php b/src/gen/lib/Model/GetPipelinesResponse.php
index 691cde08de..a36db9662b 100644
--- a/src/gen/lib/Model/GetPipelinesResponse.php
+++ b/src/gen/lib/Model/GetPipelinesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentResponse.php b/src/gen/lib/Model/GetPosPaymentResponse.php
index 377b0f1f60..fc95135306 100644
--- a/src/gen/lib/Model/GetPosPaymentResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentsResponse.php b/src/gen/lib/Model/GetPosPaymentsResponse.php
index 415b261ef3..2c9c4155c4 100644
--- a/src/gen/lib/Model/GetPosPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductResponse.php b/src/gen/lib/Model/GetProductResponse.php
index aa4078033d..dc570da8cc 100644
--- a/src/gen/lib/Model/GetProductResponse.php
+++ b/src/gen/lib/Model/GetProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductsResponse.php b/src/gen/lib/Model/GetProductsResponse.php
index e0590757a9..3521073e27 100644
--- a/src/gen/lib/Model/GetProductsResponse.php
+++ b/src/gen/lib/Model/GetProductsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProfitAndLossResponse.php b/src/gen/lib/Model/GetProfitAndLossResponse.php
index 1b2cc78b10..dd913abe72 100644
--- a/src/gen/lib/Model/GetProfitAndLossResponse.php
+++ b/src/gen/lib/Model/GetProfitAndLossResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrderResponse.php b/src/gen/lib/Model/GetPurchaseOrderResponse.php
index fa0e99aa67..3b8fb6ea9c 100644
--- a/src/gen/lib/Model/GetPurchaseOrderResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrdersResponse.php b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
index 692294a7fe..cf7e384ecb 100644
--- a/src/gen/lib/Model/GetPurchaseOrdersResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceExampleResponse.php b/src/gen/lib/Model/GetResourceExampleResponse.php
index dc73775e92..5ec549a671 100644
--- a/src/gen/lib/Model/GetResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceSchemaResponse.php b/src/gen/lib/Model/GetResourceSchemaResponse.php
index 3302269ae4..2cdd3b10db 100644
--- a/src/gen/lib/Model/GetResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinkResponse.php b/src/gen/lib/Model/GetSharedLinkResponse.php
index f4d05f51d5..4415512951 100644
--- a/src/gen/lib/Model/GetSharedLinkResponse.php
+++ b/src/gen/lib/Model/GetSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinksResponse.php b/src/gen/lib/Model/GetSharedLinksResponse.php
index f4f06e6c73..7f5bb15ced 100644
--- a/src/gen/lib/Model/GetSharedLinksResponse.php
+++ b/src/gen/lib/Model/GetSharedLinksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoreResponse.php b/src/gen/lib/Model/GetStoreResponse.php
index 8cb71aedc0..e8671fe18c 100644
--- a/src/gen/lib/Model/GetStoreResponse.php
+++ b/src/gen/lib/Model/GetStoreResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoresResponse.php b/src/gen/lib/Model/GetStoresResponse.php
index 2b803b7cee..fe4488e1d3 100644
--- a/src/gen/lib/Model/GetStoresResponse.php
+++ b/src/gen/lib/Model/GetStoresResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSubsidiariesResponse.php b/src/gen/lib/Model/GetSubsidiariesResponse.php
index f460c46eb9..e9e8b33303 100644
--- a/src/gen/lib/Model/GetSubsidiariesResponse.php
+++ b/src/gen/lib/Model/GetSubsidiariesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSubsidiaryResponse.php b/src/gen/lib/Model/GetSubsidiaryResponse.php
index 69a4a76e3d..0de1f4aab2 100644
--- a/src/gen/lib/Model/GetSubsidiaryResponse.php
+++ b/src/gen/lib/Model/GetSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSupplierResponse.php b/src/gen/lib/Model/GetSupplierResponse.php
index c5bb6a8865..a0b06d66b1 100644
--- a/src/gen/lib/Model/GetSupplierResponse.php
+++ b/src/gen/lib/Model/GetSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSuppliersResponse.php b/src/gen/lib/Model/GetSuppliersResponse.php
index 147b37c838..e87cd6d210 100644
--- a/src/gen/lib/Model/GetSuppliersResponse.php
+++ b/src/gen/lib/Model/GetSuppliersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRateResponse.php b/src/gen/lib/Model/GetTaxRateResponse.php
index b1c53e4740..cbc631eaee 100644
--- a/src/gen/lib/Model/GetTaxRateResponse.php
+++ b/src/gen/lib/Model/GetTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRatesResponse.php b/src/gen/lib/Model/GetTaxRatesResponse.php
index dfa870819b..80a5e67fe2 100644
--- a/src/gen/lib/Model/GetTaxRatesResponse.php
+++ b/src/gen/lib/Model/GetTaxRatesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTenderResponse.php b/src/gen/lib/Model/GetTenderResponse.php
index a8541781b0..775eb9223b 100644
--- a/src/gen/lib/Model/GetTenderResponse.php
+++ b/src/gen/lib/Model/GetTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTendersResponse.php b/src/gen/lib/Model/GetTendersResponse.php
index 47d69abf96..9f062169e1 100644
--- a/src/gen/lib/Model/GetTendersResponse.php
+++ b/src/gen/lib/Model/GetTendersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketResponse.php b/src/gen/lib/Model/GetTicketResponse.php
index e487718732..cf99a8ab28 100644
--- a/src/gen/lib/Model/GetTicketResponse.php
+++ b/src/gen/lib/Model/GetTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketsResponse.php b/src/gen/lib/Model/GetTicketsResponse.php
index 94fd284c73..ed33338a42 100644
--- a/src/gen/lib/Model/GetTicketsResponse.php
+++ b/src/gen/lib/Model/GetTicketsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestResponse.php b/src/gen/lib/Model/GetTimeOffRequestResponse.php
index deef7038f6..39da1d94a9 100644
--- a/src/gen/lib/Model/GetTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestsResponse.php b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
index ea9a4b3a76..dc4f02dc53 100644
--- a/src/gen/lib/Model/GetTimeOffRequestsResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUploadSessionResponse.php b/src/gen/lib/Model/GetUploadSessionResponse.php
index 98f45dee11..a72706751d 100644
--- a/src/gen/lib/Model/GetUploadSessionResponse.php
+++ b/src/gen/lib/Model/GetUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUserResponse.php b/src/gen/lib/Model/GetUserResponse.php
index 29e68e11c1..7a7fcbce85 100644
--- a/src/gen/lib/Model/GetUserResponse.php
+++ b/src/gen/lib/Model/GetUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUsersResponse.php b/src/gen/lib/Model/GetUsersResponse.php
index f113b0ac3d..92268134c4 100644
--- a/src/gen/lib/Model/GetUsersResponse.php
+++ b/src/gen/lib/Model/GetUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookEventLogsResponse.php b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
index d9724b1e6b..7f08c9f7b0 100644
--- a/src/gen/lib/Model/GetWebhookEventLogsResponse.php
+++ b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookResponse.php b/src/gen/lib/Model/GetWebhookResponse.php
index 83e12e30ed..da57851478 100644
--- a/src/gen/lib/Model/GetWebhookResponse.php
+++ b/src/gen/lib/Model/GetWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhooksResponse.php b/src/gen/lib/Model/GetWebhooksResponse.php
index 7021de7620..7d63e2f646 100644
--- a/src/gen/lib/Model/GetWebhooksResponse.php
+++ b/src/gen/lib/Model/GetWebhooksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisCompany.php b/src/gen/lib/Model/HrisCompany.php
index c35ca9c89c..9ea73a7fe4 100644
--- a/src/gen/lib/Model/HrisCompany.php
+++ b/src/gen/lib/Model/HrisCompany.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisEventType.php b/src/gen/lib/Model/HrisEventType.php
index 271a8140c1..ea6f34345a 100644
--- a/src/gen/lib/Model/HrisEventType.php
+++ b/src/gen/lib/Model/HrisEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJob.php b/src/gen/lib/Model/HrisJob.php
index c8129444c5..29b7d2b0fc 100644
--- a/src/gen/lib/Model/HrisJob.php
+++ b/src/gen/lib/Model/HrisJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobLocation.php b/src/gen/lib/Model/HrisJobLocation.php
index f60e420410..3984b35c26 100644
--- a/src/gen/lib/Model/HrisJobLocation.php
+++ b/src/gen/lib/Model/HrisJobLocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobs.php b/src/gen/lib/Model/HrisJobs.php
index be36c67958..ede90c689b 100644
--- a/src/gen/lib/Model/HrisJobs.php
+++ b/src/gen/lib/Model/HrisJobs.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IntegrationState.php b/src/gen/lib/Model/IntegrationState.php
index 74e030929e..b53c2dede4 100644
--- a/src/gen/lib/Model/IntegrationState.php
+++ b/src/gen/lib/Model/IntegrationState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Invoice.php b/src/gen/lib/Model/Invoice.php
index e10b012c5c..0e49ca8a04 100644
--- a/src/gen/lib/Model/Invoice.php
+++ b/src/gen/lib/Model/Invoice.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItem.php b/src/gen/lib/Model/InvoiceItem.php
index d96191818a..8a42983463 100644
--- a/src/gen/lib/Model/InvoiceItem.php
+++ b/src/gen/lib/Model/InvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemSalesDetails.php b/src/gen/lib/Model/InvoiceItemSalesDetails.php
index eb8f71268a..3532e08385 100644
--- a/src/gen/lib/Model/InvoiceItemSalesDetails.php
+++ b/src/gen/lib/Model/InvoiceItemSalesDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemsFilter.php b/src/gen/lib/Model/InvoiceItemsFilter.php
index 259329b1de..e891921336 100644
--- a/src/gen/lib/Model/InvoiceItemsFilter.php
+++ b/src/gen/lib/Model/InvoiceItemsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceLineItem.php b/src/gen/lib/Model/InvoiceLineItem.php
index c2c3456e5c..22fde2e8c5 100644
--- a/src/gen/lib/Model/InvoiceLineItem.php
+++ b/src/gen/lib/Model/InvoiceLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceResponse.php b/src/gen/lib/Model/InvoiceResponse.php
index 6bbac5736f..7d5e7dce54 100644
--- a/src/gen/lib/Model/InvoiceResponse.php
+++ b/src/gen/lib/Model/InvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesFilter.php b/src/gen/lib/Model/InvoicesFilter.php
index a51394e4b5..b9953757f0 100644
--- a/src/gen/lib/Model/InvoicesFilter.php
+++ b/src/gen/lib/Model/InvoicesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesSort.php b/src/gen/lib/Model/InvoicesSort.php
index 36fc76991d..d9c85399b8 100644
--- a/src/gen/lib/Model/InvoicesSort.php
+++ b/src/gen/lib/Model/InvoicesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssueTrackingEventType.php b/src/gen/lib/Model/IssueTrackingEventType.php
index c7cfe27248..29985f046b 100644
--- a/src/gen/lib/Model/IssueTrackingEventType.php
+++ b/src/gen/lib/Model/IssueTrackingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssuesFilter.php b/src/gen/lib/Model/IssuesFilter.php
index da1403ab14..a7fc7bb326 100644
--- a/src/gen/lib/Model/IssuesFilter.php
+++ b/src/gen/lib/Model/IssuesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Item.php b/src/gen/lib/Model/Item.php
index ee01a8947c..21f237e3b9 100644
--- a/src/gen/lib/Model/Item.php
+++ b/src/gen/lib/Model/Item.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Job.php b/src/gen/lib/Model/Job.php
index 449f136a20..49d478e63f 100644
--- a/src/gen/lib/Model/Job.php
+++ b/src/gen/lib/Model/Job.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobLinks.php b/src/gen/lib/Model/JobLinks.php
index 94c55d4993..6d4be3e225 100644
--- a/src/gen/lib/Model/JobLinks.php
+++ b/src/gen/lib/Model/JobLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobSalary.php b/src/gen/lib/Model/JobSalary.php
index 9514e183d5..e880a3a15c 100644
--- a/src/gen/lib/Model/JobSalary.php
+++ b/src/gen/lib/Model/JobSalary.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobStatus.php b/src/gen/lib/Model/JobStatus.php
index 10001d01b6..4d112b83e3 100644
--- a/src/gen/lib/Model/JobStatus.php
+++ b/src/gen/lib/Model/JobStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesFilter.php b/src/gen/lib/Model/JournalEntriesFilter.php
index 2ade27a844..fa2daf51e0 100644
--- a/src/gen/lib/Model/JournalEntriesFilter.php
+++ b/src/gen/lib/Model/JournalEntriesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesSort.php b/src/gen/lib/Model/JournalEntriesSort.php
index b2854bbba5..f1f8b0d898 100644
--- a/src/gen/lib/Model/JournalEntriesSort.php
+++ b/src/gen/lib/Model/JournalEntriesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntry.php b/src/gen/lib/Model/JournalEntry.php
index 1436985f7a..a810e420ce 100644
--- a/src/gen/lib/Model/JournalEntry.php
+++ b/src/gen/lib/Model/JournalEntry.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntryLineItem.php b/src/gen/lib/Model/JournalEntryLineItem.php
index 2ad3eeb545..31c2e4d71e 100644
--- a/src/gen/lib/Model/JournalEntryLineItem.php
+++ b/src/gen/lib/Model/JournalEntryLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Lead.php b/src/gen/lib/Model/Lead.php
index 36c80179dd..75cc01920d 100644
--- a/src/gen/lib/Model/Lead.php
+++ b/src/gen/lib/Model/Lead.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadEventType.php b/src/gen/lib/Model/LeadEventType.php
index aea0248ce9..eaa11ee7ad 100644
--- a/src/gen/lib/Model/LeadEventType.php
+++ b/src/gen/lib/Model/LeadEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsFilter.php b/src/gen/lib/Model/LeadsFilter.php
index 201cabdd23..084609e72b 100644
--- a/src/gen/lib/Model/LeadsFilter.php
+++ b/src/gen/lib/Model/LeadsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsSort.php b/src/gen/lib/Model/LeadsSort.php
index 7f68809c92..923ae47e2a 100644
--- a/src/gen/lib/Model/LeadsSort.php
+++ b/src/gen/lib/Model/LeadsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccount.php b/src/gen/lib/Model/LedgerAccount.php
index 52ac9e42a7..1109eb7bac 100644
--- a/src/gen/lib/Model/LedgerAccount.php
+++ b/src/gen/lib/Model/LedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountCategories.php b/src/gen/lib/Model/LedgerAccountCategories.php
index b0da5b27d1..c94489e8c1 100644
--- a/src/gen/lib/Model/LedgerAccountCategories.php
+++ b/src/gen/lib/Model/LedgerAccountCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountParentAccount.php b/src/gen/lib/Model/LedgerAccountParentAccount.php
index 435f099bdb..a942c9658f 100644
--- a/src/gen/lib/Model/LedgerAccountParentAccount.php
+++ b/src/gen/lib/Model/LedgerAccountParentAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsFilter.php b/src/gen/lib/Model/LedgerAccountsFilter.php
index 62fff63438..a38e266e8b 100644
--- a/src/gen/lib/Model/LedgerAccountsFilter.php
+++ b/src/gen/lib/Model/LedgerAccountsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsSort.php b/src/gen/lib/Model/LedgerAccountsSort.php
index 4dc3e40b7b..5a871258c5 100644
--- a/src/gen/lib/Model/LedgerAccountsSort.php
+++ b/src/gen/lib/Model/LedgerAccountsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedConnectorResource.php b/src/gen/lib/Model/LinkedConnectorResource.php
index e0d8b626c8..4b0d2cee6e 100644
--- a/src/gen/lib/Model/LinkedConnectorResource.php
+++ b/src/gen/lib/Model/LinkedConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedCustomer.php b/src/gen/lib/Model/LinkedCustomer.php
index d6ab70745c..d5c58af633 100644
--- a/src/gen/lib/Model/LinkedCustomer.php
+++ b/src/gen/lib/Model/LinkedCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceCustomer.php b/src/gen/lib/Model/LinkedEcommerceCustomer.php
index 792bb1b8fd..144b42719d 100644
--- a/src/gen/lib/Model/LinkedEcommerceCustomer.php
+++ b/src/gen/lib/Model/LinkedEcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceOrder.php b/src/gen/lib/Model/LinkedEcommerceOrder.php
index f6b9370713..3cea0068da 100644
--- a/src/gen/lib/Model/LinkedEcommerceOrder.php
+++ b/src/gen/lib/Model/LinkedEcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedFolder.php b/src/gen/lib/Model/LinkedFolder.php
index b31f797b70..d6863264e2 100644
--- a/src/gen/lib/Model/LinkedFolder.php
+++ b/src/gen/lib/Model/LinkedFolder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedInvoiceItem.php b/src/gen/lib/Model/LinkedInvoiceItem.php
index 2c2110be7e..6dabef709a 100644
--- a/src/gen/lib/Model/LinkedInvoiceItem.php
+++ b/src/gen/lib/Model/LinkedInvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedLedgerAccount.php b/src/gen/lib/Model/LinkedLedgerAccount.php
index 4ad2ca8608..488fdca9a6 100644
--- a/src/gen/lib/Model/LinkedLedgerAccount.php
+++ b/src/gen/lib/Model/LinkedLedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedParentCustomer.php b/src/gen/lib/Model/LinkedParentCustomer.php
index df2aa458af..dcf67bd1bf 100644
--- a/src/gen/lib/Model/LinkedParentCustomer.php
+++ b/src/gen/lib/Model/LinkedParentCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedSupplier.php b/src/gen/lib/Model/LinkedSupplier.php
index 9d4f433f64..776f1a36b8 100644
--- a/src/gen/lib/Model/LinkedSupplier.php
+++ b/src/gen/lib/Model/LinkedSupplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTaxRate.php b/src/gen/lib/Model/LinkedTaxRate.php
index c8bba08028..2b84912cb2 100644
--- a/src/gen/lib/Model/LinkedTaxRate.php
+++ b/src/gen/lib/Model/LinkedTaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTrackingCategory.php b/src/gen/lib/Model/LinkedTrackingCategory.php
index cb3078e574..306816aba0 100644
--- a/src/gen/lib/Model/LinkedTrackingCategory.php
+++ b/src/gen/lib/Model/LinkedTrackingCategory.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Links.php b/src/gen/lib/Model/Links.php
index d76e5a5341..c6c8f6bf26 100644
--- a/src/gen/lib/Model/Links.php
+++ b/src/gen/lib/Model/Links.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Location.php b/src/gen/lib/Model/Location.php
index 5753e45b67..c6f4b90ca7 100644
--- a/src/gen/lib/Model/Location.php
+++ b/src/gen/lib/Model/Location.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Log.php b/src/gen/lib/Model/Log.php
index aa875d1443..4753aec8ec 100644
--- a/src/gen/lib/Model/Log.php
+++ b/src/gen/lib/Model/Log.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogOperation.php b/src/gen/lib/Model/LogOperation.php
index aa07a433b1..07cbd8f9af 100644
--- a/src/gen/lib/Model/LogOperation.php
+++ b/src/gen/lib/Model/LogOperation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogService.php b/src/gen/lib/Model/LogService.php
index 881b80a378..5c260286c6 100644
--- a/src/gen/lib/Model/LogService.php
+++ b/src/gen/lib/Model/LogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogsFilter.php b/src/gen/lib/Model/LogsFilter.php
index 20e596fb0f..c55e129555 100644
--- a/src/gen/lib/Model/LogsFilter.php
+++ b/src/gen/lib/Model/LogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Merchant.php b/src/gen/lib/Model/Merchant.php
index 08b0a449c3..0b5bb6663c 100644
--- a/src/gen/lib/Model/Merchant.php
+++ b/src/gen/lib/Model/Merchant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Message.php b/src/gen/lib/Model/Message.php
index f95ace8646..beb79ac14b 100644
--- a/src/gen/lib/Model/Message.php
+++ b/src/gen/lib/Model/Message.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Meta.php b/src/gen/lib/Model/Meta.php
index dc7bfef844..51924bc9b1 100644
--- a/src/gen/lib/Model/Meta.php
+++ b/src/gen/lib/Model/Meta.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/MetaCursors.php b/src/gen/lib/Model/MetaCursors.php
index f73ef24c29..79d8b12ff3 100644
--- a/src/gen/lib/Model/MetaCursors.php
+++ b/src/gen/lib/Model/MetaCursors.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModelInterface.php b/src/gen/lib/Model/ModelInterface.php
index e806afcdb4..e6bd12f0b1 100644
--- a/src/gen/lib/Model/ModelInterface.php
+++ b/src/gen/lib/Model/ModelInterface.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Modifier.php b/src/gen/lib/Model/Modifier.php
index 40ed7f5555..6fa87b85ce 100644
--- a/src/gen/lib/Model/Modifier.php
+++ b/src/gen/lib/Model/Modifier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroup.php b/src/gen/lib/Model/ModifierGroup.php
index c97273ff85..7519e8bece 100644
--- a/src/gen/lib/Model/ModifierGroup.php
+++ b/src/gen/lib/Model/ModifierGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroupFilter.php b/src/gen/lib/Model/ModifierGroupFilter.php
index 0a3047affb..449ba9a24c 100644
--- a/src/gen/lib/Model/ModifierGroupFilter.php
+++ b/src/gen/lib/Model/ModifierGroupFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotFoundResponse.php b/src/gen/lib/Model/NotFoundResponse.php
index 8f8dadb9c8..89d46fe002 100644
--- a/src/gen/lib/Model/NotFoundResponse.php
+++ b/src/gen/lib/Model/NotFoundResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotImplementedResponse.php b/src/gen/lib/Model/NotImplementedResponse.php
index 7e4093ef16..6d3c5e8de9 100644
--- a/src/gen/lib/Model/NotImplementedResponse.php
+++ b/src/gen/lib/Model/NotImplementedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Note.php b/src/gen/lib/Model/Note.php
index 6fc0d315c2..a35db9237a 100644
--- a/src/gen/lib/Model/Note.php
+++ b/src/gen/lib/Model/Note.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OAuthGrantType.php b/src/gen/lib/Model/OAuthGrantType.php
index 2e5940a91a..2a643d353f 100644
--- a/src/gen/lib/Model/OAuthGrantType.php
+++ b/src/gen/lib/Model/OAuthGrantType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Offer.php b/src/gen/lib/Model/Offer.php
index 92f775ff08..e46eadec22 100644
--- a/src/gen/lib/Model/Offer.php
+++ b/src/gen/lib/Model/Offer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesFilter.php b/src/gen/lib/Model/OpportunitiesFilter.php
index 019cd95d24..b25fd9dbaf 100644
--- a/src/gen/lib/Model/OpportunitiesFilter.php
+++ b/src/gen/lib/Model/OpportunitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesSort.php b/src/gen/lib/Model/OpportunitiesSort.php
index 23b7fe7ac1..5d9800fd67 100644
--- a/src/gen/lib/Model/OpportunitiesSort.php
+++ b/src/gen/lib/Model/OpportunitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Opportunity.php b/src/gen/lib/Model/Opportunity.php
index 88d6a49c2e..424df597ea 100644
--- a/src/gen/lib/Model/Opportunity.php
+++ b/src/gen/lib/Model/Opportunity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Order.php b/src/gen/lib/Model/Order.php
index 1d9f89208d..62fc9dec27 100644
--- a/src/gen/lib/Model/Order.php
+++ b/src/gen/lib/Model/Order.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderCustomers.php b/src/gen/lib/Model/OrderCustomers.php
index 1b5859ce76..5bcd4518ff 100644
--- a/src/gen/lib/Model/OrderCustomers.php
+++ b/src/gen/lib/Model/OrderCustomers.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderDiscounts.php b/src/gen/lib/Model/OrderDiscounts.php
index 1e285e58e1..8da4d415b5 100644
--- a/src/gen/lib/Model/OrderDiscounts.php
+++ b/src/gen/lib/Model/OrderDiscounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderFulfillments.php b/src/gen/lib/Model/OrderFulfillments.php
index fe3c40b37b..d68067bdf2 100644
--- a/src/gen/lib/Model/OrderFulfillments.php
+++ b/src/gen/lib/Model/OrderFulfillments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderLineItems.php b/src/gen/lib/Model/OrderLineItems.php
index f7cecd7254..9c774c28da 100644
--- a/src/gen/lib/Model/OrderLineItems.php
+++ b/src/gen/lib/Model/OrderLineItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPayments.php b/src/gen/lib/Model/OrderPayments.php
index 38df524dea..76bcc9e11b 100644
--- a/src/gen/lib/Model/OrderPayments.php
+++ b/src/gen/lib/Model/OrderPayments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetails.php b/src/gen/lib/Model/OrderPickupDetails.php
index 21a076500f..354725fef3 100644
--- a/src/gen/lib/Model/OrderPickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
index 3242cb4dcf..44a1d345ab 100644
--- a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsRecipient.php b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
index 4b8dfbd826..c2caf5f8ad 100644
--- a/src/gen/lib/Model/OrderPickupDetailsRecipient.php
+++ b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderRefunds.php b/src/gen/lib/Model/OrderRefunds.php
index 66944a651c..b1f2831687 100644
--- a/src/gen/lib/Model/OrderRefunds.php
+++ b/src/gen/lib/Model/OrderRefunds.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderTenders.php b/src/gen/lib/Model/OrderTenders.php
index dca84c848a..80d8f237d1 100644
--- a/src/gen/lib/Model/OrderTenders.php
+++ b/src/gen/lib/Model/OrderTenders.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderType.php b/src/gen/lib/Model/OrderType.php
index 7c47d7ff49..f099723ea8 100644
--- a/src/gen/lib/Model/OrderType.php
+++ b/src/gen/lib/Model/OrderType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Owner.php b/src/gen/lib/Model/Owner.php
index 8080e8b263..c58f5a5a33 100644
--- a/src/gen/lib/Model/Owner.php
+++ b/src/gen/lib/Model/Owner.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaginationCoverage.php b/src/gen/lib/Model/PaginationCoverage.php
index 773033e031..b09e959e1f 100644
--- a/src/gen/lib/Model/PaginationCoverage.php
+++ b/src/gen/lib/Model/PaginationCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PassThroughQuery.php b/src/gen/lib/Model/PassThroughQuery.php
index 068b9f74b8..6a0ccea6b7 100644
--- a/src/gen/lib/Model/PassThroughQuery.php
+++ b/src/gen/lib/Model/PassThroughQuery.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payment.php b/src/gen/lib/Model/Payment.php
index 8ec3329018..95043b056f 100644
--- a/src/gen/lib/Model/Payment.php
+++ b/src/gen/lib/Model/Payment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentAllocations.php b/src/gen/lib/Model/PaymentAllocations.php
index b516aeb6d0..f0b30c370c 100644
--- a/src/gen/lib/Model/PaymentAllocations.php
+++ b/src/gen/lib/Model/PaymentAllocations.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentCard.php b/src/gen/lib/Model/PaymentCard.php
index 20ada43d5e..5320edf5ce 100644
--- a/src/gen/lib/Model/PaymentCard.php
+++ b/src/gen/lib/Model/PaymentCard.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentFrequency.php b/src/gen/lib/Model/PaymentFrequency.php
index e7e98ac44e..7fbfa8f035 100644
--- a/src/gen/lib/Model/PaymentFrequency.php
+++ b/src/gen/lib/Model/PaymentFrequency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentRequiredResponse.php b/src/gen/lib/Model/PaymentRequiredResponse.php
index 1063e43bb1..798ea9a35c 100644
--- a/src/gen/lib/Model/PaymentRequiredResponse.php
+++ b/src/gen/lib/Model/PaymentRequiredResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentUnit.php b/src/gen/lib/Model/PaymentUnit.php
index 6520936f33..d2b90212ae 100644
--- a/src/gen/lib/Model/PaymentUnit.php
+++ b/src/gen/lib/Model/PaymentUnit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsFilter.php b/src/gen/lib/Model/PaymentsFilter.php
index 64aabed803..0b10770196 100644
--- a/src/gen/lib/Model/PaymentsFilter.php
+++ b/src/gen/lib/Model/PaymentsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsSort.php b/src/gen/lib/Model/PaymentsSort.php
index 85bdec698a..c0f6b4ca91 100644
--- a/src/gen/lib/Model/PaymentsSort.php
+++ b/src/gen/lib/Model/PaymentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payroll.php b/src/gen/lib/Model/Payroll.php
index f24d6044e6..095251606b 100644
--- a/src/gen/lib/Model/Payroll.php
+++ b/src/gen/lib/Model/Payroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollTotals.php b/src/gen/lib/Model/PayrollTotals.php
index e8ae7026ef..1220bb0d4b 100644
--- a/src/gen/lib/Model/PayrollTotals.php
+++ b/src/gen/lib/Model/PayrollTotals.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollsFilter.php b/src/gen/lib/Model/PayrollsFilter.php
index 191ba5a371..f1802768bf 100644
--- a/src/gen/lib/Model/PayrollsFilter.php
+++ b/src/gen/lib/Model/PayrollsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Person.php b/src/gen/lib/Model/Person.php
index 207e7658cf..14e71b0a0a 100644
--- a/src/gen/lib/Model/Person.php
+++ b/src/gen/lib/Model/Person.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PhoneNumber.php b/src/gen/lib/Model/PhoneNumber.php
index 62d86342e7..a9aa86de3d 100644
--- a/src/gen/lib/Model/PhoneNumber.php
+++ b/src/gen/lib/Model/PhoneNumber.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Pipeline.php b/src/gen/lib/Model/Pipeline.php
index 9b1c8cea47..d345972ed4 100644
--- a/src/gen/lib/Model/Pipeline.php
+++ b/src/gen/lib/Model/Pipeline.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PipelineStages.php b/src/gen/lib/Model/PipelineStages.php
index 813e4a2f3d..c87a64d82a 100644
--- a/src/gen/lib/Model/PipelineStages.php
+++ b/src/gen/lib/Model/PipelineStages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccount.php b/src/gen/lib/Model/PosBankAccount.php
index d725841efc..15c7ff4921 100644
--- a/src/gen/lib/Model/PosBankAccount.php
+++ b/src/gen/lib/Model/PosBankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccountAchDetails.php b/src/gen/lib/Model/PosBankAccountAchDetails.php
index 2e28027eaa..913603e378 100644
--- a/src/gen/lib/Model/PosBankAccountAchDetails.php
+++ b/src/gen/lib/Model/PosBankAccountAchDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPayment.php b/src/gen/lib/Model/PosPayment.php
index a7cf3c70f6..2942edb84f 100644
--- a/src/gen/lib/Model/PosPayment.php
+++ b/src/gen/lib/Model/PosPayment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentCardDetails.php b/src/gen/lib/Model/PosPaymentCardDetails.php
index ece3c8e4ec..b7c94eb16b 100644
--- a/src/gen/lib/Model/PosPaymentCardDetails.php
+++ b/src/gen/lib/Model/PosPaymentCardDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentExternalDetails.php b/src/gen/lib/Model/PosPaymentExternalDetails.php
index f6df12fd53..7ad4bea6e1 100644
--- a/src/gen/lib/Model/PosPaymentExternalDetails.php
+++ b/src/gen/lib/Model/PosPaymentExternalDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Price.php b/src/gen/lib/Model/Price.php
index 446800b5af..bec9c58ab3 100644
--- a/src/gen/lib/Model/Price.php
+++ b/src/gen/lib/Model/Price.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProbationPeriod.php b/src/gen/lib/Model/ProbationPeriod.php
index f78ecb4203..735608e4fa 100644
--- a/src/gen/lib/Model/ProbationPeriod.php
+++ b/src/gen/lib/Model/ProbationPeriod.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLoss.php b/src/gen/lib/Model/ProfitAndLoss.php
index 647b9e6aa9..42f2cb53de 100644
--- a/src/gen/lib/Model/ProfitAndLoss.php
+++ b/src/gen/lib/Model/ProfitAndLoss.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossExpenses.php b/src/gen/lib/Model/ProfitAndLossExpenses.php
index 93c3a80822..6e9b76187b 100644
--- a/src/gen/lib/Model/ProfitAndLossExpenses.php
+++ b/src/gen/lib/Model/ProfitAndLossExpenses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossFilter.php b/src/gen/lib/Model/ProfitAndLossFilter.php
index 3d07453845..37bae5cbeb 100644
--- a/src/gen/lib/Model/ProfitAndLossFilter.php
+++ b/src/gen/lib/Model/ProfitAndLossFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossGrossProfit.php b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
index 2a4d5b72b0..1ff6e8bae3 100644
--- a/src/gen/lib/Model/ProfitAndLossGrossProfit.php
+++ b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossIncome.php b/src/gen/lib/Model/ProfitAndLossIncome.php
index 218f09de85..eae2bde58b 100644
--- a/src/gen/lib/Model/ProfitAndLossIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetIncome.php b/src/gen/lib/Model/ProfitAndLossNetIncome.php
index cc249599b6..5edd853bae 100644
--- a/src/gen/lib/Model/ProfitAndLossNetIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
index fd1aa1aa7b..2bbb035693 100644
--- a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossRecord.php b/src/gen/lib/Model/ProfitAndLossRecord.php
index d297329eaa..cc64dc5e3d 100644
--- a/src/gen/lib/Model/ProfitAndLossRecord.php
+++ b/src/gen/lib/Model/ProfitAndLossRecord.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossSection.php b/src/gen/lib/Model/ProfitAndLossSection.php
index ea0b90a823..f5dce49771 100644
--- a/src/gen/lib/Model/ProfitAndLossSection.php
+++ b/src/gen/lib/Model/ProfitAndLossSection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrder.php b/src/gen/lib/Model/PurchaseOrder.php
index e2a6333e27..be760cb36d 100644
--- a/src/gen/lib/Model/PurchaseOrder.php
+++ b/src/gen/lib/Model/PurchaseOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersFilter.php b/src/gen/lib/Model/PurchaseOrdersFilter.php
index 6a61b7ebbb..2c7c400a65 100644
--- a/src/gen/lib/Model/PurchaseOrdersFilter.php
+++ b/src/gen/lib/Model/PurchaseOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersSort.php b/src/gen/lib/Model/PurchaseOrdersSort.php
index 05ec4ad851..0ecc580956 100644
--- a/src/gen/lib/Model/PurchaseOrdersSort.php
+++ b/src/gen/lib/Model/PurchaseOrdersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestCountAllocation.php b/src/gen/lib/Model/RequestCountAllocation.php
index 5d65f4e9bc..00fc31fdd8 100644
--- a/src/gen/lib/Model/RequestCountAllocation.php
+++ b/src/gen/lib/Model/RequestCountAllocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestRate.php b/src/gen/lib/Model/RequestRate.php
index da6e4a38a4..46672645af 100644
--- a/src/gen/lib/Model/RequestRate.php
+++ b/src/gen/lib/Model/RequestRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResolveWebhookResponse.php b/src/gen/lib/Model/ResolveWebhookResponse.php
index 211d23d4e8..1c6c662074 100644
--- a/src/gen/lib/Model/ResolveWebhookResponse.php
+++ b/src/gen/lib/Model/ResolveWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceExample.php b/src/gen/lib/Model/ResourceExample.php
index eba3aca639..5be3ab3f64 100644
--- a/src/gen/lib/Model/ResourceExample.php
+++ b/src/gen/lib/Model/ResourceExample.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceStatus.php b/src/gen/lib/Model/ResourceStatus.php
index 93ec6b1a00..6a2c426c00 100644
--- a/src/gen/lib/Model/ResourceStatus.php
+++ b/src/gen/lib/Model/ResourceStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Schedule.php b/src/gen/lib/Model/Schedule.php
index ddca7d66e1..bf462c49ad 100644
--- a/src/gen/lib/Model/Schedule.php
+++ b/src/gen/lib/Model/Schedule.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPattern.php b/src/gen/lib/Model/ScheduleWorkPattern.php
index 895cfa4223..a55b0ec088 100644
--- a/src/gen/lib/Model/ScheduleWorkPattern.php
+++ b/src/gen/lib/Model/ScheduleWorkPattern.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
index 47eb9d51be..5230ab4268 100644
--- a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
+++ b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SchemaSupport.php b/src/gen/lib/Model/SchemaSupport.php
index 6dbeca7bd8..f9085fa6e4 100644
--- a/src/gen/lib/Model/SchemaSupport.php
+++ b/src/gen/lib/Model/SchemaSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ServiceCharge.php b/src/gen/lib/Model/ServiceCharge.php
index a3d08b3ee0..89a8ece717 100644
--- a/src/gen/lib/Model/ServiceCharge.php
+++ b/src/gen/lib/Model/ServiceCharge.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Session.php b/src/gen/lib/Model/Session.php
index 781ab2d64d..11dbb482bf 100644
--- a/src/gen/lib/Model/Session.php
+++ b/src/gen/lib/Model/Session.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionSettings.php b/src/gen/lib/Model/SessionSettings.php
index 68bf0c0aa5..ef5a6fa661 100644
--- a/src/gen/lib/Model/SessionSettings.php
+++ b/src/gen/lib/Model/SessionSettings.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionTheme.php b/src/gen/lib/Model/SessionTheme.php
index fb62ca4d36..4384e3a348 100644
--- a/src/gen/lib/Model/SessionTheme.php
+++ b/src/gen/lib/Model/SessionTheme.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLink.php b/src/gen/lib/Model/SharedLink.php
index 96e0102955..0ba0b81063 100644
--- a/src/gen/lib/Model/SharedLink.php
+++ b/src/gen/lib/Model/SharedLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLinkTarget.php b/src/gen/lib/Model/SharedLinkTarget.php
index c9320f9470..3a5ff43711 100644
--- a/src/gen/lib/Model/SharedLinkTarget.php
+++ b/src/gen/lib/Model/SharedLinkTarget.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SimpleFormFieldOption.php b/src/gen/lib/Model/SimpleFormFieldOption.php
index 4c2fdee957..9d62cd5aa9 100644
--- a/src/gen/lib/Model/SimpleFormFieldOption.php
+++ b/src/gen/lib/Model/SimpleFormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SocialLink.php b/src/gen/lib/Model/SocialLink.php
index f4dbb8ae45..a800647db2 100644
--- a/src/gen/lib/Model/SocialLink.php
+++ b/src/gen/lib/Model/SocialLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SortDirection.php b/src/gen/lib/Model/SortDirection.php
index 16da530c88..dbcbd4a312 100644
--- a/src/gen/lib/Model/SortDirection.php
+++ b/src/gen/lib/Model/SortDirection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Status.php b/src/gen/lib/Model/Status.php
index ae376e67eb..eff7d6afa6 100644
--- a/src/gen/lib/Model/Status.php
+++ b/src/gen/lib/Model/Status.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Subsidiary.php b/src/gen/lib/Model/Subsidiary.php
index f9512aa2bb..43e692856d 100644
--- a/src/gen/lib/Model/Subsidiary.php
+++ b/src/gen/lib/Model/Subsidiary.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Supplier.php b/src/gen/lib/Model/Supplier.php
index e57a8e917f..5d9bedb309 100644
--- a/src/gen/lib/Model/Supplier.php
+++ b/src/gen/lib/Model/Supplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersFilter.php b/src/gen/lib/Model/SuppliersFilter.php
index fa48b56254..f49a7e104c 100644
--- a/src/gen/lib/Model/SuppliersFilter.php
+++ b/src/gen/lib/Model/SuppliersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersSort.php b/src/gen/lib/Model/SuppliersSort.php
index 92509cb0a9..dd294c5498 100644
--- a/src/gen/lib/Model/SuppliersSort.php
+++ b/src/gen/lib/Model/SuppliersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SupportedProperty.php b/src/gen/lib/Model/SupportedProperty.php
index d8e44eca74..d2924934e7 100644
--- a/src/gen/lib/Model/SupportedProperty.php
+++ b/src/gen/lib/Model/SupportedProperty.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tax.php b/src/gen/lib/Model/Tax.php
index 381cdb59f5..e0040ae948 100644
--- a/src/gen/lib/Model/Tax.php
+++ b/src/gen/lib/Model/Tax.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRate.php b/src/gen/lib/Model/TaxRate.php
index df3e2e5fc6..2d9dece357 100644
--- a/src/gen/lib/Model/TaxRate.php
+++ b/src/gen/lib/Model/TaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRatesFilter.php b/src/gen/lib/Model/TaxRatesFilter.php
index ac8b1be45e..00c85b73ef 100644
--- a/src/gen/lib/Model/TaxRatesFilter.php
+++ b/src/gen/lib/Model/TaxRatesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Team.php b/src/gen/lib/Model/Team.php
index fdffdb63b0..b79b1c4a47 100644
--- a/src/gen/lib/Model/Team.php
+++ b/src/gen/lib/Model/Team.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tender.php b/src/gen/lib/Model/Tender.php
index ccb7713dcc..f27df21d2e 100644
--- a/src/gen/lib/Model/Tender.php
+++ b/src/gen/lib/Model/Tender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Ticket.php b/src/gen/lib/Model/Ticket.php
index b2b6503547..a6905d93b1 100644
--- a/src/gen/lib/Model/Ticket.php
+++ b/src/gen/lib/Model/Ticket.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TicketsSort.php b/src/gen/lib/Model/TicketsSort.php
index 90ddb22b94..36ab146064 100644
--- a/src/gen/lib/Model/TicketsSort.php
+++ b/src/gen/lib/Model/TicketsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequest.php b/src/gen/lib/Model/TimeOffRequest.php
index 105b86cc09..23982f2468 100644
--- a/src/gen/lib/Model/TimeOffRequest.php
+++ b/src/gen/lib/Model/TimeOffRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestNotes.php b/src/gen/lib/Model/TimeOffRequestNotes.php
index ffcaa6416d..e2de23eb9a 100644
--- a/src/gen/lib/Model/TimeOffRequestNotes.php
+++ b/src/gen/lib/Model/TimeOffRequestNotes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestsFilter.php b/src/gen/lib/Model/TimeOffRequestsFilter.php
index 510732d0a0..c76310bff1 100644
--- a/src/gen/lib/Model/TimeOffRequestsFilter.php
+++ b/src/gen/lib/Model/TimeOffRequestsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponse.php b/src/gen/lib/Model/TooManyRequestsResponse.php
index 258669f6e7..7b6b0d56d1 100644
--- a/src/gen/lib/Model/TooManyRequestsResponse.php
+++ b/src/gen/lib/Model/TooManyRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponseDetail.php b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
index 9adaadd2a7..851816ec1e 100644
--- a/src/gen/lib/Model/TooManyRequestsResponseDetail.php
+++ b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TrackingItem.php b/src/gen/lib/Model/TrackingItem.php
index 4a62694cca..6f65db009b 100644
--- a/src/gen/lib/Model/TrackingItem.php
+++ b/src/gen/lib/Model/TrackingItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnauthorizedResponse.php b/src/gen/lib/Model/UnauthorizedResponse.php
index bcd96adcd0..913bd90705 100644
--- a/src/gen/lib/Model/UnauthorizedResponse.php
+++ b/src/gen/lib/Model/UnauthorizedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnexpectedErrorResponse.php b/src/gen/lib/Model/UnexpectedErrorResponse.php
index 629c65fb9d..1e38b09201 100644
--- a/src/gen/lib/Model/UnexpectedErrorResponse.php
+++ b/src/gen/lib/Model/UnexpectedErrorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedApiId.php b/src/gen/lib/Model/UnifiedApiId.php
index fc1c56a6bf..e138c10f0e 100644
--- a/src/gen/lib/Model/UnifiedApiId.php
+++ b/src/gen/lib/Model/UnifiedApiId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFile.php b/src/gen/lib/Model/UnifiedFile.php
index 352478a176..4cbfcc53b1 100644
--- a/src/gen/lib/Model/UnifiedFile.php
+++ b/src/gen/lib/Model/UnifiedFile.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFilePermissions.php b/src/gen/lib/Model/UnifiedFilePermissions.php
index c6b2c81475..daf9db4c53 100644
--- a/src/gen/lib/Model/UnifiedFilePermissions.php
+++ b/src/gen/lib/Model/UnifiedFilePermissions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedId.php b/src/gen/lib/Model/UnifiedId.php
index cbbaec5ad0..b9d01f7337 100644
--- a/src/gen/lib/Model/UnifiedId.php
+++ b/src/gen/lib/Model/UnifiedId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnprocessableResponse.php b/src/gen/lib/Model/UnprocessableResponse.php
index 654c88603f..a09cfd80fa 100644
--- a/src/gen/lib/Model/UnprocessableResponse.php
+++ b/src/gen/lib/Model/UnprocessableResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateActivityResponse.php b/src/gen/lib/Model/UpdateActivityResponse.php
index d454d02e1a..8816973c7d 100644
--- a/src/gen/lib/Model/UpdateActivityResponse.php
+++ b/src/gen/lib/Model/UpdateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicantResponse.php b/src/gen/lib/Model/UpdateApplicantResponse.php
index 645616ac58..1cf45133f7 100644
--- a/src/gen/lib/Model/UpdateApplicantResponse.php
+++ b/src/gen/lib/Model/UpdateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicationResponse.php b/src/gen/lib/Model/UpdateApplicationResponse.php
index 93b3311ce0..c7d3589296 100644
--- a/src/gen/lib/Model/UpdateApplicationResponse.php
+++ b/src/gen/lib/Model/UpdateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateBillResponse.php b/src/gen/lib/Model/UpdateBillResponse.php
index dbf1317896..460fc87d1c 100644
--- a/src/gen/lib/Model/UpdateBillResponse.php
+++ b/src/gen/lib/Model/UpdateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCommentResponse.php b/src/gen/lib/Model/UpdateCommentResponse.php
index cf89de4dc9..d5ff00d669 100644
--- a/src/gen/lib/Model/UpdateCommentResponse.php
+++ b/src/gen/lib/Model/UpdateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCompanyResponse.php b/src/gen/lib/Model/UpdateCompanyResponse.php
index 7fa79cd5ea..e8b4277986 100644
--- a/src/gen/lib/Model/UpdateCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConnectionResponse.php b/src/gen/lib/Model/UpdateConnectionResponse.php
index a70296bc85..77ccd12f03 100644
--- a/src/gen/lib/Model/UpdateConnectionResponse.php
+++ b/src/gen/lib/Model/UpdateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerRequest.php b/src/gen/lib/Model/UpdateConsumerRequest.php
index da25415059..0a4be1f90d 100644
--- a/src/gen/lib/Model/UpdateConsumerRequest.php
+++ b/src/gen/lib/Model/UpdateConsumerRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerResponse.php b/src/gen/lib/Model/UpdateConsumerResponse.php
index 0c97c47f7f..87ded0a9a7 100644
--- a/src/gen/lib/Model/UpdateConsumerResponse.php
+++ b/src/gen/lib/Model/UpdateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateContactResponse.php b/src/gen/lib/Model/UpdateContactResponse.php
index c293eb60dd..51cac7834f 100644
--- a/src/gen/lib/Model/UpdateContactResponse.php
+++ b/src/gen/lib/Model/UpdateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCreditNoteResponse.php b/src/gen/lib/Model/UpdateCreditNoteResponse.php
index 56a8bfddca..d9998f6d83 100644
--- a/src/gen/lib/Model/UpdateCreditNoteResponse.php
+++ b/src/gen/lib/Model/UpdateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingRequest.php b/src/gen/lib/Model/UpdateCustomMappingRequest.php
index 20af5518ce..38cdb7c82a 100644
--- a/src/gen/lib/Model/UpdateCustomMappingRequest.php
+++ b/src/gen/lib/Model/UpdateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingResponse.php b/src/gen/lib/Model/UpdateCustomMappingResponse.php
index 1d4a8a5202..ac364d5ac8 100644
--- a/src/gen/lib/Model/UpdateCustomMappingResponse.php
+++ b/src/gen/lib/Model/UpdateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomerResponse.php b/src/gen/lib/Model/UpdateCustomerResponse.php
index 0bfebcd252..5a07fcbfc2 100644
--- a/src/gen/lib/Model/UpdateCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDepartmentResponse.php b/src/gen/lib/Model/UpdateDepartmentResponse.php
index 4146ecba92..046f689cf0 100644
--- a/src/gen/lib/Model/UpdateDepartmentResponse.php
+++ b/src/gen/lib/Model/UpdateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveGroupResponse.php b/src/gen/lib/Model/UpdateDriveGroupResponse.php
index 6a4d7a3974..35522e2f6e 100644
--- a/src/gen/lib/Model/UpdateDriveGroupResponse.php
+++ b/src/gen/lib/Model/UpdateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveResponse.php b/src/gen/lib/Model/UpdateDriveResponse.php
index e811a9f162..01713959e0 100644
--- a/src/gen/lib/Model/UpdateDriveResponse.php
+++ b/src/gen/lib/Model/UpdateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
index a727ac733e..8734ecc11f 100644
--- a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
index 633752e3c3..3100f522d0 100644
--- a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEmployeeResponse.php b/src/gen/lib/Model/UpdateEmployeeResponse.php
index 7ddbce55b0..26cdd5f62a 100644
--- a/src/gen/lib/Model/UpdateEmployeeResponse.php
+++ b/src/gen/lib/Model/UpdateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileRequest.php b/src/gen/lib/Model/UpdateFileRequest.php
index 03e65f4e14..788914d36b 100644
--- a/src/gen/lib/Model/UpdateFileRequest.php
+++ b/src/gen/lib/Model/UpdateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileResponse.php b/src/gen/lib/Model/UpdateFileResponse.php
index 123a1dce40..504995905e 100644
--- a/src/gen/lib/Model/UpdateFileResponse.php
+++ b/src/gen/lib/Model/UpdateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderRequest.php b/src/gen/lib/Model/UpdateFolderRequest.php
index cb6380e629..b3b1a3a29c 100644
--- a/src/gen/lib/Model/UpdateFolderRequest.php
+++ b/src/gen/lib/Model/UpdateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderResponse.php b/src/gen/lib/Model/UpdateFolderResponse.php
index a45e261184..755f4641a0 100644
--- a/src/gen/lib/Model/UpdateFolderResponse.php
+++ b/src/gen/lib/Model/UpdateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateHrisCompanyResponse.php b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
index 51dba221dc..a5b56a4412 100644
--- a/src/gen/lib/Model/UpdateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
index d3b549bec7..2ff6c85071 100644
--- a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceResponse.php b/src/gen/lib/Model/UpdateInvoiceResponse.php
index 87129b219d..bc731b0a81 100644
--- a/src/gen/lib/Model/UpdateInvoiceResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateItemResponse.php b/src/gen/lib/Model/UpdateItemResponse.php
index 06d6d1b0ff..d12e17b5f1 100644
--- a/src/gen/lib/Model/UpdateItemResponse.php
+++ b/src/gen/lib/Model/UpdateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJobResponse.php b/src/gen/lib/Model/UpdateJobResponse.php
index a0eb8a31fe..043987714c 100644
--- a/src/gen/lib/Model/UpdateJobResponse.php
+++ b/src/gen/lib/Model/UpdateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJournalEntryResponse.php b/src/gen/lib/Model/UpdateJournalEntryResponse.php
index 6b090d5ca4..100430e156 100644
--- a/src/gen/lib/Model/UpdateJournalEntryResponse.php
+++ b/src/gen/lib/Model/UpdateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLeadResponse.php b/src/gen/lib/Model/UpdateLeadResponse.php
index 46f083b440..a52292cbb2 100644
--- a/src/gen/lib/Model/UpdateLeadResponse.php
+++ b/src/gen/lib/Model/UpdateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLedgerAccountResponse.php b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
index 4090bb2644..7933c05847 100644
--- a/src/gen/lib/Model/UpdateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLocationResponse.php b/src/gen/lib/Model/UpdateLocationResponse.php
index 3514a16590..6caeff0788 100644
--- a/src/gen/lib/Model/UpdateLocationResponse.php
+++ b/src/gen/lib/Model/UpdateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMerchantResponse.php b/src/gen/lib/Model/UpdateMerchantResponse.php
index e8f72b32e2..e9d6e0a023 100644
--- a/src/gen/lib/Model/UpdateMerchantResponse.php
+++ b/src/gen/lib/Model/UpdateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMessageResponse.php b/src/gen/lib/Model/UpdateMessageResponse.php
index 7dbf561af7..78a38ab049 100644
--- a/src/gen/lib/Model/UpdateMessageResponse.php
+++ b/src/gen/lib/Model/UpdateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierGroupResponse.php b/src/gen/lib/Model/UpdateModifierGroupResponse.php
index a1f0f6de23..3fd4183479 100644
--- a/src/gen/lib/Model/UpdateModifierGroupResponse.php
+++ b/src/gen/lib/Model/UpdateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierResponse.php b/src/gen/lib/Model/UpdateModifierResponse.php
index 2e29f7cbbc..a9e50e95af 100644
--- a/src/gen/lib/Model/UpdateModifierResponse.php
+++ b/src/gen/lib/Model/UpdateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateNoteResponse.php b/src/gen/lib/Model/UpdateNoteResponse.php
index 44b14f2eaa..e68f5c29dd 100644
--- a/src/gen/lib/Model/UpdateNoteResponse.php
+++ b/src/gen/lib/Model/UpdateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOpportunityResponse.php b/src/gen/lib/Model/UpdateOpportunityResponse.php
index 6e77315480..bd2b420482 100644
--- a/src/gen/lib/Model/UpdateOpportunityResponse.php
+++ b/src/gen/lib/Model/UpdateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderResponse.php b/src/gen/lib/Model/UpdateOrderResponse.php
index 1b39ae4f08..05842cda7a 100644
--- a/src/gen/lib/Model/UpdateOrderResponse.php
+++ b/src/gen/lib/Model/UpdateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderTypeResponse.php b/src/gen/lib/Model/UpdateOrderTypeResponse.php
index 94d6cd512b..6d28deb6d9 100644
--- a/src/gen/lib/Model/UpdateOrderTypeResponse.php
+++ b/src/gen/lib/Model/UpdateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePaymentResponse.php b/src/gen/lib/Model/UpdatePaymentResponse.php
index 816f2972ae..ca35521c05 100644
--- a/src/gen/lib/Model/UpdatePaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePipelineResponse.php b/src/gen/lib/Model/UpdatePipelineResponse.php
index 2837c98c91..c78dd1e069 100644
--- a/src/gen/lib/Model/UpdatePipelineResponse.php
+++ b/src/gen/lib/Model/UpdatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePosPaymentResponse.php b/src/gen/lib/Model/UpdatePosPaymentResponse.php
index a376c2f3cb..60cb421a96 100644
--- a/src/gen/lib/Model/UpdatePosPaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateProductResponse.php b/src/gen/lib/Model/UpdateProductResponse.php
index f5e5cdd6e5..9474edc5dc 100644
--- a/src/gen/lib/Model/UpdateProductResponse.php
+++ b/src/gen/lib/Model/UpdateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
index 28ab3c9d78..b7192d1e42 100644
--- a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSharedLinkResponse.php b/src/gen/lib/Model/UpdateSharedLinkResponse.php
index 2a65b20fd1..b780e9b3ac 100644
--- a/src/gen/lib/Model/UpdateSharedLinkResponse.php
+++ b/src/gen/lib/Model/UpdateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSubsidiaryResponse.php b/src/gen/lib/Model/UpdateSubsidiaryResponse.php
new file mode 100644
index 0000000000..ef0171df7e
--- /dev/null
+++ b/src/gen/lib/Model/UpdateSubsidiaryResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class UpdateSubsidiaryResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'UpdateSubsidiaryResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\UnifiedId'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\UnifiedId
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\UnifiedId $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/UpdateSupplierResponse.php b/src/gen/lib/Model/UpdateSupplierResponse.php
index 177ba606b0..708c9c54a7 100644
--- a/src/gen/lib/Model/UpdateSupplierResponse.php
+++ b/src/gen/lib/Model/UpdateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTaxRateResponse.php b/src/gen/lib/Model/UpdateTaxRateResponse.php
index eeceda8118..0cc048deb9 100644
--- a/src/gen/lib/Model/UpdateTaxRateResponse.php
+++ b/src/gen/lib/Model/UpdateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTenderResponse.php b/src/gen/lib/Model/UpdateTenderResponse.php
index 79a25bfe3a..aa47d7e3b7 100644
--- a/src/gen/lib/Model/UpdateTenderResponse.php
+++ b/src/gen/lib/Model/UpdateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTicketResponse.php b/src/gen/lib/Model/UpdateTicketResponse.php
index 2ffd512d32..95c33bbfc2 100644
--- a/src/gen/lib/Model/UpdateTicketResponse.php
+++ b/src/gen/lib/Model/UpdateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
index 30497082b1..ce9af8fd2a 100644
--- a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUploadSessionResponse.php b/src/gen/lib/Model/UpdateUploadSessionResponse.php
index dce81937cc..b7294da737 100644
--- a/src/gen/lib/Model/UpdateUploadSessionResponse.php
+++ b/src/gen/lib/Model/UpdateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUserResponse.php b/src/gen/lib/Model/UpdateUserResponse.php
index 8e7e5993bd..56e0d4e741 100644
--- a/src/gen/lib/Model/UpdateUserResponse.php
+++ b/src/gen/lib/Model/UpdateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookRequest.php b/src/gen/lib/Model/UpdateWebhookRequest.php
index abfe0c4e91..00b3dea96a 100644
--- a/src/gen/lib/Model/UpdateWebhookRequest.php
+++ b/src/gen/lib/Model/UpdateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookResponse.php b/src/gen/lib/Model/UpdateWebhookResponse.php
index 795978c6a5..47f71a035f 100644
--- a/src/gen/lib/Model/UpdateWebhookResponse.php
+++ b/src/gen/lib/Model/UpdateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UploadSession.php b/src/gen/lib/Model/UploadSession.php
index 6bbe46f18b..2b2255ef28 100644
--- a/src/gen/lib/Model/UploadSession.php
+++ b/src/gen/lib/Model/UploadSession.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/User.php b/src/gen/lib/Model/User.php
index 47d507a210..015f519292 100644
--- a/src/gen/lib/Model/User.php
+++ b/src/gen/lib/Model/User.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VaultEventType.php b/src/gen/lib/Model/VaultEventType.php
index a5c8696074..6f294bf10a 100644
--- a/src/gen/lib/Model/VaultEventType.php
+++ b/src/gen/lib/Model/VaultEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VirtualWebhooks.php b/src/gen/lib/Model/VirtualWebhooks.php
index 9434eb4902..be24805bf3 100644
--- a/src/gen/lib/Model/VirtualWebhooks.php
+++ b/src/gen/lib/Model/VirtualWebhooks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WalletDetails.php b/src/gen/lib/Model/WalletDetails.php
index 7a323f9ba7..eb28fc7fab 100644
--- a/src/gen/lib/Model/WalletDetails.php
+++ b/src/gen/lib/Model/WalletDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Webhook.php b/src/gen/lib/Model/Webhook.php
index e4f44f1d81..85e70c5909 100644
--- a/src/gen/lib/Model/Webhook.php
+++ b/src/gen/lib/Model/Webhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEvent.php b/src/gen/lib/Model/WebhookEvent.php
index 8d7221fa5e..6b0c06d1d7 100644
--- a/src/gen/lib/Model/WebhookEvent.php
+++ b/src/gen/lib/Model/WebhookEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLog.php b/src/gen/lib/Model/WebhookEventLog.php
index bcc96924f7..11b46317f0 100644
--- a/src/gen/lib/Model/WebhookEventLog.php
+++ b/src/gen/lib/Model/WebhookEventLog.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogAttempts.php b/src/gen/lib/Model/WebhookEventLogAttempts.php
index e9cc738dcf..859bc88422 100644
--- a/src/gen/lib/Model/WebhookEventLogAttempts.php
+++ b/src/gen/lib/Model/WebhookEventLogAttempts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogService.php b/src/gen/lib/Model/WebhookEventLogService.php
index 0a00913543..fce7597c9d 100644
--- a/src/gen/lib/Model/WebhookEventLogService.php
+++ b/src/gen/lib/Model/WebhookEventLogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilter.php b/src/gen/lib/Model/WebhookEventLogsFilter.php
index e369e30d15..28e7aff7ae 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilter.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilterService.php b/src/gen/lib/Model/WebhookEventLogsFilterService.php
index b4332df3ed..19a2f679b9 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilterService.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilterService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventType.php b/src/gen/lib/Model/WebhookEventType.php
index b36a1854d5..23dbba12b8 100644
--- a/src/gen/lib/Model/WebhookEventType.php
+++ b/src/gen/lib/Model/WebhookEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSubscription.php b/src/gen/lib/Model/WebhookSubscription.php
index 981d4e3707..9172853719 100644
--- a/src/gen/lib/Model/WebhookSubscription.php
+++ b/src/gen/lib/Model/WebhookSubscription.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSupport.php b/src/gen/lib/Model/WebhookSupport.php
index 3ca2dcc6b6..be65d3aeab 100644
--- a/src/gen/lib/Model/WebhookSupport.php
+++ b/src/gen/lib/Model/WebhookSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Website.php b/src/gen/lib/Model/Website.php
index c391989068..2dedaceb91 100644
--- a/src/gen/lib/Model/Website.php
+++ b/src/gen/lib/Model/Website.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ObjectSerializer.php b/src/gen/lib/ObjectSerializer.php
index d9c01c9091..d84d6f37c6 100644
--- a/src/gen/lib/ObjectSerializer.php
+++ b/src/gen/lib/ObjectSerializer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/AccountingApiTest.php b/src/gen/test/Api/AccountingApiTest.php
index 9993874093..cb6241e776 100644
--- a/src/gen/test/Api/AccountingApiTest.php
+++ b/src/gen/test/Api/AccountingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -647,6 +647,18 @@ public function testPurchaseOrdersUpdate()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test case for subsidiariesAdd
+ *
+ * Create Subsidiary.
+ *
+ */
+ public function testSubsidiariesAdd()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test case for subsidiariesAll
*
@@ -659,6 +671,18 @@ public function testSubsidiariesAll()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test case for subsidiariesDelete
+ *
+ * Delete Subsidiary.
+ *
+ */
+ public function testSubsidiariesDelete()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test case for subsidiariesOne
*
@@ -671,6 +695,18 @@ public function testSubsidiariesOne()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test case for subsidiariesUpdate
+ *
+ * Update Subsidiary.
+ *
+ */
+ public function testSubsidiariesUpdate()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test case for suppliersAdd
*
diff --git a/src/gen/test/Api/AtsApiTest.php b/src/gen/test/Api/AtsApiTest.php
index 624f1fe06c..c68813b935 100644
--- a/src/gen/test/Api/AtsApiTest.php
+++ b/src/gen/test/Api/AtsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/ConnectorApiTest.php b/src/gen/test/Api/ConnectorApiTest.php
index 0f22527b46..d6ef2377c3 100644
--- a/src/gen/test/Api/ConnectorApiTest.php
+++ b/src/gen/test/Api/ConnectorApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/CrmApiTest.php b/src/gen/test/Api/CrmApiTest.php
index c6f0574361..b6911c4519 100644
--- a/src/gen/test/Api/CrmApiTest.php
+++ b/src/gen/test/Api/CrmApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/EcommerceApiTest.php b/src/gen/test/Api/EcommerceApiTest.php
index 039cbcd64d..253868cabb 100644
--- a/src/gen/test/Api/EcommerceApiTest.php
+++ b/src/gen/test/Api/EcommerceApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/FileStorageApiTest.php b/src/gen/test/Api/FileStorageApiTest.php
index ff9be3827e..a42555e78b 100644
--- a/src/gen/test/Api/FileStorageApiTest.php
+++ b/src/gen/test/Api/FileStorageApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/HrisApiTest.php b/src/gen/test/Api/HrisApiTest.php
index ee300d97d3..c9c65e0bde 100644
--- a/src/gen/test/Api/HrisApiTest.php
+++ b/src/gen/test/Api/HrisApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/IssueTrackingApiTest.php b/src/gen/test/Api/IssueTrackingApiTest.php
index 6db5f624a8..6469bb1726 100644
--- a/src/gen/test/Api/IssueTrackingApiTest.php
+++ b/src/gen/test/Api/IssueTrackingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/LeadApiTest.php b/src/gen/test/Api/LeadApiTest.php
index f55b740e91..0358646974 100644
--- a/src/gen/test/Api/LeadApiTest.php
+++ b/src/gen/test/Api/LeadApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/PosApiTest.php b/src/gen/test/Api/PosApiTest.php
index e0441e1076..57e04b2c72 100644
--- a/src/gen/test/Api/PosApiTest.php
+++ b/src/gen/test/Api/PosApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/SmsApiTest.php b/src/gen/test/Api/SmsApiTest.php
index 22271ea139..cfee96d87b 100644
--- a/src/gen/test/Api/SmsApiTest.php
+++ b/src/gen/test/Api/SmsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/VaultApiTest.php b/src/gen/test/Api/VaultApiTest.php
index 2a19517a9a..6cea79b08a 100644
--- a/src/gen/test/Api/VaultApiTest.php
+++ b/src/gen/test/Api/VaultApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/WebhookApiTest.php b/src/gen/test/Api/WebhookApiTest.php
index 053315106f..7439b0f4ae 100644
--- a/src/gen/test/Api/WebhookApiTest.php
+++ b/src/gen/test/Api/WebhookApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingEventTypeTest.php b/src/gen/test/Model/AccountingEventTypeTest.php
index 0854af39bf..744458e4b6 100644
--- a/src/gen/test/Model/AccountingEventTypeTest.php
+++ b/src/gen/test/Model/AccountingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivitiesFilterTest.php b/src/gen/test/Model/ActivitiesFilterTest.php
index 8ca94f3302..84193a8b9a 100644
--- a/src/gen/test/Model/ActivitiesFilterTest.php
+++ b/src/gen/test/Model/ActivitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivitiesSortTest.php b/src/gen/test/Model/ActivitiesSortTest.php
index 58efeb27d9..3ef73ecdca 100644
--- a/src/gen/test/Model/ActivitiesSortTest.php
+++ b/src/gen/test/Model/ActivitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityAttendeeTest.php b/src/gen/test/Model/ActivityAttendeeTest.php
index 89406d65d1..6a243c0a9d 100644
--- a/src/gen/test/Model/ActivityAttendeeTest.php
+++ b/src/gen/test/Model/ActivityAttendeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityTest.php b/src/gen/test/Model/ActivityTest.php
index 3143d839b1..78660da99a 100644
--- a/src/gen/test/Model/ActivityTest.php
+++ b/src/gen/test/Model/ActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AddressTest.php b/src/gen/test/Model/AddressTest.php
index 4f911487f5..17853b90ec 100644
--- a/src/gen/test/Model/AddressTest.php
+++ b/src/gen/test/Model/AddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
index fd533f11df..5d4d50029a 100644
--- a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageTest.php
index 70a20bdd73..e03f36afe3 100644
--- a/src/gen/test/Model/ApiResourceCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
index e854411644..4cda9ec144 100644
--- a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
+++ b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceTest.php b/src/gen/test/Model/ApiResourceTest.php
index 3246f574f6..46fb1c2848 100644
--- a/src/gen/test/Model/ApiResourceTest.php
+++ b/src/gen/test/Model/ApiResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourcesTest.php b/src/gen/test/Model/ApiResourcesTest.php
index 3d24f932f1..177c6f28d5 100644
--- a/src/gen/test/Model/ApiResourcesTest.php
+++ b/src/gen/test/Model/ApiResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiStatusTest.php b/src/gen/test/Model/ApiStatusTest.php
index 716b50fa8b..9d016afb53 100644
--- a/src/gen/test/Model/ApiStatusTest.php
+++ b/src/gen/test/Model/ApiStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiTest.php b/src/gen/test/Model/ApiTest.php
index f79626585f..614c1ec040 100644
--- a/src/gen/test/Model/ApiTest.php
+++ b/src/gen/test/Model/ApiTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApisFilterTest.php b/src/gen/test/Model/ApisFilterTest.php
index 9d0bfd8d27..ad4ffbca5f 100644
--- a/src/gen/test/Model/ApisFilterTest.php
+++ b/src/gen/test/Model/ApisFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantSocialLinksTest.php b/src/gen/test/Model/ApplicantSocialLinksTest.php
index a64641a18a..93e08d4358 100644
--- a/src/gen/test/Model/ApplicantSocialLinksTest.php
+++ b/src/gen/test/Model/ApplicantSocialLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantTest.php b/src/gen/test/Model/ApplicantTest.php
index 9d1d44e914..499ce03dea 100644
--- a/src/gen/test/Model/ApplicantTest.php
+++ b/src/gen/test/Model/ApplicantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantWebsitesTest.php b/src/gen/test/Model/ApplicantWebsitesTest.php
index 47ef1ee0c7..6b8b8ecafc 100644
--- a/src/gen/test/Model/ApplicantWebsitesTest.php
+++ b/src/gen/test/Model/ApplicantWebsitesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantsFilterTest.php b/src/gen/test/Model/ApplicantsFilterTest.php
index 7bfb4b9350..b68551a42d 100644
--- a/src/gen/test/Model/ApplicantsFilterTest.php
+++ b/src/gen/test/Model/ApplicantsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationStageTest.php b/src/gen/test/Model/ApplicationStageTest.php
index 92419f82e2..a3d2faa9cf 100644
--- a/src/gen/test/Model/ApplicationStageTest.php
+++ b/src/gen/test/Model/ApplicationStageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationTest.php b/src/gen/test/Model/ApplicationTest.php
index 1e8561aca1..b1cc1da76c 100644
--- a/src/gen/test/Model/ApplicationTest.php
+++ b/src/gen/test/Model/ApplicationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AssigneeTest.php b/src/gen/test/Model/AssigneeTest.php
index a2cf495832..d388bb4f2c 100644
--- a/src/gen/test/Model/AssigneeTest.php
+++ b/src/gen/test/Model/AssigneeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsActivityTest.php b/src/gen/test/Model/AtsActivityTest.php
index 4639626c4b..8a277f3eb6 100644
--- a/src/gen/test/Model/AtsActivityTest.php
+++ b/src/gen/test/Model/AtsActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsEventTypeTest.php b/src/gen/test/Model/AtsEventTypeTest.php
index fb1b36e708..89642e5360 100644
--- a/src/gen/test/Model/AtsEventTypeTest.php
+++ b/src/gen/test/Model/AtsEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AuthTypeTest.php b/src/gen/test/Model/AuthTypeTest.php
index 799a7e46d9..c75d7d9dd8 100644
--- a/src/gen/test/Model/AuthTypeTest.php
+++ b/src/gen/test/Model/AuthTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BadRequestResponseTest.php b/src/gen/test/Model/BadRequestResponseTest.php
index c60f0a4fc7..98b396325d 100644
--- a/src/gen/test/Model/BadRequestResponseTest.php
+++ b/src/gen/test/Model/BadRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
index 405bdec45b..f918e7241e 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
index 4cbe9c7688..3074f5f521 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
index e02fefee1a..778a9e5885 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
index 01668e343b..22dce36bf3 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsTest.php
index dc9248d9ef..0ad002a403 100644
--- a/src/gen/test/Model/BalanceSheetAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityItemsTest.php b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
index cc4584abae..846b0d3537 100644
--- a/src/gen/test/Model/BalanceSheetEquityItemsTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityTest.php b/src/gen/test/Model/BalanceSheetEquityTest.php
index 950425e301..6cd172c745 100644
--- a/src/gen/test/Model/BalanceSheetEquityTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetFilterTest.php b/src/gen/test/Model/BalanceSheetFilterTest.php
index fc7006a5c2..c30c9c8582 100644
--- a/src/gen/test/Model/BalanceSheetFilterTest.php
+++ b/src/gen/test/Model/BalanceSheetFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
index 93228617cc..5c3cefc562 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
index 75deaa82e7..e9aa45c14c 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetTest.php b/src/gen/test/Model/BalanceSheetTest.php
index 85718646cc..5e65588db1 100644
--- a/src/gen/test/Model/BalanceSheetTest.php
+++ b/src/gen/test/Model/BalanceSheetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BankAccountTest.php b/src/gen/test/Model/BankAccountTest.php
index fdcacfde91..cd33fb4a4c 100644
--- a/src/gen/test/Model/BankAccountTest.php
+++ b/src/gen/test/Model/BankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BenefitTest.php b/src/gen/test/Model/BenefitTest.php
index cd529b3d71..54d258e5ad 100644
--- a/src/gen/test/Model/BenefitTest.php
+++ b/src/gen/test/Model/BenefitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillLineItemTest.php b/src/gen/test/Model/BillLineItemTest.php
index caa3d37689..9d43b3a765 100644
--- a/src/gen/test/Model/BillLineItemTest.php
+++ b/src/gen/test/Model/BillLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillTest.php b/src/gen/test/Model/BillTest.php
index a1cf60d8b6..9e84fca392 100644
--- a/src/gen/test/Model/BillTest.php
+++ b/src/gen/test/Model/BillTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsFilterTest.php b/src/gen/test/Model/BillsFilterTest.php
index 4f4f0072bf..6d49aaa346 100644
--- a/src/gen/test/Model/BillsFilterTest.php
+++ b/src/gen/test/Model/BillsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsSortTest.php b/src/gen/test/Model/BillsSortTest.php
index 9530de5076..8e03ded7bc 100644
--- a/src/gen/test/Model/BillsSortTest.php
+++ b/src/gen/test/Model/BillsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BranchTest.php b/src/gen/test/Model/BranchTest.php
index c9baa38e2c..e7f3c5efa1 100644
--- a/src/gen/test/Model/BranchTest.php
+++ b/src/gen/test/Model/BranchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CashDetailsTest.php b/src/gen/test/Model/CashDetailsTest.php
index b11428f339..0161854dea 100644
--- a/src/gen/test/Model/CashDetailsTest.php
+++ b/src/gen/test/Model/CashDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTagTest.php b/src/gen/test/Model/CollectionTagTest.php
index f33fd289fa..a859e7be3a 100644
--- a/src/gen/test/Model/CollectionTagTest.php
+++ b/src/gen/test/Model/CollectionTagTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTest.php b/src/gen/test/Model/CollectionTest.php
index cba55b0b5e..f27fae27af 100644
--- a/src/gen/test/Model/CollectionTest.php
+++ b/src/gen/test/Model/CollectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTicketCommentTest.php b/src/gen/test/Model/CollectionTicketCommentTest.php
index acb394e810..a7890b43b8 100644
--- a/src/gen/test/Model/CollectionTicketCommentTest.php
+++ b/src/gen/test/Model/CollectionTicketCommentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionUserTest.php b/src/gen/test/Model/CollectionUserTest.php
index fba44ed72b..51417ff630 100644
--- a/src/gen/test/Model/CollectionUserTest.php
+++ b/src/gen/test/Model/CollectionUserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionsSortTest.php b/src/gen/test/Model/CollectionsSortTest.php
index 4d0daca847..5eb7f4790a 100644
--- a/src/gen/test/Model/CollectionsSortTest.php
+++ b/src/gen/test/Model/CollectionsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CommentsSortTest.php b/src/gen/test/Model/CommentsSortTest.php
index 665098f211..8dc69478d1 100644
--- a/src/gen/test/Model/CommentsSortTest.php
+++ b/src/gen/test/Model/CommentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesFilterTest.php b/src/gen/test/Model/CompaniesFilterTest.php
index 3ae23b8273..f5722142f9 100644
--- a/src/gen/test/Model/CompaniesFilterTest.php
+++ b/src/gen/test/Model/CompaniesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesSortTest.php b/src/gen/test/Model/CompaniesSortTest.php
index fe61be37a4..e9971a082c 100644
--- a/src/gen/test/Model/CompaniesSortTest.php
+++ b/src/gen/test/Model/CompaniesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyInfoTest.php b/src/gen/test/Model/CompanyInfoTest.php
index 125a3efee4..93e057b737 100644
--- a/src/gen/test/Model/CompanyInfoTest.php
+++ b/src/gen/test/Model/CompanyInfoTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyRowTypeTest.php b/src/gen/test/Model/CompanyRowTypeTest.php
index c6666b1429..dd69a650ad 100644
--- a/src/gen/test/Model/CompanyRowTypeTest.php
+++ b/src/gen/test/Model/CompanyRowTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyTest.php b/src/gen/test/Model/CompanyTest.php
index 2bbdabd36f..d337438441 100644
--- a/src/gen/test/Model/CompanyTest.php
+++ b/src/gen/test/Model/CompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompensationTest.php b/src/gen/test/Model/CompensationTest.php
index d27d688057..45869ef71c 100644
--- a/src/gen/test/Model/CompensationTest.php
+++ b/src/gen/test/Model/CompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionConfigurationTest.php b/src/gen/test/Model/ConnectionConfigurationTest.php
index 30bdb9ce8a..7db7c10872 100644
--- a/src/gen/test/Model/ConnectionConfigurationTest.php
+++ b/src/gen/test/Model/ConnectionConfigurationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionDefaultsTest.php b/src/gen/test/Model/ConnectionDefaultsTest.php
index 7bae606993..5162061604 100644
--- a/src/gen/test/Model/ConnectionDefaultsTest.php
+++ b/src/gen/test/Model/ConnectionDefaultsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
index 31b20d240c..abb495a0f4 100644
--- a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
+++ b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataTest.php b/src/gen/test/Model/ConnectionImportDataTest.php
index f41d44f41a..c7cc330461 100644
--- a/src/gen/test/Model/ConnectionImportDataTest.php
+++ b/src/gen/test/Model/ConnectionImportDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionMetadataTest.php b/src/gen/test/Model/ConnectionMetadataTest.php
index 6a63699bc4..5466443a13 100644
--- a/src/gen/test/Model/ConnectionMetadataTest.php
+++ b/src/gen/test/Model/ConnectionMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionStateTest.php b/src/gen/test/Model/ConnectionStateTest.php
index 5d7167035c..bd0146437f 100644
--- a/src/gen/test/Model/ConnectionStateTest.php
+++ b/src/gen/test/Model/ConnectionStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionTest.php b/src/gen/test/Model/ConnectionTest.php
index b684994def..e5ee56a591 100644
--- a/src/gen/test/Model/ConnectionTest.php
+++ b/src/gen/test/Model/ConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionWebhookTest.php b/src/gen/test/Model/ConnectionWebhookTest.php
index ffbc6bac37..84b22ec4a8 100644
--- a/src/gen/test/Model/ConnectionWebhookTest.php
+++ b/src/gen/test/Model/ConnectionWebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorDocTest.php b/src/gen/test/Model/ConnectorDocTest.php
index 6f820f7ec8..d08425f5e6 100644
--- a/src/gen/test/Model/ConnectorDocTest.php
+++ b/src/gen/test/Model/ConnectorDocTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorEventTest.php b/src/gen/test/Model/ConnectorEventTest.php
index c701e61d3b..de70a7bfc6 100644
--- a/src/gen/test/Model/ConnectorEventTest.php
+++ b/src/gen/test/Model/ConnectorEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopes1Test.php b/src/gen/test/Model/ConnectorOauthScopes1Test.php
index f49f3dc60f..ce2f95295e 100644
--- a/src/gen/test/Model/ConnectorOauthScopes1Test.php
+++ b/src/gen/test/Model/ConnectorOauthScopes1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopesTest.php b/src/gen/test/Model/ConnectorOauthScopesTest.php
index 482e8accc5..1090f13809 100644
--- a/src/gen/test/Model/ConnectorOauthScopesTest.php
+++ b/src/gen/test/Model/ConnectorOauthScopesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorResourceTest.php b/src/gen/test/Model/ConnectorResourceTest.php
index 13c888978f..8c0a4aa55a 100644
--- a/src/gen/test/Model/ConnectorResourceTest.php
+++ b/src/gen/test/Model/ConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorSettingTest.php b/src/gen/test/Model/ConnectorSettingTest.php
index 97c71a05e4..92594498bd 100644
--- a/src/gen/test/Model/ConnectorSettingTest.php
+++ b/src/gen/test/Model/ConnectorSettingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorStatusTest.php b/src/gen/test/Model/ConnectorStatusTest.php
index 038576a605..253f8423a9 100644
--- a/src/gen/test/Model/ConnectorStatusTest.php
+++ b/src/gen/test/Model/ConnectorStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTest.php b/src/gen/test/Model/ConnectorTest.php
index e3d73e7f99..afce1d5a6c 100644
--- a/src/gen/test/Model/ConnectorTest.php
+++ b/src/gen/test/Model/ConnectorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTlsSupportTest.php b/src/gen/test/Model/ConnectorTlsSupportTest.php
index 77d660ffdd..a5c5bf7035 100644
--- a/src/gen/test/Model/ConnectorTlsSupportTest.php
+++ b/src/gen/test/Model/ConnectorTlsSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorUnifiedApisTest.php b/src/gen/test/Model/ConnectorUnifiedApisTest.php
index 52c06d8524..129708aacb 100644
--- a/src/gen/test/Model/ConnectorUnifiedApisTest.php
+++ b/src/gen/test/Model/ConnectorUnifiedApisTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorsFilterTest.php b/src/gen/test/Model/ConnectorsFilterTest.php
index 43d2ed9d2e..3387b9189d 100644
--- a/src/gen/test/Model/ConnectorsFilterTest.php
+++ b/src/gen/test/Model/ConnectorsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerConnectionTest.php b/src/gen/test/Model/ConsumerConnectionTest.php
index 9f173cc187..0a8384d421 100644
--- a/src/gen/test/Model/ConsumerConnectionTest.php
+++ b/src/gen/test/Model/ConsumerConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerMetadataTest.php b/src/gen/test/Model/ConsumerMetadataTest.php
index 19d9cad890..09d49d6345 100644
--- a/src/gen/test/Model/ConsumerMetadataTest.php
+++ b/src/gen/test/Model/ConsumerMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
index 2a48c033a0..a22952ca89 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
index 86d57b1eda..1808b3033b 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerTest.php b/src/gen/test/Model/ConsumerTest.php
index 2735a8b859..8f3f4ef826 100644
--- a/src/gen/test/Model/ConsumerTest.php
+++ b/src/gen/test/Model/ConsumerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactTest.php b/src/gen/test/Model/ContactTest.php
index 39d5b887e2..e4f96080ab 100644
--- a/src/gen/test/Model/ContactTest.php
+++ b/src/gen/test/Model/ContactTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsFilterTest.php b/src/gen/test/Model/ContactsFilterTest.php
index 7d5cbcfbbc..4ef838fe0f 100644
--- a/src/gen/test/Model/ContactsFilterTest.php
+++ b/src/gen/test/Model/ContactsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsSortTest.php b/src/gen/test/Model/ContactsSortTest.php
index 629e2d6d3e..cb84f09e4e 100644
--- a/src/gen/test/Model/ContactsSortTest.php
+++ b/src/gen/test/Model/ContactsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CopyFolderRequestTest.php b/src/gen/test/Model/CopyFolderRequestTest.php
index 85caa27698..ac73a30378 100644
--- a/src/gen/test/Model/CopyFolderRequestTest.php
+++ b/src/gen/test/Model/CopyFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateActivityResponseTest.php b/src/gen/test/Model/CreateActivityResponseTest.php
index 965d185637..8116ee7c5f 100644
--- a/src/gen/test/Model/CreateActivityResponseTest.php
+++ b/src/gen/test/Model/CreateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicantResponseTest.php b/src/gen/test/Model/CreateApplicantResponseTest.php
index 9b624ee700..7f759016b0 100644
--- a/src/gen/test/Model/CreateApplicantResponseTest.php
+++ b/src/gen/test/Model/CreateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicationResponseTest.php b/src/gen/test/Model/CreateApplicationResponseTest.php
index 9b7804aa7f..19afc5eed2 100644
--- a/src/gen/test/Model/CreateApplicationResponseTest.php
+++ b/src/gen/test/Model/CreateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateBillResponseTest.php b/src/gen/test/Model/CreateBillResponseTest.php
index 189fbe0ec3..2a11a4219f 100644
--- a/src/gen/test/Model/CreateBillResponseTest.php
+++ b/src/gen/test/Model/CreateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCommentResponseTest.php b/src/gen/test/Model/CreateCommentResponseTest.php
index 44a5a7293e..d8cf2912d9 100644
--- a/src/gen/test/Model/CreateCommentResponseTest.php
+++ b/src/gen/test/Model/CreateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCompanyResponseTest.php b/src/gen/test/Model/CreateCompanyResponseTest.php
index fe4d65c002..8d89bb9d78 100644
--- a/src/gen/test/Model/CreateCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConnectionResponseTest.php b/src/gen/test/Model/CreateConnectionResponseTest.php
index 0cf6f92dcd..178b4e0e47 100644
--- a/src/gen/test/Model/CreateConnectionResponseTest.php
+++ b/src/gen/test/Model/CreateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConsumerResponseTest.php b/src/gen/test/Model/CreateConsumerResponseTest.php
index 1fdc0df808..cca8734497 100644
--- a/src/gen/test/Model/CreateConsumerResponseTest.php
+++ b/src/gen/test/Model/CreateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateContactResponseTest.php b/src/gen/test/Model/CreateContactResponseTest.php
index d0b6b64aa6..655ede28b1 100644
--- a/src/gen/test/Model/CreateContactResponseTest.php
+++ b/src/gen/test/Model/CreateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCreditNoteResponseTest.php b/src/gen/test/Model/CreateCreditNoteResponseTest.php
index 6110a8af0d..dfe5b9e2e1 100644
--- a/src/gen/test/Model/CreateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/CreateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingRequestTest.php b/src/gen/test/Model/CreateCustomMappingRequestTest.php
index 024c00208a..e76aa7c164 100644
--- a/src/gen/test/Model/CreateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/CreateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingResponseTest.php b/src/gen/test/Model/CreateCustomMappingResponseTest.php
index 744a938bc5..2fcd62a858 100644
--- a/src/gen/test/Model/CreateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/CreateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomerResponseTest.php b/src/gen/test/Model/CreateCustomerResponseTest.php
index 093d261b7f..272cc33da5 100644
--- a/src/gen/test/Model/CreateCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDepartmentResponseTest.php b/src/gen/test/Model/CreateDepartmentResponseTest.php
index 05cd7fcc82..9365589d70 100644
--- a/src/gen/test/Model/CreateDepartmentResponseTest.php
+++ b/src/gen/test/Model/CreateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveGroupResponseTest.php b/src/gen/test/Model/CreateDriveGroupResponseTest.php
index 5ce749a1e5..1ec0d4561d 100644
--- a/src/gen/test/Model/CreateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/CreateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveResponseTest.php b/src/gen/test/Model/CreateDriveResponseTest.php
index 14bdcface1..435903c639 100644
--- a/src/gen/test/Model/CreateDriveResponseTest.php
+++ b/src/gen/test/Model/CreateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
index 509a4dc84d..6d82bde3e3 100644
--- a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
index a218734a9f..cd5bb11d4a 100644
--- a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEmployeeResponseTest.php b/src/gen/test/Model/CreateEmployeeResponseTest.php
index e45f1d604b..8bc8054949 100644
--- a/src/gen/test/Model/CreateEmployeeResponseTest.php
+++ b/src/gen/test/Model/CreateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileRequestTest.php b/src/gen/test/Model/CreateFileRequestTest.php
index 68fe68328d..e3e04f09f3 100644
--- a/src/gen/test/Model/CreateFileRequestTest.php
+++ b/src/gen/test/Model/CreateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileResponseTest.php b/src/gen/test/Model/CreateFileResponseTest.php
index 4eb084fb4b..06eebe96a5 100644
--- a/src/gen/test/Model/CreateFileResponseTest.php
+++ b/src/gen/test/Model/CreateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderRequestTest.php b/src/gen/test/Model/CreateFolderRequestTest.php
index 499cef09e6..44de234f41 100644
--- a/src/gen/test/Model/CreateFolderRequestTest.php
+++ b/src/gen/test/Model/CreateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderResponseTest.php b/src/gen/test/Model/CreateFolderResponseTest.php
index 06012ca0a3..19f8fecbc0 100644
--- a/src/gen/test/Model/CreateFolderResponseTest.php
+++ b/src/gen/test/Model/CreateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateHrisCompanyResponseTest.php b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
index 302f3396fa..ebaf2a24e3 100644
--- a/src/gen/test/Model/CreateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceItemResponseTest.php b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
index 22bd940b97..071668406e 100644
--- a/src/gen/test/Model/CreateInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceResponseTest.php b/src/gen/test/Model/CreateInvoiceResponseTest.php
index 7e0f9891c3..ae9bc34e74 100644
--- a/src/gen/test/Model/CreateInvoiceResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateItemResponseTest.php b/src/gen/test/Model/CreateItemResponseTest.php
index c045b70b77..67e682bd34 100644
--- a/src/gen/test/Model/CreateItemResponseTest.php
+++ b/src/gen/test/Model/CreateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJobResponseTest.php b/src/gen/test/Model/CreateJobResponseTest.php
index c076d97ec5..85569db615 100644
--- a/src/gen/test/Model/CreateJobResponseTest.php
+++ b/src/gen/test/Model/CreateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJournalEntryResponseTest.php b/src/gen/test/Model/CreateJournalEntryResponseTest.php
index c346c481b1..20e57ccbfa 100644
--- a/src/gen/test/Model/CreateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/CreateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLeadResponseTest.php b/src/gen/test/Model/CreateLeadResponseTest.php
index 0ac0d20c96..9d71e5a992 100644
--- a/src/gen/test/Model/CreateLeadResponseTest.php
+++ b/src/gen/test/Model/CreateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLedgerAccountResponseTest.php b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
index cb0cacf9f1..a9e805c484 100644
--- a/src/gen/test/Model/CreateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLocationResponseTest.php b/src/gen/test/Model/CreateLocationResponseTest.php
index 8ee964f24c..ce0ef08d74 100644
--- a/src/gen/test/Model/CreateLocationResponseTest.php
+++ b/src/gen/test/Model/CreateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMerchantResponseTest.php b/src/gen/test/Model/CreateMerchantResponseTest.php
index 6855f6f2c8..c47f17f6de 100644
--- a/src/gen/test/Model/CreateMerchantResponseTest.php
+++ b/src/gen/test/Model/CreateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMessageResponseTest.php b/src/gen/test/Model/CreateMessageResponseTest.php
index a74c8579ad..a5d25d6268 100644
--- a/src/gen/test/Model/CreateMessageResponseTest.php
+++ b/src/gen/test/Model/CreateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierGroupResponseTest.php b/src/gen/test/Model/CreateModifierGroupResponseTest.php
index e207cac35a..0bc1675807 100644
--- a/src/gen/test/Model/CreateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/CreateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierResponseTest.php b/src/gen/test/Model/CreateModifierResponseTest.php
index ec88ba13ce..eeda742388 100644
--- a/src/gen/test/Model/CreateModifierResponseTest.php
+++ b/src/gen/test/Model/CreateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateNoteResponseTest.php b/src/gen/test/Model/CreateNoteResponseTest.php
index 95316d8b75..6e39bd74b5 100644
--- a/src/gen/test/Model/CreateNoteResponseTest.php
+++ b/src/gen/test/Model/CreateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOpportunityResponseTest.php b/src/gen/test/Model/CreateOpportunityResponseTest.php
index b568442b10..695d45c6b7 100644
--- a/src/gen/test/Model/CreateOpportunityResponseTest.php
+++ b/src/gen/test/Model/CreateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderResponseTest.php b/src/gen/test/Model/CreateOrderResponseTest.php
index 6edf848371..97eb73f3bb 100644
--- a/src/gen/test/Model/CreateOrderResponseTest.php
+++ b/src/gen/test/Model/CreateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderTypeResponseTest.php b/src/gen/test/Model/CreateOrderTypeResponseTest.php
index b857865660..4976b51ddd 100644
--- a/src/gen/test/Model/CreateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/CreateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePaymentResponseTest.php b/src/gen/test/Model/CreatePaymentResponseTest.php
index c84ed081b5..607a5005fb 100644
--- a/src/gen/test/Model/CreatePaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePipelineResponseTest.php b/src/gen/test/Model/CreatePipelineResponseTest.php
index 9c7d0e79a3..ce562a5016 100644
--- a/src/gen/test/Model/CreatePipelineResponseTest.php
+++ b/src/gen/test/Model/CreatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePosPaymentResponseTest.php b/src/gen/test/Model/CreatePosPaymentResponseTest.php
index 4fd56f11f8..76f2e823ab 100644
--- a/src/gen/test/Model/CreatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateProductResponseTest.php b/src/gen/test/Model/CreateProductResponseTest.php
index 0c9745bed0..383055b0d4 100644
--- a/src/gen/test/Model/CreateProductResponseTest.php
+++ b/src/gen/test/Model/CreateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
index 546b192d20..15e89593e0 100644
--- a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseDataTest.php b/src/gen/test/Model/CreateSessionResponseDataTest.php
index 633677c249..5d5bf6163b 100644
--- a/src/gen/test/Model/CreateSessionResponseDataTest.php
+++ b/src/gen/test/Model/CreateSessionResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseTest.php b/src/gen/test/Model/CreateSessionResponseTest.php
index 464685b2e6..81797f7386 100644
--- a/src/gen/test/Model/CreateSessionResponseTest.php
+++ b/src/gen/test/Model/CreateSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSharedLinkResponseTest.php b/src/gen/test/Model/CreateSharedLinkResponseTest.php
index deb9674df3..0fd7548fed 100644
--- a/src/gen/test/Model/CreateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/CreateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSubsidiaryResponseTest.php b/src/gen/test/Model/CreateSubsidiaryResponseTest.php
new file mode 100644
index 0000000000..efea5bb466
--- /dev/null
+++ b/src/gen/test/Model/CreateSubsidiaryResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/CreateSupplierResponseTest.php b/src/gen/test/Model/CreateSupplierResponseTest.php
index 4d517f2d4c..b30d0aeaf2 100644
--- a/src/gen/test/Model/CreateSupplierResponseTest.php
+++ b/src/gen/test/Model/CreateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTaxRateResponseTest.php b/src/gen/test/Model/CreateTaxRateResponseTest.php
index 14780b9fc8..c3d252390f 100644
--- a/src/gen/test/Model/CreateTaxRateResponseTest.php
+++ b/src/gen/test/Model/CreateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTenderResponseTest.php b/src/gen/test/Model/CreateTenderResponseTest.php
index f039b6d29b..4a623ec22a 100644
--- a/src/gen/test/Model/CreateTenderResponseTest.php
+++ b/src/gen/test/Model/CreateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTicketResponseTest.php b/src/gen/test/Model/CreateTicketResponseTest.php
index 0a0f8e2439..eed4365672 100644
--- a/src/gen/test/Model/CreateTicketResponseTest.php
+++ b/src/gen/test/Model/CreateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
index c81f524362..e16d614d47 100644
--- a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionRequestTest.php b/src/gen/test/Model/CreateUploadSessionRequestTest.php
index 27002fe013..681358192b 100644
--- a/src/gen/test/Model/CreateUploadSessionRequestTest.php
+++ b/src/gen/test/Model/CreateUploadSessionRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionResponseTest.php b/src/gen/test/Model/CreateUploadSessionResponseTest.php
index a9601e72fb..c286546185 100644
--- a/src/gen/test/Model/CreateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/CreateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUserResponseTest.php b/src/gen/test/Model/CreateUserResponseTest.php
index 718d038769..fa4064cebf 100644
--- a/src/gen/test/Model/CreateUserResponseTest.php
+++ b/src/gen/test/Model/CreateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookRequestTest.php b/src/gen/test/Model/CreateWebhookRequestTest.php
index aa1478486b..f32f438b37 100644
--- a/src/gen/test/Model/CreateWebhookRequestTest.php
+++ b/src/gen/test/Model/CreateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookResponseTest.php b/src/gen/test/Model/CreateWebhookResponseTest.php
index ead1e3c28e..a9075dca14 100644
--- a/src/gen/test/Model/CreateWebhookResponseTest.php
+++ b/src/gen/test/Model/CreateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNoteTest.php b/src/gen/test/Model/CreditNoteTest.php
index 9b29da4167..221524ce64 100644
--- a/src/gen/test/Model/CreditNoteTest.php
+++ b/src/gen/test/Model/CreditNoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesFilterTest.php b/src/gen/test/Model/CreditNotesFilterTest.php
index dba78a0afd..dd27ffb2ba 100644
--- a/src/gen/test/Model/CreditNotesFilterTest.php
+++ b/src/gen/test/Model/CreditNotesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesSortTest.php b/src/gen/test/Model/CreditNotesSortTest.php
index c6f9fa1824..e5f030c2e4 100644
--- a/src/gen/test/Model/CreditNotesSortTest.php
+++ b/src/gen/test/Model/CreditNotesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CrmEventTypeTest.php b/src/gen/test/Model/CrmEventTypeTest.php
index 69241e3163..9a3cb40947 100644
--- a/src/gen/test/Model/CrmEventTypeTest.php
+++ b/src/gen/test/Model/CrmEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CurrencyTest.php b/src/gen/test/Model/CurrencyTest.php
index 44d3514748..9ecc5a4bb3 100644
--- a/src/gen/test/Model/CurrencyTest.php
+++ b/src/gen/test/Model/CurrencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldFinderTest.php b/src/gen/test/Model/CustomFieldFinderTest.php
index bb5ff705b2..ee9a026831 100644
--- a/src/gen/test/Model/CustomFieldFinderTest.php
+++ b/src/gen/test/Model/CustomFieldFinderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldTest.php b/src/gen/test/Model/CustomFieldTest.php
index f6ef12b373..91f7c4411b 100644
--- a/src/gen/test/Model/CustomFieldTest.php
+++ b/src/gen/test/Model/CustomFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomMappingTest.php b/src/gen/test/Model/CustomMappingTest.php
index bfa54b6ea0..8ee084df7c 100644
--- a/src/gen/test/Model/CustomMappingTest.php
+++ b/src/gen/test/Model/CustomMappingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomerTest.php b/src/gen/test/Model/CustomerTest.php
index 54e3ad2f6f..f71c52e051 100644
--- a/src/gen/test/Model/CustomerTest.php
+++ b/src/gen/test/Model/CustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersFilterTest.php b/src/gen/test/Model/CustomersFilterTest.php
index b0ae373431..8c2d2dca05 100644
--- a/src/gen/test/Model/CustomersFilterTest.php
+++ b/src/gen/test/Model/CustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersSortTest.php b/src/gen/test/Model/CustomersSortTest.php
index c6b24e99af..09aa124d45 100644
--- a/src/gen/test/Model/CustomersSortTest.php
+++ b/src/gen/test/Model/CustomersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeductionTest.php b/src/gen/test/Model/DeductionTest.php
index 2e258af2ab..53e24a0a3c 100644
--- a/src/gen/test/Model/DeductionTest.php
+++ b/src/gen/test/Model/DeductionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteActivityResponseTest.php b/src/gen/test/Model/DeleteActivityResponseTest.php
index 305051d356..4ce3c7f35a 100644
--- a/src/gen/test/Model/DeleteActivityResponseTest.php
+++ b/src/gen/test/Model/DeleteActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicantResponseTest.php b/src/gen/test/Model/DeleteApplicantResponseTest.php
index cc01e4ed9f..af07b1a116 100644
--- a/src/gen/test/Model/DeleteApplicantResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicationResponseTest.php b/src/gen/test/Model/DeleteApplicationResponseTest.php
index 84ce58d2f6..ae4fbda1f3 100644
--- a/src/gen/test/Model/DeleteApplicationResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteBillResponseTest.php b/src/gen/test/Model/DeleteBillResponseTest.php
index 9a306e49c2..c4265304c2 100644
--- a/src/gen/test/Model/DeleteBillResponseTest.php
+++ b/src/gen/test/Model/DeleteBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCommentResponseTest.php b/src/gen/test/Model/DeleteCommentResponseTest.php
index ab4e01b630..4ddd9fb982 100644
--- a/src/gen/test/Model/DeleteCommentResponseTest.php
+++ b/src/gen/test/Model/DeleteCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCompanyResponseTest.php b/src/gen/test/Model/DeleteCompanyResponseTest.php
index 6423fc9964..22f6bdc6b2 100644
--- a/src/gen/test/Model/DeleteCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteConsumerResponseTest.php b/src/gen/test/Model/DeleteConsumerResponseTest.php
index a2bb231c19..f77b646456 100644
--- a/src/gen/test/Model/DeleteConsumerResponseTest.php
+++ b/src/gen/test/Model/DeleteConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteContactResponseTest.php b/src/gen/test/Model/DeleteContactResponseTest.php
index 084019e705..a79e5b1a12 100644
--- a/src/gen/test/Model/DeleteContactResponseTest.php
+++ b/src/gen/test/Model/DeleteContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCreditNoteResponseTest.php b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
index 59d9167d60..65e5d3dc2b 100644
--- a/src/gen/test/Model/DeleteCreditNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCustomerResponseTest.php b/src/gen/test/Model/DeleteCustomerResponseTest.php
index 27b645438f..75ed478242 100644
--- a/src/gen/test/Model/DeleteCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDepartmentResponseTest.php b/src/gen/test/Model/DeleteDepartmentResponseTest.php
index ea7e9ab970..1751584e98 100644
--- a/src/gen/test/Model/DeleteDepartmentResponseTest.php
+++ b/src/gen/test/Model/DeleteDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveGroupResponseTest.php b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
index 560dcc75f0..414542d292 100644
--- a/src/gen/test/Model/DeleteDriveGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveResponseTest.php b/src/gen/test/Model/DeleteDriveResponseTest.php
index 672b9f1379..51820b92ab 100644
--- a/src/gen/test/Model/DeleteDriveResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
index af15f32810..980988e5d6 100644
--- a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
index b4820c04e0..eaa132c7c5 100644
--- a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEmployeeResponseTest.php b/src/gen/test/Model/DeleteEmployeeResponseTest.php
index a52ac29c50..6e9a329354 100644
--- a/src/gen/test/Model/DeleteEmployeeResponseTest.php
+++ b/src/gen/test/Model/DeleteEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFileResponseTest.php b/src/gen/test/Model/DeleteFileResponseTest.php
index 6cad9395c7..8cccdc2491 100644
--- a/src/gen/test/Model/DeleteFileResponseTest.php
+++ b/src/gen/test/Model/DeleteFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFolderResponseTest.php b/src/gen/test/Model/DeleteFolderResponseTest.php
index aa9cf09c71..5917dd0e8b 100644
--- a/src/gen/test/Model/DeleteFolderResponseTest.php
+++ b/src/gen/test/Model/DeleteFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
index d0e9efbad9..81dfe7d4fd 100644
--- a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteInvoiceResponseTest.php b/src/gen/test/Model/DeleteInvoiceResponseTest.php
index fae99a9700..ecf611d48d 100644
--- a/src/gen/test/Model/DeleteInvoiceResponseTest.php
+++ b/src/gen/test/Model/DeleteInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteItemResponseTest.php b/src/gen/test/Model/DeleteItemResponseTest.php
index 719e1f261a..c5dc83348c 100644
--- a/src/gen/test/Model/DeleteItemResponseTest.php
+++ b/src/gen/test/Model/DeleteItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJobResponseTest.php b/src/gen/test/Model/DeleteJobResponseTest.php
index 9be4c51c33..37125b7010 100644
--- a/src/gen/test/Model/DeleteJobResponseTest.php
+++ b/src/gen/test/Model/DeleteJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJournalEntryResponseTest.php b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
index 7ba2a0e629..18dcda069e 100644
--- a/src/gen/test/Model/DeleteJournalEntryResponseTest.php
+++ b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLeadResponseTest.php b/src/gen/test/Model/DeleteLeadResponseTest.php
index 46165c7cfb..a1f749b8d2 100644
--- a/src/gen/test/Model/DeleteLeadResponseTest.php
+++ b/src/gen/test/Model/DeleteLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
index 6e0c3bb15a..9a456a1e22 100644
--- a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLocationResponseTest.php b/src/gen/test/Model/DeleteLocationResponseTest.php
index e6b3cf7b26..7f2b41cc99 100644
--- a/src/gen/test/Model/DeleteLocationResponseTest.php
+++ b/src/gen/test/Model/DeleteLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMerchantResponseTest.php b/src/gen/test/Model/DeleteMerchantResponseTest.php
index 8e20a20404..2cf42d87c1 100644
--- a/src/gen/test/Model/DeleteMerchantResponseTest.php
+++ b/src/gen/test/Model/DeleteMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMessageResponseTest.php b/src/gen/test/Model/DeleteMessageResponseTest.php
index f7f4e28da3..1388ba670a 100644
--- a/src/gen/test/Model/DeleteMessageResponseTest.php
+++ b/src/gen/test/Model/DeleteMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierGroupResponseTest.php b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
index f53fcf65a9..b697b4f3ec 100644
--- a/src/gen/test/Model/DeleteModifierGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierResponseTest.php b/src/gen/test/Model/DeleteModifierResponseTest.php
index b862d81151..24a81e0315 100644
--- a/src/gen/test/Model/DeleteModifierResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteNoteResponseTest.php b/src/gen/test/Model/DeleteNoteResponseTest.php
index b2a05fbdc2..acc8a7f632 100644
--- a/src/gen/test/Model/DeleteNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOpportunityResponseTest.php b/src/gen/test/Model/DeleteOpportunityResponseTest.php
index 8e70cefcc6..6beabde59a 100644
--- a/src/gen/test/Model/DeleteOpportunityResponseTest.php
+++ b/src/gen/test/Model/DeleteOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderResponseTest.php b/src/gen/test/Model/DeleteOrderResponseTest.php
index a400727225..c2bc70b23c 100644
--- a/src/gen/test/Model/DeleteOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderTypeResponseTest.php b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
index c4fb24e1d3..0748a07a43 100644
--- a/src/gen/test/Model/DeleteOrderTypeResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePaymentResponseTest.php b/src/gen/test/Model/DeletePaymentResponseTest.php
index 10af7aaa12..f8fe754100 100644
--- a/src/gen/test/Model/DeletePaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePipelineResponseTest.php b/src/gen/test/Model/DeletePipelineResponseTest.php
index 2e92bbae09..b20f2edc6d 100644
--- a/src/gen/test/Model/DeletePipelineResponseTest.php
+++ b/src/gen/test/Model/DeletePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePosPaymentResponseTest.php b/src/gen/test/Model/DeletePosPaymentResponseTest.php
index ccc35e62ae..f634c74aba 100644
--- a/src/gen/test/Model/DeletePosPaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteProductResponseTest.php b/src/gen/test/Model/DeleteProductResponseTest.php
index eff5786e1a..92f8611104 100644
--- a/src/gen/test/Model/DeleteProductResponseTest.php
+++ b/src/gen/test/Model/DeleteProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
index 089cbdeee6..eb5691b642 100644
--- a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSharedLinkResponseTest.php b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
index 00710bf3a8..e17cc54f4b 100644
--- a/src/gen/test/Model/DeleteSharedLinkResponseTest.php
+++ b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSubsidiaryResponseTest.php b/src/gen/test/Model/DeleteSubsidiaryResponseTest.php
new file mode 100644
index 0000000000..58f4e2e6ab
--- /dev/null
+++ b/src/gen/test/Model/DeleteSubsidiaryResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/DeleteSupplierResponseTest.php b/src/gen/test/Model/DeleteSupplierResponseTest.php
index 9bfe826f2f..bef9c65b16 100644
--- a/src/gen/test/Model/DeleteSupplierResponseTest.php
+++ b/src/gen/test/Model/DeleteSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTaxRateResponseTest.php b/src/gen/test/Model/DeleteTaxRateResponseTest.php
index 3be7af647b..b27619f288 100644
--- a/src/gen/test/Model/DeleteTaxRateResponseTest.php
+++ b/src/gen/test/Model/DeleteTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTenderResponseTest.php b/src/gen/test/Model/DeleteTenderResponseTest.php
index 43f795731a..7eae2e9a20 100644
--- a/src/gen/test/Model/DeleteTenderResponseTest.php
+++ b/src/gen/test/Model/DeleteTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTicketResponseTest.php b/src/gen/test/Model/DeleteTicketResponseTest.php
index cc14e787c8..dc36712bdf 100644
--- a/src/gen/test/Model/DeleteTicketResponseTest.php
+++ b/src/gen/test/Model/DeleteTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
index 9b7381a424..be107f6762 100644
--- a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUploadSessionResponseTest.php b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
index 36b1be2399..6abf518d30 100644
--- a/src/gen/test/Model/DeleteUploadSessionResponseTest.php
+++ b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUserResponseTest.php b/src/gen/test/Model/DeleteUserResponseTest.php
index 93edc69bee..462031eab8 100644
--- a/src/gen/test/Model/DeleteUserResponseTest.php
+++ b/src/gen/test/Model/DeleteUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteWebhookResponseTest.php b/src/gen/test/Model/DeleteWebhookResponseTest.php
index 0d283a83de..b387559ed0 100644
--- a/src/gen/test/Model/DeleteWebhookResponseTest.php
+++ b/src/gen/test/Model/DeleteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DepartmentTest.php b/src/gen/test/Model/DepartmentTest.php
index d0b3308c81..3243f14393 100644
--- a/src/gen/test/Model/DepartmentTest.php
+++ b/src/gen/test/Model/DepartmentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupTest.php b/src/gen/test/Model/DriveGroupTest.php
index c4cdf0c1ba..0580d09d0b 100644
--- a/src/gen/test/Model/DriveGroupTest.php
+++ b/src/gen/test/Model/DriveGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupsFilterTest.php b/src/gen/test/Model/DriveGroupsFilterTest.php
index f42906ebf3..8acacb5c72 100644
--- a/src/gen/test/Model/DriveGroupsFilterTest.php
+++ b/src/gen/test/Model/DriveGroupsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveTest.php b/src/gen/test/Model/DriveTest.php
index e7a47ac5e8..8c63012bff 100644
--- a/src/gen/test/Model/DriveTest.php
+++ b/src/gen/test/Model/DriveTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DrivesFilterTest.php b/src/gen/test/Model/DrivesFilterTest.php
index 64005b7688..90ae5625e8 100644
--- a/src/gen/test/Model/DrivesFilterTest.php
+++ b/src/gen/test/Model/DrivesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceAddressTest.php b/src/gen/test/Model/EcommerceAddressTest.php
index 5e630f9fa3..88fcde4c82 100644
--- a/src/gen/test/Model/EcommerceAddressTest.php
+++ b/src/gen/test/Model/EcommerceAddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerAddressesTest.php b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
index 8d7eea33df..dfc89354e6 100644
--- a/src/gen/test/Model/EcommerceCustomerAddressesTest.php
+++ b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerTest.php b/src/gen/test/Model/EcommerceCustomerTest.php
index 6735c17177..b90ff16631 100644
--- a/src/gen/test/Model/EcommerceCustomerTest.php
+++ b/src/gen/test/Model/EcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomersFilterTest.php b/src/gen/test/Model/EcommerceCustomersFilterTest.php
index 6df225de38..de80ef39f9 100644
--- a/src/gen/test/Model/EcommerceCustomersFilterTest.php
+++ b/src/gen/test/Model/EcommerceCustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceDiscountTest.php b/src/gen/test/Model/EcommerceDiscountTest.php
index 34bdbc18b6..77bd5892a2 100644
--- a/src/gen/test/Model/EcommerceDiscountTest.php
+++ b/src/gen/test/Model/EcommerceDiscountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderLineItemTest.php b/src/gen/test/Model/EcommerceOrderLineItemTest.php
index f8976bca1d..90717a90fa 100644
--- a/src/gen/test/Model/EcommerceOrderLineItemTest.php
+++ b/src/gen/test/Model/EcommerceOrderLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderStatusTest.php b/src/gen/test/Model/EcommerceOrderStatusTest.php
index 1dab27a057..87929dfc57 100644
--- a/src/gen/test/Model/EcommerceOrderStatusTest.php
+++ b/src/gen/test/Model/EcommerceOrderStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderTest.php b/src/gen/test/Model/EcommerceOrderTest.php
index d7a063cc02..14deb716e7 100644
--- a/src/gen/test/Model/EcommerceOrderTest.php
+++ b/src/gen/test/Model/EcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrdersFilterTest.php b/src/gen/test/Model/EcommerceOrdersFilterTest.php
index 697d29c981..bdbdbe3f73 100644
--- a/src/gen/test/Model/EcommerceOrdersFilterTest.php
+++ b/src/gen/test/Model/EcommerceOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductCategoriesTest.php b/src/gen/test/Model/EcommerceProductCategoriesTest.php
index 6884c34cc1..4b2d2924af 100644
--- a/src/gen/test/Model/EcommerceProductCategoriesTest.php
+++ b/src/gen/test/Model/EcommerceProductCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImages1Test.php b/src/gen/test/Model/EcommerceProductImages1Test.php
index d087e7285b..1e789ac10b 100644
--- a/src/gen/test/Model/EcommerceProductImages1Test.php
+++ b/src/gen/test/Model/EcommerceProductImages1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImagesTest.php b/src/gen/test/Model/EcommerceProductImagesTest.php
index ca65b49740..0da0ca7cd0 100644
--- a/src/gen/test/Model/EcommerceProductImagesTest.php
+++ b/src/gen/test/Model/EcommerceProductImagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptions1Test.php b/src/gen/test/Model/EcommerceProductOptions1Test.php
index 350aaff73d..552d8db408 100644
--- a/src/gen/test/Model/EcommerceProductOptions1Test.php
+++ b/src/gen/test/Model/EcommerceProductOptions1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptionsTest.php b/src/gen/test/Model/EcommerceProductOptionsTest.php
index 48e1288cee..2037ce2f6d 100644
--- a/src/gen/test/Model/EcommerceProductOptionsTest.php
+++ b/src/gen/test/Model/EcommerceProductOptionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductTest.php b/src/gen/test/Model/EcommerceProductTest.php
index 5002af3628..e6927d9dda 100644
--- a/src/gen/test/Model/EcommerceProductTest.php
+++ b/src/gen/test/Model/EcommerceProductTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductVariantsTest.php b/src/gen/test/Model/EcommerceProductVariantsTest.php
index 80ac473f03..b037edc2f0 100644
--- a/src/gen/test/Model/EcommerceProductVariantsTest.php
+++ b/src/gen/test/Model/EcommerceProductVariantsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceStoreTest.php b/src/gen/test/Model/EcommerceStoreTest.php
index 4b00814320..8fb9c1f8a3 100644
--- a/src/gen/test/Model/EcommerceStoreTest.php
+++ b/src/gen/test/Model/EcommerceStoreTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmailTest.php b/src/gen/test/Model/EmailTest.php
index 6a3b64b2a7..35ad4b894c 100644
--- a/src/gen/test/Model/EmailTest.php
+++ b/src/gen/test/Model/EmailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeCompensationTest.php b/src/gen/test/Model/EmployeeCompensationTest.php
index 952a8eec15..c19e91d83f 100644
--- a/src/gen/test/Model/EmployeeCompensationTest.php
+++ b/src/gen/test/Model/EmployeeCompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeEmploymentRoleTest.php b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
index a56640cf69..7b6a0d84ad 100644
--- a/src/gen/test/Model/EmployeeEmploymentRoleTest.php
+++ b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeJobTest.php b/src/gen/test/Model/EmployeeJobTest.php
index 29a0091c5c..6ebf397264 100644
--- a/src/gen/test/Model/EmployeeJobTest.php
+++ b/src/gen/test/Model/EmployeeJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeListTest.php b/src/gen/test/Model/EmployeeListTest.php
index 3b40684fba..1b11abfd7b 100644
--- a/src/gen/test/Model/EmployeeListTest.php
+++ b/src/gen/test/Model/EmployeeListTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeManagerTest.php b/src/gen/test/Model/EmployeeManagerTest.php
index 7e512b942e..74bbe29196 100644
--- a/src/gen/test/Model/EmployeeManagerTest.php
+++ b/src/gen/test/Model/EmployeeManagerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeePayrollTest.php b/src/gen/test/Model/EmployeePayrollTest.php
index 0a8dea7f50..57d063c904 100644
--- a/src/gen/test/Model/EmployeePayrollTest.php
+++ b/src/gen/test/Model/EmployeePayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeSchedulesTest.php b/src/gen/test/Model/EmployeeSchedulesTest.php
index a9a662d675..cf52ebfeeb 100644
--- a/src/gen/test/Model/EmployeeSchedulesTest.php
+++ b/src/gen/test/Model/EmployeeSchedulesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeTest.php b/src/gen/test/Model/EmployeeTest.php
index 87bb6cbc24..133a25424e 100644
--- a/src/gen/test/Model/EmployeeTest.php
+++ b/src/gen/test/Model/EmployeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesFilterTest.php b/src/gen/test/Model/EmployeesFilterTest.php
index 61a57c8184..a2273ab255 100644
--- a/src/gen/test/Model/EmployeesFilterTest.php
+++ b/src/gen/test/Model/EmployeesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesSortTest.php b/src/gen/test/Model/EmployeesSortTest.php
index bf93a34731..bfb7f4ad86 100644
--- a/src/gen/test/Model/EmployeesSortTest.php
+++ b/src/gen/test/Model/EmployeesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmploymentStatusTest.php b/src/gen/test/Model/EmploymentStatusTest.php
index 450d9ef2c1..ade0cdfadc 100644
--- a/src/gen/test/Model/EmploymentStatusTest.php
+++ b/src/gen/test/Model/EmploymentStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ErrorTest.php b/src/gen/test/Model/ErrorTest.php
index 118ebecbd1..047bf413ec 100644
--- a/src/gen/test/Model/ErrorTest.php
+++ b/src/gen/test/Model/ErrorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ExecuteWebhookResponseTest.php b/src/gen/test/Model/ExecuteWebhookResponseTest.php
index c17f2fbda0..8e53090715 100644
--- a/src/gen/test/Model/ExecuteWebhookResponseTest.php
+++ b/src/gen/test/Model/ExecuteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileStorageEventTypeTest.php b/src/gen/test/Model/FileStorageEventTypeTest.php
index c08aa03d60..2864e3edbb 100644
--- a/src/gen/test/Model/FileStorageEventTypeTest.php
+++ b/src/gen/test/Model/FileStorageEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileTypeTest.php b/src/gen/test/Model/FileTypeTest.php
index dc3b3900ef..3bf6073349 100644
--- a/src/gen/test/Model/FileTypeTest.php
+++ b/src/gen/test/Model/FileTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesFilterTest.php b/src/gen/test/Model/FilesFilterTest.php
index 4416ffe3e0..1d947952d8 100644
--- a/src/gen/test/Model/FilesFilterTest.php
+++ b/src/gen/test/Model/FilesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSearchTest.php b/src/gen/test/Model/FilesSearchTest.php
index aa91ec0415..e6f994c496 100644
--- a/src/gen/test/Model/FilesSearchTest.php
+++ b/src/gen/test/Model/FilesSearchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSortTest.php b/src/gen/test/Model/FilesSortTest.php
index 4401303a34..2404404496 100644
--- a/src/gen/test/Model/FilesSortTest.php
+++ b/src/gen/test/Model/FilesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FolderTest.php b/src/gen/test/Model/FolderTest.php
index df4002b65e..34368c2576 100644
--- a/src/gen/test/Model/FolderTest.php
+++ b/src/gen/test/Model/FolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionGroupTest.php b/src/gen/test/Model/FormFieldOptionGroupTest.php
index b657393052..a9fb994b56 100644
--- a/src/gen/test/Model/FormFieldOptionGroupTest.php
+++ b/src/gen/test/Model/FormFieldOptionGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionTest.php b/src/gen/test/Model/FormFieldOptionTest.php
index 6d694bfd54..f693d55c92 100644
--- a/src/gen/test/Model/FormFieldOptionTest.php
+++ b/src/gen/test/Model/FormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldTest.php b/src/gen/test/Model/FormFieldTest.php
index d950819905..be65f7afc1 100644
--- a/src/gen/test/Model/FormFieldTest.php
+++ b/src/gen/test/Model/FormFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GenderTest.php b/src/gen/test/Model/GenderTest.php
index efa4c6065a..7f561bc953 100644
--- a/src/gen/test/Model/GenderTest.php
+++ b/src/gen/test/Model/GenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetActivitiesResponseTest.php b/src/gen/test/Model/GetActivitiesResponseTest.php
index 2b8a659383..9c7bf78dcf 100644
--- a/src/gen/test/Model/GetActivitiesResponseTest.php
+++ b/src/gen/test/Model/GetActivitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetActivityResponseTest.php b/src/gen/test/Model/GetActivityResponseTest.php
index 347033c6b4..f17775df96 100644
--- a/src/gen/test/Model/GetActivityResponseTest.php
+++ b/src/gen/test/Model/GetActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
index e3ca6d95f7..9340c2dffc 100644
--- a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceResponseTest.php b/src/gen/test/Model/GetApiResourceResponseTest.php
index e6881b76d2..104764fd22 100644
--- a/src/gen/test/Model/GetApiResourceResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResponseTest.php b/src/gen/test/Model/GetApiResponseTest.php
index 85ff1373ca..22f2ddcfe8 100644
--- a/src/gen/test/Model/GetApiResponseTest.php
+++ b/src/gen/test/Model/GetApiResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApisResponseTest.php b/src/gen/test/Model/GetApisResponseTest.php
index 561a03bede..99e21ae52e 100644
--- a/src/gen/test/Model/GetApisResponseTest.php
+++ b/src/gen/test/Model/GetApisResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantResponseTest.php b/src/gen/test/Model/GetApplicantResponseTest.php
index 2274d33769..00f58f938c 100644
--- a/src/gen/test/Model/GetApplicantResponseTest.php
+++ b/src/gen/test/Model/GetApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantsResponseTest.php b/src/gen/test/Model/GetApplicantsResponseTest.php
index 9d9a87ea27..3856fc2969 100644
--- a/src/gen/test/Model/GetApplicantsResponseTest.php
+++ b/src/gen/test/Model/GetApplicantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationResponseTest.php b/src/gen/test/Model/GetApplicationResponseTest.php
index 2ffd0f456f..529d1ef110 100644
--- a/src/gen/test/Model/GetApplicationResponseTest.php
+++ b/src/gen/test/Model/GetApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationsResponseTest.php b/src/gen/test/Model/GetApplicationsResponseTest.php
index f1e80f823f..65db81d308 100644
--- a/src/gen/test/Model/GetApplicationsResponseTest.php
+++ b/src/gen/test/Model/GetApplicationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBalanceSheetResponseTest.php b/src/gen/test/Model/GetBalanceSheetResponseTest.php
index f6ee4fc153..f9fbd2ba9d 100644
--- a/src/gen/test/Model/GetBalanceSheetResponseTest.php
+++ b/src/gen/test/Model/GetBalanceSheetResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillResponseTest.php b/src/gen/test/Model/GetBillResponseTest.php
index 45f3ec4c29..2256364e32 100644
--- a/src/gen/test/Model/GetBillResponseTest.php
+++ b/src/gen/test/Model/GetBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillsResponseTest.php b/src/gen/test/Model/GetBillsResponseTest.php
index 3f94d7a856..f107630681 100644
--- a/src/gen/test/Model/GetBillsResponseTest.php
+++ b/src/gen/test/Model/GetBillsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionResponseTest.php b/src/gen/test/Model/GetCollectionResponseTest.php
index ffc703225d..5bab9424b8 100644
--- a/src/gen/test/Model/GetCollectionResponseTest.php
+++ b/src/gen/test/Model/GetCollectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionTagsResponseTest.php b/src/gen/test/Model/GetCollectionTagsResponseTest.php
index 853c054c63..d7bd069e3a 100644
--- a/src/gen/test/Model/GetCollectionTagsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionTagsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUserResponseTest.php b/src/gen/test/Model/GetCollectionUserResponseTest.php
index 4b36d485b4..8c22035ac1 100644
--- a/src/gen/test/Model/GetCollectionUserResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUsersResponseTest.php b/src/gen/test/Model/GetCollectionUsersResponseTest.php
index f70f3fb21f..07f81b1b2d 100644
--- a/src/gen/test/Model/GetCollectionUsersResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionsResponseTest.php b/src/gen/test/Model/GetCollectionsResponseTest.php
index 151ecaf203..f4c19f96ea 100644
--- a/src/gen/test/Model/GetCollectionsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentResponseTest.php b/src/gen/test/Model/GetCommentResponseTest.php
index 1f63a23883..3f53eb043e 100644
--- a/src/gen/test/Model/GetCommentResponseTest.php
+++ b/src/gen/test/Model/GetCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentsResponseTest.php b/src/gen/test/Model/GetCommentsResponseTest.php
index a224480ba4..089201984c 100644
--- a/src/gen/test/Model/GetCommentsResponseTest.php
+++ b/src/gen/test/Model/GetCommentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompaniesResponseTest.php b/src/gen/test/Model/GetCompaniesResponseTest.php
index c2c4af8e56..81f9895466 100644
--- a/src/gen/test/Model/GetCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyInfoResponseTest.php b/src/gen/test/Model/GetCompanyInfoResponseTest.php
index 84954b1e6e..fc00a11228 100644
--- a/src/gen/test/Model/GetCompanyInfoResponseTest.php
+++ b/src/gen/test/Model/GetCompanyInfoResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyResponseTest.php b/src/gen/test/Model/GetCompanyResponseTest.php
index 4190d84d17..76957990f2 100644
--- a/src/gen/test/Model/GetCompanyResponseTest.php
+++ b/src/gen/test/Model/GetCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionResponseTest.php b/src/gen/test/Model/GetConnectionResponseTest.php
index 4caaa07474..76e6dfb92e 100644
--- a/src/gen/test/Model/GetConnectionResponseTest.php
+++ b/src/gen/test/Model/GetConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionsResponseTest.php b/src/gen/test/Model/GetConnectionsResponseTest.php
index 0098316d99..20cd7610b2 100644
--- a/src/gen/test/Model/GetConnectionsResponseTest.php
+++ b/src/gen/test/Model/GetConnectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
index 098f25c3ca..ea018928fd 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
index 07cbf8cb1d..69ea5fceaa 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceResponseTest.php b/src/gen/test/Model/GetConnectorResourceResponseTest.php
index 9c99af3023..876e4e6af3 100644
--- a/src/gen/test/Model/GetConnectorResourceResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
index 10cc70cbd4..5b1828376d 100644
--- a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResponseTest.php b/src/gen/test/Model/GetConnectorResponseTest.php
index 49385508a2..9e9ec8cb58 100644
--- a/src/gen/test/Model/GetConnectorResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorsResponseTest.php b/src/gen/test/Model/GetConnectorsResponseTest.php
index 30a21b2aae..cc08f7204f 100644
--- a/src/gen/test/Model/GetConnectorsResponseTest.php
+++ b/src/gen/test/Model/GetConnectorsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumerResponseTest.php b/src/gen/test/Model/GetConsumerResponseTest.php
index 20c2664065..ddf4581b84 100644
--- a/src/gen/test/Model/GetConsumerResponseTest.php
+++ b/src/gen/test/Model/GetConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseDataTest.php b/src/gen/test/Model/GetConsumersResponseDataTest.php
index 433638e8c8..0b97da7f03 100644
--- a/src/gen/test/Model/GetConsumersResponseDataTest.php
+++ b/src/gen/test/Model/GetConsumersResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseTest.php b/src/gen/test/Model/GetConsumersResponseTest.php
index 1bef0d6c09..340dbf77f0 100644
--- a/src/gen/test/Model/GetConsumersResponseTest.php
+++ b/src/gen/test/Model/GetConsumersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactResponseTest.php b/src/gen/test/Model/GetContactResponseTest.php
index 2f29f9ba7d..8a2db35919 100644
--- a/src/gen/test/Model/GetContactResponseTest.php
+++ b/src/gen/test/Model/GetContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactsResponseTest.php b/src/gen/test/Model/GetContactsResponseTest.php
index de32935e16..cde61fd3a6 100644
--- a/src/gen/test/Model/GetContactsResponseTest.php
+++ b/src/gen/test/Model/GetContactsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNoteResponseTest.php b/src/gen/test/Model/GetCreditNoteResponseTest.php
index 1a71670233..35c8b03b68 100644
--- a/src/gen/test/Model/GetCreditNoteResponseTest.php
+++ b/src/gen/test/Model/GetCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNotesResponseTest.php b/src/gen/test/Model/GetCreditNotesResponseTest.php
index 8eca030fc9..ce1cb8850e 100644
--- a/src/gen/test/Model/GetCreditNotesResponseTest.php
+++ b/src/gen/test/Model/GetCreditNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomFieldsResponseTest.php b/src/gen/test/Model/GetCustomFieldsResponseTest.php
index 186e4ef571..8a4eb47a7c 100644
--- a/src/gen/test/Model/GetCustomFieldsResponseTest.php
+++ b/src/gen/test/Model/GetCustomFieldsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomMappingResponseTest.php b/src/gen/test/Model/GetCustomMappingResponseTest.php
index f9fea514b8..c59336a0a6 100644
--- a/src/gen/test/Model/GetCustomMappingResponseTest.php
+++ b/src/gen/test/Model/GetCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomerResponseTest.php b/src/gen/test/Model/GetCustomerResponseTest.php
index 236ecb974e..11f4aa36a9 100644
--- a/src/gen/test/Model/GetCustomerResponseTest.php
+++ b/src/gen/test/Model/GetCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomersResponseTest.php b/src/gen/test/Model/GetCustomersResponseTest.php
index 5365c8412d..da308937be 100644
--- a/src/gen/test/Model/GetCustomersResponseTest.php
+++ b/src/gen/test/Model/GetCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentResponseTest.php b/src/gen/test/Model/GetDepartmentResponseTest.php
index a9656bb328..feffe82057 100644
--- a/src/gen/test/Model/GetDepartmentResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentsResponseTest.php b/src/gen/test/Model/GetDepartmentsResponseTest.php
index 33360633bd..cc377a7e55 100644
--- a/src/gen/test/Model/GetDepartmentsResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupResponseTest.php b/src/gen/test/Model/GetDriveGroupResponseTest.php
index def7365d6e..6f407b7246 100644
--- a/src/gen/test/Model/GetDriveGroupResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupsResponseTest.php b/src/gen/test/Model/GetDriveGroupsResponseTest.php
index 50787e84d5..954e170a58 100644
--- a/src/gen/test/Model/GetDriveGroupsResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveResponseTest.php b/src/gen/test/Model/GetDriveResponseTest.php
index c5b7df1117..a5fb29eef1 100644
--- a/src/gen/test/Model/GetDriveResponseTest.php
+++ b/src/gen/test/Model/GetDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDrivesResponseTest.php b/src/gen/test/Model/GetDrivesResponseTest.php
index 49a9a9697b..7c34d10b45 100644
--- a/src/gen/test/Model/GetDrivesResponseTest.php
+++ b/src/gen/test/Model/GetDrivesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
index d8ba80d232..321ac6bee2 100644
--- a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
index 38e26f6b7b..d1aa051647 100644
--- a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrderResponseTest.php b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
index bbe85183c3..30d88bf760 100644
--- a/src/gen/test/Model/GetEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
index 33eb0d4776..d20addb6c2 100644
--- a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollResponseTest.php b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
index 68917241f4..05e4205ec9 100644
--- a/src/gen/test/Model/GetEmployeePayrollResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
index 40ddda1c65..0b16ee2ae3 100644
--- a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeResponseTest.php b/src/gen/test/Model/GetEmployeeResponseTest.php
index e4982085da..065e0c6d2a 100644
--- a/src/gen/test/Model/GetEmployeeResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
index e1f9d2315b..83f326b2e6 100644
--- a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeesResponseTest.php b/src/gen/test/Model/GetEmployeesResponseTest.php
index 804fef0c29..801cb277d9 100644
--- a/src/gen/test/Model/GetEmployeesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFileResponseTest.php b/src/gen/test/Model/GetFileResponseTest.php
index 9ae5791ec2..7bb7cc7f9c 100644
--- a/src/gen/test/Model/GetFileResponseTest.php
+++ b/src/gen/test/Model/GetFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFilesResponseTest.php b/src/gen/test/Model/GetFilesResponseTest.php
index 30d67da2a7..2f181d92f5 100644
--- a/src/gen/test/Model/GetFilesResponseTest.php
+++ b/src/gen/test/Model/GetFilesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFolderResponseTest.php b/src/gen/test/Model/GetFolderResponseTest.php
index d826fc62fa..43041594ad 100644
--- a/src/gen/test/Model/GetFolderResponseTest.php
+++ b/src/gen/test/Model/GetFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFoldersResponseTest.php b/src/gen/test/Model/GetFoldersResponseTest.php
index a16dc432db..1921d75b8a 100644
--- a/src/gen/test/Model/GetFoldersResponseTest.php
+++ b/src/gen/test/Model/GetFoldersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompaniesResponseTest.php b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
index a4f604a710..6443655304 100644
--- a/src/gen/test/Model/GetHrisCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompanyResponseTest.php b/src/gen/test/Model/GetHrisCompanyResponseTest.php
index a119bcf218..e8072db6db 100644
--- a/src/gen/test/Model/GetHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobResponseTest.php b/src/gen/test/Model/GetHrisJobResponseTest.php
index b18b15d6af..667a876b74 100644
--- a/src/gen/test/Model/GetHrisJobResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobsResponseTest.php b/src/gen/test/Model/GetHrisJobsResponseTest.php
index 36ec895e4a..d654dfa955 100644
--- a/src/gen/test/Model/GetHrisJobsResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemResponseTest.php b/src/gen/test/Model/GetInvoiceItemResponseTest.php
index 9c9982ecc7..5dab15fa81 100644
--- a/src/gen/test/Model/GetInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemsResponseTest.php b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
index b9cee01272..190739d9b1 100644
--- a/src/gen/test/Model/GetInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceResponseTest.php b/src/gen/test/Model/GetInvoiceResponseTest.php
index b969a01fba..9c0ff6e768 100644
--- a/src/gen/test/Model/GetInvoiceResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoicesResponseTest.php b/src/gen/test/Model/GetInvoicesResponseTest.php
index de7a9ae13c..ccacfaf108 100644
--- a/src/gen/test/Model/GetInvoicesResponseTest.php
+++ b/src/gen/test/Model/GetInvoicesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemResponseTest.php b/src/gen/test/Model/GetItemResponseTest.php
index 6aa33f3806..52b4b1f406 100644
--- a/src/gen/test/Model/GetItemResponseTest.php
+++ b/src/gen/test/Model/GetItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemsResponseTest.php b/src/gen/test/Model/GetItemsResponseTest.php
index 8173bc5c42..384e23b55c 100644
--- a/src/gen/test/Model/GetItemsResponseTest.php
+++ b/src/gen/test/Model/GetItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobResponseTest.php b/src/gen/test/Model/GetJobResponseTest.php
index 47a51f426c..d072f1e680 100644
--- a/src/gen/test/Model/GetJobResponseTest.php
+++ b/src/gen/test/Model/GetJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobsResponseTest.php b/src/gen/test/Model/GetJobsResponseTest.php
index 25636e83ea..179870d38c 100644
--- a/src/gen/test/Model/GetJobsResponseTest.php
+++ b/src/gen/test/Model/GetJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntriesResponseTest.php b/src/gen/test/Model/GetJournalEntriesResponseTest.php
index f09af15ffe..c4a7b08a3d 100644
--- a/src/gen/test/Model/GetJournalEntriesResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntriesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntryResponseTest.php b/src/gen/test/Model/GetJournalEntryResponseTest.php
index e492eac822..ac7f04354d 100644
--- a/src/gen/test/Model/GetJournalEntryResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadResponseTest.php b/src/gen/test/Model/GetLeadResponseTest.php
index 7b506ed24b..90b5de7094 100644
--- a/src/gen/test/Model/GetLeadResponseTest.php
+++ b/src/gen/test/Model/GetLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadsResponseTest.php b/src/gen/test/Model/GetLeadsResponseTest.php
index 163ef7fc70..454a2e523f 100644
--- a/src/gen/test/Model/GetLeadsResponseTest.php
+++ b/src/gen/test/Model/GetLeadsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountResponseTest.php b/src/gen/test/Model/GetLedgerAccountResponseTest.php
index d2203e256e..2a72de2f05 100644
--- a/src/gen/test/Model/GetLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountsResponseTest.php b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
index 6f2ebbd80a..21bfc6961c 100644
--- a/src/gen/test/Model/GetLedgerAccountsResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationResponseTest.php b/src/gen/test/Model/GetLocationResponseTest.php
index f3c8398c03..08ac1c2481 100644
--- a/src/gen/test/Model/GetLocationResponseTest.php
+++ b/src/gen/test/Model/GetLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationsResponseTest.php b/src/gen/test/Model/GetLocationsResponseTest.php
index e984461cd9..4f6631fb7c 100644
--- a/src/gen/test/Model/GetLocationsResponseTest.php
+++ b/src/gen/test/Model/GetLocationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLogsResponseTest.php b/src/gen/test/Model/GetLogsResponseTest.php
index 7149ef4d2f..6cd030602e 100644
--- a/src/gen/test/Model/GetLogsResponseTest.php
+++ b/src/gen/test/Model/GetLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantResponseTest.php b/src/gen/test/Model/GetMerchantResponseTest.php
index ccce1e7c23..db7bf03f99 100644
--- a/src/gen/test/Model/GetMerchantResponseTest.php
+++ b/src/gen/test/Model/GetMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantsResponseTest.php b/src/gen/test/Model/GetMerchantsResponseTest.php
index 539b38804d..d917a95516 100644
--- a/src/gen/test/Model/GetMerchantsResponseTest.php
+++ b/src/gen/test/Model/GetMerchantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessageResponseTest.php b/src/gen/test/Model/GetMessageResponseTest.php
index 498c75cbd2..e79d4be4e2 100644
--- a/src/gen/test/Model/GetMessageResponseTest.php
+++ b/src/gen/test/Model/GetMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessagesResponseTest.php b/src/gen/test/Model/GetMessagesResponseTest.php
index 00a0210ac6..86681e1406 100644
--- a/src/gen/test/Model/GetMessagesResponseTest.php
+++ b/src/gen/test/Model/GetMessagesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupResponseTest.php b/src/gen/test/Model/GetModifierGroupResponseTest.php
index a1aae585f9..56c79c9e05 100644
--- a/src/gen/test/Model/GetModifierGroupResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupsResponseTest.php b/src/gen/test/Model/GetModifierGroupsResponseTest.php
index 286ba9269e..3181d847ce 100644
--- a/src/gen/test/Model/GetModifierGroupsResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierResponseTest.php b/src/gen/test/Model/GetModifierResponseTest.php
index d61bdc2ae4..0da9e45681 100644
--- a/src/gen/test/Model/GetModifierResponseTest.php
+++ b/src/gen/test/Model/GetModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifiersResponseTest.php b/src/gen/test/Model/GetModifiersResponseTest.php
index 22eb1dabed..4a272d5fa9 100644
--- a/src/gen/test/Model/GetModifiersResponseTest.php
+++ b/src/gen/test/Model/GetModifiersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNoteResponseTest.php b/src/gen/test/Model/GetNoteResponseTest.php
index 839408899c..8e5e5b52bd 100644
--- a/src/gen/test/Model/GetNoteResponseTest.php
+++ b/src/gen/test/Model/GetNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNotesResponseTest.php b/src/gen/test/Model/GetNotesResponseTest.php
index 38e6ef3e40..ffc0b4046e 100644
--- a/src/gen/test/Model/GetNotesResponseTest.php
+++ b/src/gen/test/Model/GetNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunitiesResponseTest.php b/src/gen/test/Model/GetOpportunitiesResponseTest.php
index cbe958d348..f629363f9e 100644
--- a/src/gen/test/Model/GetOpportunitiesResponseTest.php
+++ b/src/gen/test/Model/GetOpportunitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunityResponseTest.php b/src/gen/test/Model/GetOpportunityResponseTest.php
index 65e3c942ad..51522d8c8a 100644
--- a/src/gen/test/Model/GetOpportunityResponseTest.php
+++ b/src/gen/test/Model/GetOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderResponseTest.php b/src/gen/test/Model/GetOrderResponseTest.php
index 7646ab25ef..2570ad5dd1 100644
--- a/src/gen/test/Model/GetOrderResponseTest.php
+++ b/src/gen/test/Model/GetOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypeResponseTest.php b/src/gen/test/Model/GetOrderTypeResponseTest.php
index d17aa0a770..02f1f47ff8 100644
--- a/src/gen/test/Model/GetOrderTypeResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypesResponseTest.php b/src/gen/test/Model/GetOrderTypesResponseTest.php
index ae05767873..d62acf649a 100644
--- a/src/gen/test/Model/GetOrderTypesResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrdersResponseTest.php b/src/gen/test/Model/GetOrdersResponseTest.php
index 5f298aeb35..6e8d58a844 100644
--- a/src/gen/test/Model/GetOrdersResponseTest.php
+++ b/src/gen/test/Model/GetOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentResponseTest.php b/src/gen/test/Model/GetPaymentResponseTest.php
index 3091b052e2..f63e117333 100644
--- a/src/gen/test/Model/GetPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentsResponseTest.php b/src/gen/test/Model/GetPaymentsResponseTest.php
index 30f9715490..1cc8a17cd7 100644
--- a/src/gen/test/Model/GetPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollResponseTest.php b/src/gen/test/Model/GetPayrollResponseTest.php
index 24bd755cca..1af067099a 100644
--- a/src/gen/test/Model/GetPayrollResponseTest.php
+++ b/src/gen/test/Model/GetPayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollsResponseTest.php b/src/gen/test/Model/GetPayrollsResponseTest.php
index b12f4ad80c..d9c258f269 100644
--- a/src/gen/test/Model/GetPayrollsResponseTest.php
+++ b/src/gen/test/Model/GetPayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelineResponseTest.php b/src/gen/test/Model/GetPipelineResponseTest.php
index d0082b74d2..911e435755 100644
--- a/src/gen/test/Model/GetPipelineResponseTest.php
+++ b/src/gen/test/Model/GetPipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelinesResponseTest.php b/src/gen/test/Model/GetPipelinesResponseTest.php
index f381d865f5..bf73e8a990 100644
--- a/src/gen/test/Model/GetPipelinesResponseTest.php
+++ b/src/gen/test/Model/GetPipelinesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentResponseTest.php b/src/gen/test/Model/GetPosPaymentResponseTest.php
index 9188814e1e..970156e118 100644
--- a/src/gen/test/Model/GetPosPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentsResponseTest.php b/src/gen/test/Model/GetPosPaymentsResponseTest.php
index 6eca9acdd0..585345e2a1 100644
--- a/src/gen/test/Model/GetPosPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductResponseTest.php b/src/gen/test/Model/GetProductResponseTest.php
index f8963be52b..820756bf4e 100644
--- a/src/gen/test/Model/GetProductResponseTest.php
+++ b/src/gen/test/Model/GetProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductsResponseTest.php b/src/gen/test/Model/GetProductsResponseTest.php
index 1992c4b66a..57d9708b0b 100644
--- a/src/gen/test/Model/GetProductsResponseTest.php
+++ b/src/gen/test/Model/GetProductsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProfitAndLossResponseTest.php b/src/gen/test/Model/GetProfitAndLossResponseTest.php
index 8537f0dee5..a2800f0e5b 100644
--- a/src/gen/test/Model/GetProfitAndLossResponseTest.php
+++ b/src/gen/test/Model/GetProfitAndLossResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrderResponseTest.php b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
index 9172df35da..5ad4795268 100644
--- a/src/gen/test/Model/GetPurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
index ff2057f5cf..97652c3d8c 100644
--- a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceExampleResponseTest.php b/src/gen/test/Model/GetResourceExampleResponseTest.php
index 48528d5281..4b5b57533d 100644
--- a/src/gen/test/Model/GetResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceSchemaResponseTest.php b/src/gen/test/Model/GetResourceSchemaResponseTest.php
index 96a5e7f763..7af876eb63 100644
--- a/src/gen/test/Model/GetResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinkResponseTest.php b/src/gen/test/Model/GetSharedLinkResponseTest.php
index 2a6dd19334..826fea71b2 100644
--- a/src/gen/test/Model/GetSharedLinkResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinksResponseTest.php b/src/gen/test/Model/GetSharedLinksResponseTest.php
index ffdef33e61..f597c67a0b 100644
--- a/src/gen/test/Model/GetSharedLinksResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoreResponseTest.php b/src/gen/test/Model/GetStoreResponseTest.php
index fa6ca71459..f2d2b08837 100644
--- a/src/gen/test/Model/GetStoreResponseTest.php
+++ b/src/gen/test/Model/GetStoreResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoresResponseTest.php b/src/gen/test/Model/GetStoresResponseTest.php
index 6ed1ccdac3..12df7bf79f 100644
--- a/src/gen/test/Model/GetStoresResponseTest.php
+++ b/src/gen/test/Model/GetStoresResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSubsidiariesResponseTest.php b/src/gen/test/Model/GetSubsidiariesResponseTest.php
index 4d598f0798..3275aacf6a 100644
--- a/src/gen/test/Model/GetSubsidiariesResponseTest.php
+++ b/src/gen/test/Model/GetSubsidiariesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSubsidiaryResponseTest.php b/src/gen/test/Model/GetSubsidiaryResponseTest.php
index d2abc3b671..b7e013afc2 100644
--- a/src/gen/test/Model/GetSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/GetSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSupplierResponseTest.php b/src/gen/test/Model/GetSupplierResponseTest.php
index 873bb61607..35801e5c87 100644
--- a/src/gen/test/Model/GetSupplierResponseTest.php
+++ b/src/gen/test/Model/GetSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSuppliersResponseTest.php b/src/gen/test/Model/GetSuppliersResponseTest.php
index 71ecaad9d9..7d9e63d4de 100644
--- a/src/gen/test/Model/GetSuppliersResponseTest.php
+++ b/src/gen/test/Model/GetSuppliersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRateResponseTest.php b/src/gen/test/Model/GetTaxRateResponseTest.php
index 6c6f9d26f6..6248632e70 100644
--- a/src/gen/test/Model/GetTaxRateResponseTest.php
+++ b/src/gen/test/Model/GetTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRatesResponseTest.php b/src/gen/test/Model/GetTaxRatesResponseTest.php
index 5a438f573f..ae920f415e 100644
--- a/src/gen/test/Model/GetTaxRatesResponseTest.php
+++ b/src/gen/test/Model/GetTaxRatesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTenderResponseTest.php b/src/gen/test/Model/GetTenderResponseTest.php
index 408149e810..97c5819799 100644
--- a/src/gen/test/Model/GetTenderResponseTest.php
+++ b/src/gen/test/Model/GetTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTendersResponseTest.php b/src/gen/test/Model/GetTendersResponseTest.php
index 981b67140d..3e48167cf1 100644
--- a/src/gen/test/Model/GetTendersResponseTest.php
+++ b/src/gen/test/Model/GetTendersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketResponseTest.php b/src/gen/test/Model/GetTicketResponseTest.php
index ccc4d425dc..b52a323930 100644
--- a/src/gen/test/Model/GetTicketResponseTest.php
+++ b/src/gen/test/Model/GetTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketsResponseTest.php b/src/gen/test/Model/GetTicketsResponseTest.php
index 2130e547ae..2ad2185ef1 100644
--- a/src/gen/test/Model/GetTicketsResponseTest.php
+++ b/src/gen/test/Model/GetTicketsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestResponseTest.php b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
index 364b859e6b..bdadbaf74b 100644
--- a/src/gen/test/Model/GetTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
index ddc090fda9..d5f578a0c5 100644
--- a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUploadSessionResponseTest.php b/src/gen/test/Model/GetUploadSessionResponseTest.php
index bfa7b8157e..7df8cf6a55 100644
--- a/src/gen/test/Model/GetUploadSessionResponseTest.php
+++ b/src/gen/test/Model/GetUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUserResponseTest.php b/src/gen/test/Model/GetUserResponseTest.php
index 150e55b032..36eca1bea2 100644
--- a/src/gen/test/Model/GetUserResponseTest.php
+++ b/src/gen/test/Model/GetUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUsersResponseTest.php b/src/gen/test/Model/GetUsersResponseTest.php
index d3d1baf241..e596aa3733 100644
--- a/src/gen/test/Model/GetUsersResponseTest.php
+++ b/src/gen/test/Model/GetUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
index e210416ffd..9b76d630b3 100644
--- a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
+++ b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookResponseTest.php b/src/gen/test/Model/GetWebhookResponseTest.php
index f2c58e5468..fda2eafc12 100644
--- a/src/gen/test/Model/GetWebhookResponseTest.php
+++ b/src/gen/test/Model/GetWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhooksResponseTest.php b/src/gen/test/Model/GetWebhooksResponseTest.php
index f9cc418130..73ea254ccc 100644
--- a/src/gen/test/Model/GetWebhooksResponseTest.php
+++ b/src/gen/test/Model/GetWebhooksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisCompanyTest.php b/src/gen/test/Model/HrisCompanyTest.php
index 8e216ec3ba..30138e6ef1 100644
--- a/src/gen/test/Model/HrisCompanyTest.php
+++ b/src/gen/test/Model/HrisCompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisEventTypeTest.php b/src/gen/test/Model/HrisEventTypeTest.php
index 7efc755de2..17dd15a950 100644
--- a/src/gen/test/Model/HrisEventTypeTest.php
+++ b/src/gen/test/Model/HrisEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobLocationTest.php b/src/gen/test/Model/HrisJobLocationTest.php
index 311b05a8fd..867fc7b695 100644
--- a/src/gen/test/Model/HrisJobLocationTest.php
+++ b/src/gen/test/Model/HrisJobLocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobTest.php b/src/gen/test/Model/HrisJobTest.php
index f8246aa37f..3a4fd7f0c7 100644
--- a/src/gen/test/Model/HrisJobTest.php
+++ b/src/gen/test/Model/HrisJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobsTest.php b/src/gen/test/Model/HrisJobsTest.php
index b1c4e79688..d9a7c2f570 100644
--- a/src/gen/test/Model/HrisJobsTest.php
+++ b/src/gen/test/Model/HrisJobsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IntegrationStateTest.php b/src/gen/test/Model/IntegrationStateTest.php
index c14ef14d0f..8e93dea302 100644
--- a/src/gen/test/Model/IntegrationStateTest.php
+++ b/src/gen/test/Model/IntegrationStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
index d5d0c4a01a..384c72caa5 100644
--- a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
+++ b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemTest.php b/src/gen/test/Model/InvoiceItemTest.php
index 81b1ac34b7..04cef31fae 100644
--- a/src/gen/test/Model/InvoiceItemTest.php
+++ b/src/gen/test/Model/InvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemsFilterTest.php b/src/gen/test/Model/InvoiceItemsFilterTest.php
index f3716302c3..28ec1eba38 100644
--- a/src/gen/test/Model/InvoiceItemsFilterTest.php
+++ b/src/gen/test/Model/InvoiceItemsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceLineItemTest.php b/src/gen/test/Model/InvoiceLineItemTest.php
index 94b3f732a8..439b0fc411 100644
--- a/src/gen/test/Model/InvoiceLineItemTest.php
+++ b/src/gen/test/Model/InvoiceLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceResponseTest.php b/src/gen/test/Model/InvoiceResponseTest.php
index 261849af41..628cb6cc87 100644
--- a/src/gen/test/Model/InvoiceResponseTest.php
+++ b/src/gen/test/Model/InvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceTest.php b/src/gen/test/Model/InvoiceTest.php
index db6a04f8eb..81fe4d6a2d 100644
--- a/src/gen/test/Model/InvoiceTest.php
+++ b/src/gen/test/Model/InvoiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesFilterTest.php b/src/gen/test/Model/InvoicesFilterTest.php
index f796030a90..840544db29 100644
--- a/src/gen/test/Model/InvoicesFilterTest.php
+++ b/src/gen/test/Model/InvoicesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesSortTest.php b/src/gen/test/Model/InvoicesSortTest.php
index fff0862195..721bd2a295 100644
--- a/src/gen/test/Model/InvoicesSortTest.php
+++ b/src/gen/test/Model/InvoicesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssueTrackingEventTypeTest.php b/src/gen/test/Model/IssueTrackingEventTypeTest.php
index 2c0fb3ae70..60c04091f7 100644
--- a/src/gen/test/Model/IssueTrackingEventTypeTest.php
+++ b/src/gen/test/Model/IssueTrackingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssuesFilterTest.php b/src/gen/test/Model/IssuesFilterTest.php
index 0f502b7c17..a159cdf150 100644
--- a/src/gen/test/Model/IssuesFilterTest.php
+++ b/src/gen/test/Model/IssuesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ItemTest.php b/src/gen/test/Model/ItemTest.php
index 2afcb9ebc6..ce4d3b3edf 100644
--- a/src/gen/test/Model/ItemTest.php
+++ b/src/gen/test/Model/ItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobLinksTest.php b/src/gen/test/Model/JobLinksTest.php
index 11fcb10910..cd44a869e0 100644
--- a/src/gen/test/Model/JobLinksTest.php
+++ b/src/gen/test/Model/JobLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobSalaryTest.php b/src/gen/test/Model/JobSalaryTest.php
index 34add36686..d8738eae87 100644
--- a/src/gen/test/Model/JobSalaryTest.php
+++ b/src/gen/test/Model/JobSalaryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobStatusTest.php b/src/gen/test/Model/JobStatusTest.php
index 087144a83e..91ac203a30 100644
--- a/src/gen/test/Model/JobStatusTest.php
+++ b/src/gen/test/Model/JobStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobTest.php b/src/gen/test/Model/JobTest.php
index 8052f06be6..d3aa84c3db 100644
--- a/src/gen/test/Model/JobTest.php
+++ b/src/gen/test/Model/JobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesFilterTest.php b/src/gen/test/Model/JournalEntriesFilterTest.php
index afc2b124df..a5a6821b4d 100644
--- a/src/gen/test/Model/JournalEntriesFilterTest.php
+++ b/src/gen/test/Model/JournalEntriesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesSortTest.php b/src/gen/test/Model/JournalEntriesSortTest.php
index e2b4e1c192..229ad41b82 100644
--- a/src/gen/test/Model/JournalEntriesSortTest.php
+++ b/src/gen/test/Model/JournalEntriesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryLineItemTest.php b/src/gen/test/Model/JournalEntryLineItemTest.php
index 34360c725d..b16cb8c221 100644
--- a/src/gen/test/Model/JournalEntryLineItemTest.php
+++ b/src/gen/test/Model/JournalEntryLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryTest.php b/src/gen/test/Model/JournalEntryTest.php
index d06399715d..b3441b61cf 100644
--- a/src/gen/test/Model/JournalEntryTest.php
+++ b/src/gen/test/Model/JournalEntryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadEventTypeTest.php b/src/gen/test/Model/LeadEventTypeTest.php
index ed7f0134aa..ce9f43707c 100644
--- a/src/gen/test/Model/LeadEventTypeTest.php
+++ b/src/gen/test/Model/LeadEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadTest.php b/src/gen/test/Model/LeadTest.php
index 2b6cfad39f..67a7019476 100644
--- a/src/gen/test/Model/LeadTest.php
+++ b/src/gen/test/Model/LeadTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsFilterTest.php b/src/gen/test/Model/LeadsFilterTest.php
index 5ce7eb1a4c..8a5ad10b36 100644
--- a/src/gen/test/Model/LeadsFilterTest.php
+++ b/src/gen/test/Model/LeadsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsSortTest.php b/src/gen/test/Model/LeadsSortTest.php
index d362cd0e15..72c0229c9f 100644
--- a/src/gen/test/Model/LeadsSortTest.php
+++ b/src/gen/test/Model/LeadsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountCategoriesTest.php b/src/gen/test/Model/LedgerAccountCategoriesTest.php
index 432c968965..250e376a6f 100644
--- a/src/gen/test/Model/LedgerAccountCategoriesTest.php
+++ b/src/gen/test/Model/LedgerAccountCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountParentAccountTest.php b/src/gen/test/Model/LedgerAccountParentAccountTest.php
index 546fac5ea4..206938734e 100644
--- a/src/gen/test/Model/LedgerAccountParentAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountParentAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountTest.php b/src/gen/test/Model/LedgerAccountTest.php
index c55efeeef1..0922ec68db 100644
--- a/src/gen/test/Model/LedgerAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsFilterTest.php b/src/gen/test/Model/LedgerAccountsFilterTest.php
index 6f97d1c595..b145c35a07 100644
--- a/src/gen/test/Model/LedgerAccountsFilterTest.php
+++ b/src/gen/test/Model/LedgerAccountsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsSortTest.php b/src/gen/test/Model/LedgerAccountsSortTest.php
index d994490012..ff7c406653 100644
--- a/src/gen/test/Model/LedgerAccountsSortTest.php
+++ b/src/gen/test/Model/LedgerAccountsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedConnectorResourceTest.php b/src/gen/test/Model/LinkedConnectorResourceTest.php
index ed8839f37e..6385dd199d 100644
--- a/src/gen/test/Model/LinkedConnectorResourceTest.php
+++ b/src/gen/test/Model/LinkedConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedCustomerTest.php b/src/gen/test/Model/LinkedCustomerTest.php
index 275c521d6d..6bdd975b8a 100644
--- a/src/gen/test/Model/LinkedCustomerTest.php
+++ b/src/gen/test/Model/LinkedCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceCustomerTest.php b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
index a5bd172379..ad1bd11e8b 100644
--- a/src/gen/test/Model/LinkedEcommerceCustomerTest.php
+++ b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceOrderTest.php b/src/gen/test/Model/LinkedEcommerceOrderTest.php
index 55ff0fd837..a70538b609 100644
--- a/src/gen/test/Model/LinkedEcommerceOrderTest.php
+++ b/src/gen/test/Model/LinkedEcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedFolderTest.php b/src/gen/test/Model/LinkedFolderTest.php
index 468b9bd2ab..bf08eeac12 100644
--- a/src/gen/test/Model/LinkedFolderTest.php
+++ b/src/gen/test/Model/LinkedFolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedInvoiceItemTest.php b/src/gen/test/Model/LinkedInvoiceItemTest.php
index 917daa1c00..f3b590b422 100644
--- a/src/gen/test/Model/LinkedInvoiceItemTest.php
+++ b/src/gen/test/Model/LinkedInvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedLedgerAccountTest.php b/src/gen/test/Model/LinkedLedgerAccountTest.php
index ea57e327c2..ef360d1972 100644
--- a/src/gen/test/Model/LinkedLedgerAccountTest.php
+++ b/src/gen/test/Model/LinkedLedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedParentCustomerTest.php b/src/gen/test/Model/LinkedParentCustomerTest.php
index 25121fb0be..54098de1d2 100644
--- a/src/gen/test/Model/LinkedParentCustomerTest.php
+++ b/src/gen/test/Model/LinkedParentCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedSupplierTest.php b/src/gen/test/Model/LinkedSupplierTest.php
index d28297e9b0..c9613f6c12 100644
--- a/src/gen/test/Model/LinkedSupplierTest.php
+++ b/src/gen/test/Model/LinkedSupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTaxRateTest.php b/src/gen/test/Model/LinkedTaxRateTest.php
index a51c643be9..21ff0c8ead 100644
--- a/src/gen/test/Model/LinkedTaxRateTest.php
+++ b/src/gen/test/Model/LinkedTaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTrackingCategoryTest.php b/src/gen/test/Model/LinkedTrackingCategoryTest.php
index e689cf3aff..7e62089dc5 100644
--- a/src/gen/test/Model/LinkedTrackingCategoryTest.php
+++ b/src/gen/test/Model/LinkedTrackingCategoryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinksTest.php b/src/gen/test/Model/LinksTest.php
index 3456b80604..3c7f7afbdc 100644
--- a/src/gen/test/Model/LinksTest.php
+++ b/src/gen/test/Model/LinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LocationTest.php b/src/gen/test/Model/LocationTest.php
index d15991b4a1..57840bbb9c 100644
--- a/src/gen/test/Model/LocationTest.php
+++ b/src/gen/test/Model/LocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogOperationTest.php b/src/gen/test/Model/LogOperationTest.php
index 3b041ede33..b53fb383a5 100644
--- a/src/gen/test/Model/LogOperationTest.php
+++ b/src/gen/test/Model/LogOperationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogServiceTest.php b/src/gen/test/Model/LogServiceTest.php
index 755aec289a..7d77deab20 100644
--- a/src/gen/test/Model/LogServiceTest.php
+++ b/src/gen/test/Model/LogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogTest.php b/src/gen/test/Model/LogTest.php
index 5b9d3fad35..e75318f6cc 100644
--- a/src/gen/test/Model/LogTest.php
+++ b/src/gen/test/Model/LogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogsFilterTest.php b/src/gen/test/Model/LogsFilterTest.php
index 8974b45100..6c32084888 100644
--- a/src/gen/test/Model/LogsFilterTest.php
+++ b/src/gen/test/Model/LogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MerchantTest.php b/src/gen/test/Model/MerchantTest.php
index 97f4adb5e5..82ef6dac6b 100644
--- a/src/gen/test/Model/MerchantTest.php
+++ b/src/gen/test/Model/MerchantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MessageTest.php b/src/gen/test/Model/MessageTest.php
index 237d7d77a0..5df1c10113 100644
--- a/src/gen/test/Model/MessageTest.php
+++ b/src/gen/test/Model/MessageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaCursorsTest.php b/src/gen/test/Model/MetaCursorsTest.php
index 52a9522969..b27d786ef0 100644
--- a/src/gen/test/Model/MetaCursorsTest.php
+++ b/src/gen/test/Model/MetaCursorsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaTest.php b/src/gen/test/Model/MetaTest.php
index 51c7d45367..2af5c7e6a1 100644
--- a/src/gen/test/Model/MetaTest.php
+++ b/src/gen/test/Model/MetaTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupFilterTest.php b/src/gen/test/Model/ModifierGroupFilterTest.php
index 2127919168..9100050c39 100644
--- a/src/gen/test/Model/ModifierGroupFilterTest.php
+++ b/src/gen/test/Model/ModifierGroupFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupTest.php b/src/gen/test/Model/ModifierGroupTest.php
index d2c9812cda..b99452fc0d 100644
--- a/src/gen/test/Model/ModifierGroupTest.php
+++ b/src/gen/test/Model/ModifierGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierTest.php b/src/gen/test/Model/ModifierTest.php
index 87a7678ed0..e8e46d7237 100644
--- a/src/gen/test/Model/ModifierTest.php
+++ b/src/gen/test/Model/ModifierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotFoundResponseTest.php b/src/gen/test/Model/NotFoundResponseTest.php
index 7bfe62b57a..49004d1fc0 100644
--- a/src/gen/test/Model/NotFoundResponseTest.php
+++ b/src/gen/test/Model/NotFoundResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotImplementedResponseTest.php b/src/gen/test/Model/NotImplementedResponseTest.php
index 9bb6e12525..88af9726b8 100644
--- a/src/gen/test/Model/NotImplementedResponseTest.php
+++ b/src/gen/test/Model/NotImplementedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NoteTest.php b/src/gen/test/Model/NoteTest.php
index 0f1bab6c00..11c8ec79cc 100644
--- a/src/gen/test/Model/NoteTest.php
+++ b/src/gen/test/Model/NoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OAuthGrantTypeTest.php b/src/gen/test/Model/OAuthGrantTypeTest.php
index d6be24fd1a..43588ba1df 100644
--- a/src/gen/test/Model/OAuthGrantTypeTest.php
+++ b/src/gen/test/Model/OAuthGrantTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OfferTest.php b/src/gen/test/Model/OfferTest.php
index 5b4e6e6446..90ca25a10a 100644
--- a/src/gen/test/Model/OfferTest.php
+++ b/src/gen/test/Model/OfferTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesFilterTest.php b/src/gen/test/Model/OpportunitiesFilterTest.php
index 6aaf435c1b..83d11ba7a2 100644
--- a/src/gen/test/Model/OpportunitiesFilterTest.php
+++ b/src/gen/test/Model/OpportunitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesSortTest.php b/src/gen/test/Model/OpportunitiesSortTest.php
index aef00a7f95..5ed74004a7 100644
--- a/src/gen/test/Model/OpportunitiesSortTest.php
+++ b/src/gen/test/Model/OpportunitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunityTest.php b/src/gen/test/Model/OpportunityTest.php
index f7c4c8e7b8..9038cb581e 100644
--- a/src/gen/test/Model/OpportunityTest.php
+++ b/src/gen/test/Model/OpportunityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderCustomersTest.php b/src/gen/test/Model/OrderCustomersTest.php
index d7a5faf3bd..d75da310e2 100644
--- a/src/gen/test/Model/OrderCustomersTest.php
+++ b/src/gen/test/Model/OrderCustomersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderDiscountsTest.php b/src/gen/test/Model/OrderDiscountsTest.php
index 52b8e0d699..6d040d8ad3 100644
--- a/src/gen/test/Model/OrderDiscountsTest.php
+++ b/src/gen/test/Model/OrderDiscountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderFulfillmentsTest.php b/src/gen/test/Model/OrderFulfillmentsTest.php
index e29d6bc754..5d1865aa06 100644
--- a/src/gen/test/Model/OrderFulfillmentsTest.php
+++ b/src/gen/test/Model/OrderFulfillmentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderLineItemsTest.php b/src/gen/test/Model/OrderLineItemsTest.php
index c82f10f7f7..ec84575541 100644
--- a/src/gen/test/Model/OrderLineItemsTest.php
+++ b/src/gen/test/Model/OrderLineItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPaymentsTest.php b/src/gen/test/Model/OrderPaymentsTest.php
index 587ccb6445..9e71e617f6 100644
--- a/src/gen/test/Model/OrderPaymentsTest.php
+++ b/src/gen/test/Model/OrderPaymentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
index a1c21b8b36..218932fd2f 100644
--- a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
index 8dfce746c7..1a1216f788 100644
--- a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsTest.php
index 60b50fd51c..e53e76972d 100644
--- a/src/gen/test/Model/OrderPickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderRefundsTest.php b/src/gen/test/Model/OrderRefundsTest.php
index 9bd5ee509f..5f38cabdbb 100644
--- a/src/gen/test/Model/OrderRefundsTest.php
+++ b/src/gen/test/Model/OrderRefundsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTendersTest.php b/src/gen/test/Model/OrderTendersTest.php
index 81d8ce2bc0..2ef5c69561 100644
--- a/src/gen/test/Model/OrderTendersTest.php
+++ b/src/gen/test/Model/OrderTendersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTest.php b/src/gen/test/Model/OrderTest.php
index e54266fb64..5bebd1cd9e 100644
--- a/src/gen/test/Model/OrderTest.php
+++ b/src/gen/test/Model/OrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTypeTest.php b/src/gen/test/Model/OrderTypeTest.php
index 4098015b6c..8d272d2ed3 100644
--- a/src/gen/test/Model/OrderTypeTest.php
+++ b/src/gen/test/Model/OrderTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OwnerTest.php b/src/gen/test/Model/OwnerTest.php
index 967753de94..9f150b46ff 100644
--- a/src/gen/test/Model/OwnerTest.php
+++ b/src/gen/test/Model/OwnerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaginationCoverageTest.php b/src/gen/test/Model/PaginationCoverageTest.php
index 4364646e92..d499697234 100644
--- a/src/gen/test/Model/PaginationCoverageTest.php
+++ b/src/gen/test/Model/PaginationCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PassThroughQueryTest.php b/src/gen/test/Model/PassThroughQueryTest.php
index 41cb796c55..356833ff10 100644
--- a/src/gen/test/Model/PassThroughQueryTest.php
+++ b/src/gen/test/Model/PassThroughQueryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentAllocationsTest.php b/src/gen/test/Model/PaymentAllocationsTest.php
index 8883a316e6..38e92b7b91 100644
--- a/src/gen/test/Model/PaymentAllocationsTest.php
+++ b/src/gen/test/Model/PaymentAllocationsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentCardTest.php b/src/gen/test/Model/PaymentCardTest.php
index 25e729440d..989256f71b 100644
--- a/src/gen/test/Model/PaymentCardTest.php
+++ b/src/gen/test/Model/PaymentCardTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentFrequencyTest.php b/src/gen/test/Model/PaymentFrequencyTest.php
index e1bdfcf019..8c56281c7d 100644
--- a/src/gen/test/Model/PaymentFrequencyTest.php
+++ b/src/gen/test/Model/PaymentFrequencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentRequiredResponseTest.php b/src/gen/test/Model/PaymentRequiredResponseTest.php
index c5c13010c8..4c894bb374 100644
--- a/src/gen/test/Model/PaymentRequiredResponseTest.php
+++ b/src/gen/test/Model/PaymentRequiredResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentTest.php b/src/gen/test/Model/PaymentTest.php
index 3b1b3c558d..f20c263f5e 100644
--- a/src/gen/test/Model/PaymentTest.php
+++ b/src/gen/test/Model/PaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentUnitTest.php b/src/gen/test/Model/PaymentUnitTest.php
index a43189cdca..6239b47ec6 100644
--- a/src/gen/test/Model/PaymentUnitTest.php
+++ b/src/gen/test/Model/PaymentUnitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsFilterTest.php b/src/gen/test/Model/PaymentsFilterTest.php
index 0b034b7bdc..b0d3d45696 100644
--- a/src/gen/test/Model/PaymentsFilterTest.php
+++ b/src/gen/test/Model/PaymentsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsSortTest.php b/src/gen/test/Model/PaymentsSortTest.php
index 5f689ef36a..01d2d05474 100644
--- a/src/gen/test/Model/PaymentsSortTest.php
+++ b/src/gen/test/Model/PaymentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTest.php b/src/gen/test/Model/PayrollTest.php
index 6ca8edfa4f..c1f5fe79c3 100644
--- a/src/gen/test/Model/PayrollTest.php
+++ b/src/gen/test/Model/PayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTotalsTest.php b/src/gen/test/Model/PayrollTotalsTest.php
index 7f9e182a6d..6a2e3636fe 100644
--- a/src/gen/test/Model/PayrollTotalsTest.php
+++ b/src/gen/test/Model/PayrollTotalsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollsFilterTest.php b/src/gen/test/Model/PayrollsFilterTest.php
index 20fdee488c..f5c08d152e 100644
--- a/src/gen/test/Model/PayrollsFilterTest.php
+++ b/src/gen/test/Model/PayrollsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PersonTest.php b/src/gen/test/Model/PersonTest.php
index 872edfa19b..3e7716b93f 100644
--- a/src/gen/test/Model/PersonTest.php
+++ b/src/gen/test/Model/PersonTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PhoneNumberTest.php b/src/gen/test/Model/PhoneNumberTest.php
index a259c3c9d3..48be5f8f8a 100644
--- a/src/gen/test/Model/PhoneNumberTest.php
+++ b/src/gen/test/Model/PhoneNumberTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineStagesTest.php b/src/gen/test/Model/PipelineStagesTest.php
index db05ab5188..5a223cd181 100644
--- a/src/gen/test/Model/PipelineStagesTest.php
+++ b/src/gen/test/Model/PipelineStagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineTest.php b/src/gen/test/Model/PipelineTest.php
index d1a410b14d..7de1cfeddb 100644
--- a/src/gen/test/Model/PipelineTest.php
+++ b/src/gen/test/Model/PipelineTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountAchDetailsTest.php b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
index e09162ae38..0f6c5b93c4 100644
--- a/src/gen/test/Model/PosBankAccountAchDetailsTest.php
+++ b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountTest.php b/src/gen/test/Model/PosBankAccountTest.php
index df64c6f2d2..234761c417 100644
--- a/src/gen/test/Model/PosBankAccountTest.php
+++ b/src/gen/test/Model/PosBankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentCardDetailsTest.php b/src/gen/test/Model/PosPaymentCardDetailsTest.php
index b58bbddcdd..df16628836 100644
--- a/src/gen/test/Model/PosPaymentCardDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentCardDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentExternalDetailsTest.php b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
index 0c2f1b2b49..0f61d990a7 100644
--- a/src/gen/test/Model/PosPaymentExternalDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentTest.php b/src/gen/test/Model/PosPaymentTest.php
index d3cc39bdbe..7a1a43e0c8 100644
--- a/src/gen/test/Model/PosPaymentTest.php
+++ b/src/gen/test/Model/PosPaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PriceTest.php b/src/gen/test/Model/PriceTest.php
index f6ace5cf05..3a1f90abb1 100644
--- a/src/gen/test/Model/PriceTest.php
+++ b/src/gen/test/Model/PriceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProbationPeriodTest.php b/src/gen/test/Model/ProbationPeriodTest.php
index 285d204455..886f1e0349 100644
--- a/src/gen/test/Model/ProbationPeriodTest.php
+++ b/src/gen/test/Model/ProbationPeriodTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossExpensesTest.php b/src/gen/test/Model/ProfitAndLossExpensesTest.php
index e36a5930f3..3254ccf251 100644
--- a/src/gen/test/Model/ProfitAndLossExpensesTest.php
+++ b/src/gen/test/Model/ProfitAndLossExpensesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossFilterTest.php b/src/gen/test/Model/ProfitAndLossFilterTest.php
index cf60d5d38e..c91992e023 100644
--- a/src/gen/test/Model/ProfitAndLossFilterTest.php
+++ b/src/gen/test/Model/ProfitAndLossFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
index 79bbe13ce8..b5f8a52394 100644
--- a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
+++ b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossIncomeTest.php b/src/gen/test/Model/ProfitAndLossIncomeTest.php
index aed925ba93..f109d3a1bf 100644
--- a/src/gen/test/Model/ProfitAndLossIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
index 220bb66930..8ac4e17b87 100644
--- a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
index 43cbcac07a..e4922e143e 100644
--- a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossRecordTest.php b/src/gen/test/Model/ProfitAndLossRecordTest.php
index db91e2f2da..afee002886 100644
--- a/src/gen/test/Model/ProfitAndLossRecordTest.php
+++ b/src/gen/test/Model/ProfitAndLossRecordTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossSectionTest.php b/src/gen/test/Model/ProfitAndLossSectionTest.php
index 4d7568d171..e0cdd691c1 100644
--- a/src/gen/test/Model/ProfitAndLossSectionTest.php
+++ b/src/gen/test/Model/ProfitAndLossSectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossTest.php b/src/gen/test/Model/ProfitAndLossTest.php
index 5c74ae46d7..61ca8d3d85 100644
--- a/src/gen/test/Model/ProfitAndLossTest.php
+++ b/src/gen/test/Model/ProfitAndLossTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrderTest.php b/src/gen/test/Model/PurchaseOrderTest.php
index af5aaf7181..11a3686980 100644
--- a/src/gen/test/Model/PurchaseOrderTest.php
+++ b/src/gen/test/Model/PurchaseOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersFilterTest.php b/src/gen/test/Model/PurchaseOrdersFilterTest.php
index 38fc85cc13..1b94a7e577 100644
--- a/src/gen/test/Model/PurchaseOrdersFilterTest.php
+++ b/src/gen/test/Model/PurchaseOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersSortTest.php b/src/gen/test/Model/PurchaseOrdersSortTest.php
index 8c4ced350d..5b58043baf 100644
--- a/src/gen/test/Model/PurchaseOrdersSortTest.php
+++ b/src/gen/test/Model/PurchaseOrdersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestCountAllocationTest.php b/src/gen/test/Model/RequestCountAllocationTest.php
index dbd2015ca8..a793e6f2e9 100644
--- a/src/gen/test/Model/RequestCountAllocationTest.php
+++ b/src/gen/test/Model/RequestCountAllocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestRateTest.php b/src/gen/test/Model/RequestRateTest.php
index 940453da14..83be8804fa 100644
--- a/src/gen/test/Model/RequestRateTest.php
+++ b/src/gen/test/Model/RequestRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResolveWebhookResponseTest.php b/src/gen/test/Model/ResolveWebhookResponseTest.php
index 438a5a9fc5..8396ae6d0b 100644
--- a/src/gen/test/Model/ResolveWebhookResponseTest.php
+++ b/src/gen/test/Model/ResolveWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceExampleTest.php b/src/gen/test/Model/ResourceExampleTest.php
index 3e030edd12..5550480672 100644
--- a/src/gen/test/Model/ResourceExampleTest.php
+++ b/src/gen/test/Model/ResourceExampleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceStatusTest.php b/src/gen/test/Model/ResourceStatusTest.php
index ce7f24caaa..db6681ad13 100644
--- a/src/gen/test/Model/ResourceStatusTest.php
+++ b/src/gen/test/Model/ResourceStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleTest.php b/src/gen/test/Model/ScheduleTest.php
index 590ff6302e..f16ca23afc 100644
--- a/src/gen/test/Model/ScheduleTest.php
+++ b/src/gen/test/Model/ScheduleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
index 42d9713023..1072084ebc 100644
--- a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternTest.php b/src/gen/test/Model/ScheduleWorkPatternTest.php
index b3e466b631..1b76f01d2e 100644
--- a/src/gen/test/Model/ScheduleWorkPatternTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SchemaSupportTest.php b/src/gen/test/Model/SchemaSupportTest.php
index d0e770e922..d89953c164 100644
--- a/src/gen/test/Model/SchemaSupportTest.php
+++ b/src/gen/test/Model/SchemaSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ServiceChargeTest.php b/src/gen/test/Model/ServiceChargeTest.php
index 2e9b9d1be6..b2293ee021 100644
--- a/src/gen/test/Model/ServiceChargeTest.php
+++ b/src/gen/test/Model/ServiceChargeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionSettingsTest.php b/src/gen/test/Model/SessionSettingsTest.php
index 734e7edfd1..c40e1143e5 100644
--- a/src/gen/test/Model/SessionSettingsTest.php
+++ b/src/gen/test/Model/SessionSettingsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionTest.php b/src/gen/test/Model/SessionTest.php
index d20c2f7cb7..8a63ad93ca 100644
--- a/src/gen/test/Model/SessionTest.php
+++ b/src/gen/test/Model/SessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionThemeTest.php b/src/gen/test/Model/SessionThemeTest.php
index ec801f78fb..a2210427ac 100644
--- a/src/gen/test/Model/SessionThemeTest.php
+++ b/src/gen/test/Model/SessionThemeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTargetTest.php b/src/gen/test/Model/SharedLinkTargetTest.php
index 870f4d793c..5902748cc4 100644
--- a/src/gen/test/Model/SharedLinkTargetTest.php
+++ b/src/gen/test/Model/SharedLinkTargetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTest.php b/src/gen/test/Model/SharedLinkTest.php
index 0eb45378b8..ffc6978cb4 100644
--- a/src/gen/test/Model/SharedLinkTest.php
+++ b/src/gen/test/Model/SharedLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SimpleFormFieldOptionTest.php b/src/gen/test/Model/SimpleFormFieldOptionTest.php
index d097225153..650d4ab52e 100644
--- a/src/gen/test/Model/SimpleFormFieldOptionTest.php
+++ b/src/gen/test/Model/SimpleFormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SocialLinkTest.php b/src/gen/test/Model/SocialLinkTest.php
index 91bacbe3b1..e0b93cd0d1 100644
--- a/src/gen/test/Model/SocialLinkTest.php
+++ b/src/gen/test/Model/SocialLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SortDirectionTest.php b/src/gen/test/Model/SortDirectionTest.php
index b7121da3da..cd76accddc 100644
--- a/src/gen/test/Model/SortDirectionTest.php
+++ b/src/gen/test/Model/SortDirectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/StatusTest.php b/src/gen/test/Model/StatusTest.php
index 42c1b9cf64..acaa528756 100644
--- a/src/gen/test/Model/StatusTest.php
+++ b/src/gen/test/Model/StatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SubsidiaryTest.php b/src/gen/test/Model/SubsidiaryTest.php
index 7abe0f888f..8da83f17f0 100644
--- a/src/gen/test/Model/SubsidiaryTest.php
+++ b/src/gen/test/Model/SubsidiaryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SupplierTest.php b/src/gen/test/Model/SupplierTest.php
index 9dc7e23305..017475ba87 100644
--- a/src/gen/test/Model/SupplierTest.php
+++ b/src/gen/test/Model/SupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersFilterTest.php b/src/gen/test/Model/SuppliersFilterTest.php
index bb77e4f55f..29e8bc775d 100644
--- a/src/gen/test/Model/SuppliersFilterTest.php
+++ b/src/gen/test/Model/SuppliersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersSortTest.php b/src/gen/test/Model/SuppliersSortTest.php
index a771a6966a..fe30ce0a28 100644
--- a/src/gen/test/Model/SuppliersSortTest.php
+++ b/src/gen/test/Model/SuppliersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SupportedPropertyTest.php b/src/gen/test/Model/SupportedPropertyTest.php
index bedfe85f9c..1766750fac 100644
--- a/src/gen/test/Model/SupportedPropertyTest.php
+++ b/src/gen/test/Model/SupportedPropertyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRateTest.php b/src/gen/test/Model/TaxRateTest.php
index 23467a5567..5302e2e0e3 100644
--- a/src/gen/test/Model/TaxRateTest.php
+++ b/src/gen/test/Model/TaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRatesFilterTest.php b/src/gen/test/Model/TaxRatesFilterTest.php
index 1893e83d00..57629ccced 100644
--- a/src/gen/test/Model/TaxRatesFilterTest.php
+++ b/src/gen/test/Model/TaxRatesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxTest.php b/src/gen/test/Model/TaxTest.php
index 15aec4b8a6..ba3cd67aa0 100644
--- a/src/gen/test/Model/TaxTest.php
+++ b/src/gen/test/Model/TaxTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TeamTest.php b/src/gen/test/Model/TeamTest.php
index 1f2b4d8d85..9ec80b01aa 100644
--- a/src/gen/test/Model/TeamTest.php
+++ b/src/gen/test/Model/TeamTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TenderTest.php b/src/gen/test/Model/TenderTest.php
index 42b7ea90c9..e934c7f547 100644
--- a/src/gen/test/Model/TenderTest.php
+++ b/src/gen/test/Model/TenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketTest.php b/src/gen/test/Model/TicketTest.php
index c4b248a285..48147ff23a 100644
--- a/src/gen/test/Model/TicketTest.php
+++ b/src/gen/test/Model/TicketTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketsSortTest.php b/src/gen/test/Model/TicketsSortTest.php
index 96dcff08a3..ea8d00f574 100644
--- a/src/gen/test/Model/TicketsSortTest.php
+++ b/src/gen/test/Model/TicketsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestNotesTest.php b/src/gen/test/Model/TimeOffRequestNotesTest.php
index ee232e3c19..8b790324ae 100644
--- a/src/gen/test/Model/TimeOffRequestNotesTest.php
+++ b/src/gen/test/Model/TimeOffRequestNotesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestTest.php b/src/gen/test/Model/TimeOffRequestTest.php
index 721a3497c2..c61fa04130 100644
--- a/src/gen/test/Model/TimeOffRequestTest.php
+++ b/src/gen/test/Model/TimeOffRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestsFilterTest.php b/src/gen/test/Model/TimeOffRequestsFilterTest.php
index 0db8d97044..e23107483d 100644
--- a/src/gen/test/Model/TimeOffRequestsFilterTest.php
+++ b/src/gen/test/Model/TimeOffRequestsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
index 08282a5361..afa656ff99 100644
--- a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseTest.php b/src/gen/test/Model/TooManyRequestsResponseTest.php
index 49dac956d4..7912181652 100644
--- a/src/gen/test/Model/TooManyRequestsResponseTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TrackingItemTest.php b/src/gen/test/Model/TrackingItemTest.php
index fe0823b58c..cfcaf045cb 100644
--- a/src/gen/test/Model/TrackingItemTest.php
+++ b/src/gen/test/Model/TrackingItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnauthorizedResponseTest.php b/src/gen/test/Model/UnauthorizedResponseTest.php
index 933a615ec7..69769eee4f 100644
--- a/src/gen/test/Model/UnauthorizedResponseTest.php
+++ b/src/gen/test/Model/UnauthorizedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnexpectedErrorResponseTest.php b/src/gen/test/Model/UnexpectedErrorResponseTest.php
index 20bb34355e..e38c92b916 100644
--- a/src/gen/test/Model/UnexpectedErrorResponseTest.php
+++ b/src/gen/test/Model/UnexpectedErrorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedApiIdTest.php b/src/gen/test/Model/UnifiedApiIdTest.php
index a1da49696d..f4287bc43b 100644
--- a/src/gen/test/Model/UnifiedApiIdTest.php
+++ b/src/gen/test/Model/UnifiedApiIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFilePermissionsTest.php b/src/gen/test/Model/UnifiedFilePermissionsTest.php
index e01ab47322..2836a85be3 100644
--- a/src/gen/test/Model/UnifiedFilePermissionsTest.php
+++ b/src/gen/test/Model/UnifiedFilePermissionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFileTest.php b/src/gen/test/Model/UnifiedFileTest.php
index 9a50a071db..75dcc6efe2 100644
--- a/src/gen/test/Model/UnifiedFileTest.php
+++ b/src/gen/test/Model/UnifiedFileTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedIdTest.php b/src/gen/test/Model/UnifiedIdTest.php
index 0db63271e2..0b996601fe 100644
--- a/src/gen/test/Model/UnifiedIdTest.php
+++ b/src/gen/test/Model/UnifiedIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnprocessableResponseTest.php b/src/gen/test/Model/UnprocessableResponseTest.php
index 8bcb711367..64b24bd402 100644
--- a/src/gen/test/Model/UnprocessableResponseTest.php
+++ b/src/gen/test/Model/UnprocessableResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateActivityResponseTest.php b/src/gen/test/Model/UpdateActivityResponseTest.php
index 425ebaeec2..6c11c89f17 100644
--- a/src/gen/test/Model/UpdateActivityResponseTest.php
+++ b/src/gen/test/Model/UpdateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicantResponseTest.php b/src/gen/test/Model/UpdateApplicantResponseTest.php
index 9fb01c9c2e..cead95ffe1 100644
--- a/src/gen/test/Model/UpdateApplicantResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicationResponseTest.php b/src/gen/test/Model/UpdateApplicationResponseTest.php
index 95970a586d..0589d9644d 100644
--- a/src/gen/test/Model/UpdateApplicationResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateBillResponseTest.php b/src/gen/test/Model/UpdateBillResponseTest.php
index 2bb03acde2..280e7c6ba4 100644
--- a/src/gen/test/Model/UpdateBillResponseTest.php
+++ b/src/gen/test/Model/UpdateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCommentResponseTest.php b/src/gen/test/Model/UpdateCommentResponseTest.php
index 76407df53e..c9cf1d30f7 100644
--- a/src/gen/test/Model/UpdateCommentResponseTest.php
+++ b/src/gen/test/Model/UpdateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCompanyResponseTest.php b/src/gen/test/Model/UpdateCompanyResponseTest.php
index a99bac5cf1..18e7ce8a78 100644
--- a/src/gen/test/Model/UpdateCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConnectionResponseTest.php b/src/gen/test/Model/UpdateConnectionResponseTest.php
index c0e9a603ef..d934ba637c 100644
--- a/src/gen/test/Model/UpdateConnectionResponseTest.php
+++ b/src/gen/test/Model/UpdateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerRequestTest.php b/src/gen/test/Model/UpdateConsumerRequestTest.php
index f45c384c50..166c78a2a6 100644
--- a/src/gen/test/Model/UpdateConsumerRequestTest.php
+++ b/src/gen/test/Model/UpdateConsumerRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerResponseTest.php b/src/gen/test/Model/UpdateConsumerResponseTest.php
index fe5bdff374..f1747b73b6 100644
--- a/src/gen/test/Model/UpdateConsumerResponseTest.php
+++ b/src/gen/test/Model/UpdateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateContactResponseTest.php b/src/gen/test/Model/UpdateContactResponseTest.php
index 35847a763d..59c5c2839b 100644
--- a/src/gen/test/Model/UpdateContactResponseTest.php
+++ b/src/gen/test/Model/UpdateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCreditNoteResponseTest.php b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
index 9242f1ff4e..25305d6ea4 100644
--- a/src/gen/test/Model/UpdateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingRequestTest.php b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
index c2e3f63ea0..01b5ba2764 100644
--- a/src/gen/test/Model/UpdateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingResponseTest.php b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
index 9a14d6467d..9a423d0fe8 100644
--- a/src/gen/test/Model/UpdateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomerResponseTest.php b/src/gen/test/Model/UpdateCustomerResponseTest.php
index 1ab6416ec5..1d67448101 100644
--- a/src/gen/test/Model/UpdateCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDepartmentResponseTest.php b/src/gen/test/Model/UpdateDepartmentResponseTest.php
index ff328115b5..a8cb89f543 100644
--- a/src/gen/test/Model/UpdateDepartmentResponseTest.php
+++ b/src/gen/test/Model/UpdateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveGroupResponseTest.php b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
index 64b3bb954c..999b1e448b 100644
--- a/src/gen/test/Model/UpdateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveResponseTest.php b/src/gen/test/Model/UpdateDriveResponseTest.php
index 829270d07f..3f6520eefc 100644
--- a/src/gen/test/Model/UpdateDriveResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
index d6573e812e..302d1071ed 100644
--- a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
index ddc52ff250..5836897122 100644
--- a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEmployeeResponseTest.php b/src/gen/test/Model/UpdateEmployeeResponseTest.php
index a533440d03..9d6ee8f71b 100644
--- a/src/gen/test/Model/UpdateEmployeeResponseTest.php
+++ b/src/gen/test/Model/UpdateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileRequestTest.php b/src/gen/test/Model/UpdateFileRequestTest.php
index 22576682d6..e32c45dba4 100644
--- a/src/gen/test/Model/UpdateFileRequestTest.php
+++ b/src/gen/test/Model/UpdateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileResponseTest.php b/src/gen/test/Model/UpdateFileResponseTest.php
index 0178868dc2..b80ed18a28 100644
--- a/src/gen/test/Model/UpdateFileResponseTest.php
+++ b/src/gen/test/Model/UpdateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderRequestTest.php b/src/gen/test/Model/UpdateFolderRequestTest.php
index 577386aaf1..c26856c8ab 100644
--- a/src/gen/test/Model/UpdateFolderRequestTest.php
+++ b/src/gen/test/Model/UpdateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderResponseTest.php b/src/gen/test/Model/UpdateFolderResponseTest.php
index 478669ea9e..e970d1b5e2 100644
--- a/src/gen/test/Model/UpdateFolderResponseTest.php
+++ b/src/gen/test/Model/UpdateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
index 59d960291c..cbf0396577 100644
--- a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
index d7be0fb87a..154af3d0c3 100644
--- a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceResponseTest.php b/src/gen/test/Model/UpdateInvoiceResponseTest.php
index a8998dd056..e6f0a063bd 100644
--- a/src/gen/test/Model/UpdateInvoiceResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateItemResponseTest.php b/src/gen/test/Model/UpdateItemResponseTest.php
index cd0b1caa81..bef6dec304 100644
--- a/src/gen/test/Model/UpdateItemResponseTest.php
+++ b/src/gen/test/Model/UpdateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJobResponseTest.php b/src/gen/test/Model/UpdateJobResponseTest.php
index 931a2990e4..48f61309a9 100644
--- a/src/gen/test/Model/UpdateJobResponseTest.php
+++ b/src/gen/test/Model/UpdateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJournalEntryResponseTest.php b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
index cf220f2d99..f44a3a3459 100644
--- a/src/gen/test/Model/UpdateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLeadResponseTest.php b/src/gen/test/Model/UpdateLeadResponseTest.php
index edf2ebd415..2b2d933335 100644
--- a/src/gen/test/Model/UpdateLeadResponseTest.php
+++ b/src/gen/test/Model/UpdateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
index 1ed38e9f54..6ce5e0c034 100644
--- a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLocationResponseTest.php b/src/gen/test/Model/UpdateLocationResponseTest.php
index 4dc12431a2..d85c662de4 100644
--- a/src/gen/test/Model/UpdateLocationResponseTest.php
+++ b/src/gen/test/Model/UpdateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMerchantResponseTest.php b/src/gen/test/Model/UpdateMerchantResponseTest.php
index 8dae2f3b8d..9405987f5e 100644
--- a/src/gen/test/Model/UpdateMerchantResponseTest.php
+++ b/src/gen/test/Model/UpdateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMessageResponseTest.php b/src/gen/test/Model/UpdateMessageResponseTest.php
index b0e9470b0f..7dc8721552 100644
--- a/src/gen/test/Model/UpdateMessageResponseTest.php
+++ b/src/gen/test/Model/UpdateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierGroupResponseTest.php b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
index 4d7f354099..f98d91ca40 100644
--- a/src/gen/test/Model/UpdateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierResponseTest.php b/src/gen/test/Model/UpdateModifierResponseTest.php
index 9ba7cdf440..e10400fed3 100644
--- a/src/gen/test/Model/UpdateModifierResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateNoteResponseTest.php b/src/gen/test/Model/UpdateNoteResponseTest.php
index 7c801e7185..074de82f3e 100644
--- a/src/gen/test/Model/UpdateNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOpportunityResponseTest.php b/src/gen/test/Model/UpdateOpportunityResponseTest.php
index ea3ee7eeb3..d0e95bd856 100644
--- a/src/gen/test/Model/UpdateOpportunityResponseTest.php
+++ b/src/gen/test/Model/UpdateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderResponseTest.php b/src/gen/test/Model/UpdateOrderResponseTest.php
index 57fb02468d..56bb373e40 100644
--- a/src/gen/test/Model/UpdateOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderTypeResponseTest.php b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
index ac7623be9a..7502da1b04 100644
--- a/src/gen/test/Model/UpdateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePaymentResponseTest.php b/src/gen/test/Model/UpdatePaymentResponseTest.php
index 41def1089b..057e9b90e6 100644
--- a/src/gen/test/Model/UpdatePaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePipelineResponseTest.php b/src/gen/test/Model/UpdatePipelineResponseTest.php
index d23669a8b1..c19455f44e 100644
--- a/src/gen/test/Model/UpdatePipelineResponseTest.php
+++ b/src/gen/test/Model/UpdatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePosPaymentResponseTest.php b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
index 077c9fb729..5bd8fc4c1b 100644
--- a/src/gen/test/Model/UpdatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateProductResponseTest.php b/src/gen/test/Model/UpdateProductResponseTest.php
index 3438810fa9..5087737fe1 100644
--- a/src/gen/test/Model/UpdateProductResponseTest.php
+++ b/src/gen/test/Model/UpdateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
index fd84df01a0..82ee0cb5bf 100644
--- a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSharedLinkResponseTest.php b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
index 96aa91f9a3..b4682e9bbd 100644
--- a/src/gen/test/Model/UpdateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSubsidiaryResponseTest.php b/src/gen/test/Model/UpdateSubsidiaryResponseTest.php
new file mode 100644
index 0000000000..f9a7934696
--- /dev/null
+++ b/src/gen/test/Model/UpdateSubsidiaryResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/UpdateSupplierResponseTest.php b/src/gen/test/Model/UpdateSupplierResponseTest.php
index 23f4adb03d..034835d0de 100644
--- a/src/gen/test/Model/UpdateSupplierResponseTest.php
+++ b/src/gen/test/Model/UpdateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTaxRateResponseTest.php b/src/gen/test/Model/UpdateTaxRateResponseTest.php
index 85f123583a..033a75ed7d 100644
--- a/src/gen/test/Model/UpdateTaxRateResponseTest.php
+++ b/src/gen/test/Model/UpdateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTenderResponseTest.php b/src/gen/test/Model/UpdateTenderResponseTest.php
index 7a1fba2135..6832d13f36 100644
--- a/src/gen/test/Model/UpdateTenderResponseTest.php
+++ b/src/gen/test/Model/UpdateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTicketResponseTest.php b/src/gen/test/Model/UpdateTicketResponseTest.php
index ff40abffb4..932de75a1c 100644
--- a/src/gen/test/Model/UpdateTicketResponseTest.php
+++ b/src/gen/test/Model/UpdateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
index 18414cabee..9205600e9e 100644
--- a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUploadSessionResponseTest.php b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
index 37ba2760bb..e5ff0208fc 100644
--- a/src/gen/test/Model/UpdateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUserResponseTest.php b/src/gen/test/Model/UpdateUserResponseTest.php
index ba75ed808b..572a79a1ed 100644
--- a/src/gen/test/Model/UpdateUserResponseTest.php
+++ b/src/gen/test/Model/UpdateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookRequestTest.php b/src/gen/test/Model/UpdateWebhookRequestTest.php
index 8ae0dcef8a..4df6842a17 100644
--- a/src/gen/test/Model/UpdateWebhookRequestTest.php
+++ b/src/gen/test/Model/UpdateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookResponseTest.php b/src/gen/test/Model/UpdateWebhookResponseTest.php
index b975ff5e4d..5ccdf4e7cc 100644
--- a/src/gen/test/Model/UpdateWebhookResponseTest.php
+++ b/src/gen/test/Model/UpdateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UploadSessionTest.php b/src/gen/test/Model/UploadSessionTest.php
index 6a9a731c78..b2f026faba 100644
--- a/src/gen/test/Model/UploadSessionTest.php
+++ b/src/gen/test/Model/UploadSessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UserTest.php b/src/gen/test/Model/UserTest.php
index 0d53b6906c..2f5c123172 100644
--- a/src/gen/test/Model/UserTest.php
+++ b/src/gen/test/Model/UserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VaultEventTypeTest.php b/src/gen/test/Model/VaultEventTypeTest.php
index 11a1cf16c3..fc7dadc8a0 100644
--- a/src/gen/test/Model/VaultEventTypeTest.php
+++ b/src/gen/test/Model/VaultEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VirtualWebhooksTest.php b/src/gen/test/Model/VirtualWebhooksTest.php
index 5cdeeba2ce..ee194444c8 100644
--- a/src/gen/test/Model/VirtualWebhooksTest.php
+++ b/src/gen/test/Model/VirtualWebhooksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WalletDetailsTest.php b/src/gen/test/Model/WalletDetailsTest.php
index bba34ed7f5..780ec7b744 100644
--- a/src/gen/test/Model/WalletDetailsTest.php
+++ b/src/gen/test/Model/WalletDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogAttemptsTest.php b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
index 00935a0617..c105f4b673 100644
--- a/src/gen/test/Model/WebhookEventLogAttemptsTest.php
+++ b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogServiceTest.php b/src/gen/test/Model/WebhookEventLogServiceTest.php
index 12281a0ff3..e6739fb394 100644
--- a/src/gen/test/Model/WebhookEventLogServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogTest.php b/src/gen/test/Model/WebhookEventLogTest.php
index 1d84d046b5..933d14f4e4 100644
--- a/src/gen/test/Model/WebhookEventLogTest.php
+++ b/src/gen/test/Model/WebhookEventLogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
index 13da874f5f..eb47ec9ede 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterTest.php b/src/gen/test/Model/WebhookEventLogsFilterTest.php
index 5d99a67427..84068f8f1c 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTest.php b/src/gen/test/Model/WebhookEventTest.php
index dfbe2c2118..05f90458fe 100644
--- a/src/gen/test/Model/WebhookEventTest.php
+++ b/src/gen/test/Model/WebhookEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTypeTest.php b/src/gen/test/Model/WebhookEventTypeTest.php
index ac24c4a62c..a4ed1da969 100644
--- a/src/gen/test/Model/WebhookEventTypeTest.php
+++ b/src/gen/test/Model/WebhookEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSubscriptionTest.php b/src/gen/test/Model/WebhookSubscriptionTest.php
index 515c072909..ecd0b35601 100644
--- a/src/gen/test/Model/WebhookSubscriptionTest.php
+++ b/src/gen/test/Model/WebhookSubscriptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSupportTest.php b/src/gen/test/Model/WebhookSupportTest.php
index bbeb2516b6..d42f9f0b1a 100644
--- a/src/gen/test/Model/WebhookSupportTest.php
+++ b/src/gen/test/Model/WebhookSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookTest.php b/src/gen/test/Model/WebhookTest.php
index adf4c475e3..a33593c125 100644
--- a/src/gen/test/Model/WebhookTest.php
+++ b/src/gen/test/Model/WebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebsiteTest.php b/src/gen/test/Model/WebsiteTest.php
index 592e245a85..9652de6ff3 100644
--- a/src/gen/test/Model/WebsiteTest.php
+++ b/src/gen/test/Model/WebsiteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.1
+ * The version of the OpenAPI document: 10.2.2
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
From 762a6e3efad0922594c3739230a47e89016ea4f8 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 31 Jan 2024 21:13:01 +0000
Subject: [PATCH 6/9] Automated update by SDK Generator version:3.2.0
commit:99e34f7
---
src/gen/.openapi-generator/FILES | 45 +
src/gen/docs/apis/AccountingApi.md | 990 ++-
src/gen/docs/models/AccountingDepartment.md | 52 +
.../models/AccountingDepartmentsFilter.md | 18 +
src/gen/docs/models/AccountingLocation.md | 56 +
.../docs/models/AccountingLocationsFilter.md | 18 +
.../CreateAccountingDepartmentResponse.md | 31 +
.../CreateAccountingLocationResponse.md | 31 +
.../DeleteAccountingDepartmentResponse.md | 31 +
.../DeleteAccountingLocationResponse.md | 31 +
.../models/GetAccountingDepartmentResponse.md | 31 +
.../GetAccountingDepartmentsResponse.md | 35 +
.../models/GetAccountingLocationResponse.md | 31 +
.../models/GetAccountingLocationsResponse.md | 35 +
src/gen/docs/models/SubsidiaryReference.md | 19 +
.../UpdateAccountingDepartmentResponse.md | 31 +
.../UpdateAccountingLocationResponse.md | 31 +
src/gen/lib/Api/AccountingApi.php | 6804 +++++++++++++++--
src/gen/lib/Api/AtsApi.php | 2 +-
src/gen/lib/Api/ConnectorApi.php | 2 +-
src/gen/lib/Api/CrmApi.php | 2 +-
src/gen/lib/Api/EcommerceApi.php | 2 +-
src/gen/lib/Api/FileStorageApi.php | 2 +-
src/gen/lib/Api/HrisApi.php | 2 +-
src/gen/lib/Api/IssueTrackingApi.php | 2 +-
src/gen/lib/Api/LeadApi.php | 2 +-
src/gen/lib/Api/PosApi.php | 2 +-
src/gen/lib/Api/SmsApi.php | 2 +-
src/gen/lib/Api/VaultApi.php | 2 +-
src/gen/lib/Api/WebhookApi.php | 2 +-
src/gen/lib/ApiException.php | 2 +-
src/gen/lib/Configuration.php | 4 +-
src/gen/lib/HeaderSelector.php | 2 +-
src/gen/lib/Model/AccountingDepartment.php | 654 ++
.../lib/Model/AccountingDepartmentsFilter.php | 320 +
src/gen/lib/Model/AccountingEventType.php | 2 +-
src/gen/lib/Model/AccountingLocation.php | 714 ++
.../lib/Model/AccountingLocationsFilter.php | 320 +
src/gen/lib/Model/ActivitiesFilter.php | 2 +-
src/gen/lib/Model/ActivitiesSort.php | 2 +-
src/gen/lib/Model/Activity.php | 2 +-
src/gen/lib/Model/ActivityAttendee.php | 2 +-
src/gen/lib/Model/Address.php | 2 +-
src/gen/lib/Model/Api.php | 2 +-
src/gen/lib/Model/ApiResource.php | 2 +-
src/gen/lib/Model/ApiResourceCoverage.php | 2 +-
.../lib/Model/ApiResourceCoverageCoverage.php | 2 +-
.../lib/Model/ApiResourceLinkedResources.php | 2 +-
src/gen/lib/Model/ApiResources.php | 2 +-
src/gen/lib/Model/ApiStatus.php | 2 +-
src/gen/lib/Model/ApisFilter.php | 2 +-
src/gen/lib/Model/Applicant.php | 2 +-
src/gen/lib/Model/ApplicantSocialLinks.php | 2 +-
src/gen/lib/Model/ApplicantWebsites.php | 2 +-
src/gen/lib/Model/ApplicantsFilter.php | 2 +-
src/gen/lib/Model/Application.php | 2 +-
src/gen/lib/Model/ApplicationStage.php | 2 +-
src/gen/lib/Model/Assignee.php | 2 +-
src/gen/lib/Model/AtsActivity.php | 2 +-
src/gen/lib/Model/AtsEventType.php | 2 +-
src/gen/lib/Model/AuthType.php | 2 +-
src/gen/lib/Model/BadRequestResponse.php | 2 +-
src/gen/lib/Model/BalanceSheet.php | 2 +-
src/gen/lib/Model/BalanceSheetAssets.php | 2 +-
.../Model/BalanceSheetAssetsCurrentAssets.php | 2 +-
...alanceSheetAssetsCurrentAssetsAccounts.php | 2 +-
.../Model/BalanceSheetAssetsFixedAssets.php | 2 +-
.../BalanceSheetAssetsFixedAssetsAccounts.php | 2 +-
src/gen/lib/Model/BalanceSheetEquity.php | 2 +-
src/gen/lib/Model/BalanceSheetEquityItems.php | 2 +-
src/gen/lib/Model/BalanceSheetFilter.php | 2 +-
src/gen/lib/Model/BalanceSheetLiabilities.php | 2 +-
.../Model/BalanceSheetLiabilitiesAccounts.php | 2 +-
src/gen/lib/Model/BankAccount.php | 2 +-
src/gen/lib/Model/Benefit.php | 2 +-
src/gen/lib/Model/Bill.php | 2 +-
src/gen/lib/Model/BillLineItem.php | 2 +-
src/gen/lib/Model/BillsFilter.php | 2 +-
src/gen/lib/Model/BillsSort.php | 2 +-
src/gen/lib/Model/Branch.php | 2 +-
src/gen/lib/Model/CashDetails.php | 2 +-
src/gen/lib/Model/Collection.php | 2 +-
src/gen/lib/Model/CollectionTag.php | 2 +-
src/gen/lib/Model/CollectionTicketComment.php | 2 +-
src/gen/lib/Model/CollectionUser.php | 2 +-
src/gen/lib/Model/CollectionsSort.php | 2 +-
src/gen/lib/Model/CommentsSort.php | 2 +-
src/gen/lib/Model/CompaniesFilter.php | 2 +-
src/gen/lib/Model/CompaniesSort.php | 2 +-
src/gen/lib/Model/Company.php | 2 +-
src/gen/lib/Model/CompanyInfo.php | 2 +-
src/gen/lib/Model/CompanyRowType.php | 2 +-
src/gen/lib/Model/Compensation.php | 2 +-
src/gen/lib/Model/Connection.php | 2 +-
src/gen/lib/Model/ConnectionConfiguration.php | 2 +-
src/gen/lib/Model/ConnectionDefaults.php | 2 +-
src/gen/lib/Model/ConnectionImportData.php | 2 +-
.../Model/ConnectionImportDataCredentials.php | 2 +-
src/gen/lib/Model/ConnectionMetadata.php | 2 +-
src/gen/lib/Model/ConnectionState.php | 2 +-
src/gen/lib/Model/ConnectionWebhook.php | 2 +-
src/gen/lib/Model/Connector.php | 2 +-
src/gen/lib/Model/ConnectorDoc.php | 2 +-
src/gen/lib/Model/ConnectorEvent.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes1.php | 2 +-
src/gen/lib/Model/ConnectorResource.php | 2 +-
src/gen/lib/Model/ConnectorSetting.php | 2 +-
src/gen/lib/Model/ConnectorStatus.php | 2 +-
src/gen/lib/Model/ConnectorTlsSupport.php | 2 +-
src/gen/lib/Model/ConnectorUnifiedApis.php | 2 +-
src/gen/lib/Model/ConnectorsFilter.php | 2 +-
src/gen/lib/Model/Consumer.php | 2 +-
src/gen/lib/Model/ConsumerConnection.php | 2 +-
src/gen/lib/Model/ConsumerMetadata.php | 2 +-
...nsumerRequestCountsInDateRangeResponse.php | 2 +-
...erRequestCountsInDateRangeResponseData.php | 2 +-
src/gen/lib/Model/Contact.php | 2 +-
src/gen/lib/Model/ContactsFilter.php | 2 +-
src/gen/lib/Model/ContactsSort.php | 2 +-
src/gen/lib/Model/CopyFolderRequest.php | 2 +-
.../CreateAccountingDepartmentResponse.php | 488 ++
.../CreateAccountingLocationResponse.php | 488 ++
src/gen/lib/Model/CreateActivityResponse.php | 2 +-
src/gen/lib/Model/CreateApplicantResponse.php | 2 +-
.../lib/Model/CreateApplicationResponse.php | 2 +-
src/gen/lib/Model/CreateBillResponse.php | 2 +-
src/gen/lib/Model/CreateCommentResponse.php | 2 +-
src/gen/lib/Model/CreateCompanyResponse.php | 2 +-
.../lib/Model/CreateConnectionResponse.php | 2 +-
src/gen/lib/Model/CreateConsumerResponse.php | 2 +-
src/gen/lib/Model/CreateContactResponse.php | 2 +-
.../lib/Model/CreateCreditNoteResponse.php | 2 +-
.../lib/Model/CreateCustomMappingRequest.php | 2 +-
.../lib/Model/CreateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/CreateCustomerResponse.php | 2 +-
.../lib/Model/CreateDepartmentResponse.php | 2 +-
.../lib/Model/CreateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/CreateDriveResponse.php | 2 +-
.../Model/CreateEcommerceCustomerResponse.php | 2 +-
.../Model/CreateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/CreateEmployeeResponse.php | 2 +-
src/gen/lib/Model/CreateFileRequest.php | 2 +-
src/gen/lib/Model/CreateFileResponse.php | 2 +-
src/gen/lib/Model/CreateFolderRequest.php | 2 +-
src/gen/lib/Model/CreateFolderResponse.php | 2 +-
.../lib/Model/CreateHrisCompanyResponse.php | 2 +-
.../lib/Model/CreateInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/CreateInvoiceResponse.php | 2 +-
src/gen/lib/Model/CreateItemResponse.php | 2 +-
src/gen/lib/Model/CreateJobResponse.php | 2 +-
.../lib/Model/CreateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/CreateLeadResponse.php | 2 +-
.../lib/Model/CreateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/CreateLocationResponse.php | 2 +-
src/gen/lib/Model/CreateMerchantResponse.php | 2 +-
src/gen/lib/Model/CreateMessageResponse.php | 2 +-
.../lib/Model/CreateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/CreateModifierResponse.php | 2 +-
src/gen/lib/Model/CreateNoteResponse.php | 2 +-
.../lib/Model/CreateOpportunityResponse.php | 2 +-
src/gen/lib/Model/CreateOrderResponse.php | 2 +-
src/gen/lib/Model/CreateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/CreatePaymentResponse.php | 2 +-
src/gen/lib/Model/CreatePipelineResponse.php | 2 +-
.../lib/Model/CreatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/CreateProductResponse.php | 2 +-
.../lib/Model/CreatePurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/CreateSessionResponse.php | 2 +-
.../lib/Model/CreateSessionResponseData.php | 2 +-
.../lib/Model/CreateSharedLinkResponse.php | 2 +-
.../lib/Model/CreateSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/CreateSupplierResponse.php | 2 +-
src/gen/lib/Model/CreateTaxRateResponse.php | 2 +-
src/gen/lib/Model/CreateTenderResponse.php | 2 +-
src/gen/lib/Model/CreateTicketResponse.php | 2 +-
.../Model/CreateTimeOffRequestResponse.php | 2 +-
.../lib/Model/CreateUploadSessionRequest.php | 2 +-
.../lib/Model/CreateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/CreateUserResponse.php | 2 +-
src/gen/lib/Model/CreateWebhookRequest.php | 2 +-
src/gen/lib/Model/CreateWebhookResponse.php | 2 +-
src/gen/lib/Model/CreditNote.php | 2 +-
src/gen/lib/Model/CreditNotesFilter.php | 2 +-
src/gen/lib/Model/CreditNotesSort.php | 2 +-
src/gen/lib/Model/CrmEventType.php | 2 +-
src/gen/lib/Model/Currency.php | 2 +-
src/gen/lib/Model/CustomField.php | 2 +-
src/gen/lib/Model/CustomFieldFinder.php | 2 +-
src/gen/lib/Model/CustomMapping.php | 2 +-
src/gen/lib/Model/Customer.php | 2 +-
src/gen/lib/Model/CustomersFilter.php | 2 +-
src/gen/lib/Model/CustomersSort.php | 2 +-
src/gen/lib/Model/Deduction.php | 2 +-
.../DeleteAccountingDepartmentResponse.php | 488 ++
.../DeleteAccountingLocationResponse.php | 488 ++
src/gen/lib/Model/DeleteActivityResponse.php | 2 +-
src/gen/lib/Model/DeleteApplicantResponse.php | 2 +-
.../lib/Model/DeleteApplicationResponse.php | 2 +-
src/gen/lib/Model/DeleteBillResponse.php | 2 +-
src/gen/lib/Model/DeleteCommentResponse.php | 2 +-
src/gen/lib/Model/DeleteCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteConsumerResponse.php | 2 +-
src/gen/lib/Model/DeleteContactResponse.php | 2 +-
.../lib/Model/DeleteCreditNoteResponse.php | 2 +-
src/gen/lib/Model/DeleteCustomerResponse.php | 2 +-
.../lib/Model/DeleteDepartmentResponse.php | 2 +-
.../lib/Model/DeleteDriveGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteDriveResponse.php | 2 +-
.../Model/DeleteEcommerceCustomerResponse.php | 2 +-
.../Model/DeleteEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteEmployeeResponse.php | 2 +-
src/gen/lib/Model/DeleteFileResponse.php | 2 +-
src/gen/lib/Model/DeleteFolderResponse.php | 2 +-
.../lib/Model/DeleteHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteInvoiceResponse.php | 2 +-
src/gen/lib/Model/DeleteItemResponse.php | 2 +-
src/gen/lib/Model/DeleteJobResponse.php | 2 +-
.../lib/Model/DeleteJournalEntryResponse.php | 2 +-
src/gen/lib/Model/DeleteLeadResponse.php | 2 +-
.../lib/Model/DeleteLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/DeleteLocationResponse.php | 2 +-
src/gen/lib/Model/DeleteMerchantResponse.php | 2 +-
src/gen/lib/Model/DeleteMessageResponse.php | 2 +-
.../lib/Model/DeleteModifierGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteModifierResponse.php | 2 +-
src/gen/lib/Model/DeleteNoteResponse.php | 2 +-
.../lib/Model/DeleteOpportunityResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderTypeResponse.php | 2 +-
src/gen/lib/Model/DeletePaymentResponse.php | 2 +-
src/gen/lib/Model/DeletePipelineResponse.php | 2 +-
.../lib/Model/DeletePosPaymentResponse.php | 2 +-
src/gen/lib/Model/DeleteProductResponse.php | 2 +-
.../lib/Model/DeletePurchaseOrderResponse.php | 2 +-
.../lib/Model/DeleteSharedLinkResponse.php | 2 +-
.../lib/Model/DeleteSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/DeleteSupplierResponse.php | 2 +-
src/gen/lib/Model/DeleteTaxRateResponse.php | 2 +-
src/gen/lib/Model/DeleteTenderResponse.php | 2 +-
src/gen/lib/Model/DeleteTicketResponse.php | 2 +-
.../Model/DeleteTimeOffRequestResponse.php | 2 +-
.../lib/Model/DeleteUploadSessionResponse.php | 2 +-
src/gen/lib/Model/DeleteUserResponse.php | 2 +-
src/gen/lib/Model/DeleteWebhookResponse.php | 2 +-
src/gen/lib/Model/Department.php | 2 +-
src/gen/lib/Model/Drive.php | 2 +-
src/gen/lib/Model/DriveGroup.php | 2 +-
src/gen/lib/Model/DriveGroupsFilter.php | 2 +-
src/gen/lib/Model/DrivesFilter.php | 2 +-
src/gen/lib/Model/EcommerceAddress.php | 2 +-
src/gen/lib/Model/EcommerceCustomer.php | 2 +-
.../lib/Model/EcommerceCustomerAddresses.php | 2 +-
.../lib/Model/EcommerceCustomersFilter.php | 2 +-
src/gen/lib/Model/EcommerceDiscount.php | 2 +-
src/gen/lib/Model/EcommerceOrder.php | 2 +-
src/gen/lib/Model/EcommerceOrderLineItem.php | 2 +-
src/gen/lib/Model/EcommerceOrderStatus.php | 2 +-
src/gen/lib/Model/EcommerceOrdersFilter.php | 2 +-
src/gen/lib/Model/EcommerceProduct.php | 2 +-
.../lib/Model/EcommerceProductCategories.php | 2 +-
src/gen/lib/Model/EcommerceProductImages.php | 2 +-
src/gen/lib/Model/EcommerceProductImages1.php | 2 +-
src/gen/lib/Model/EcommerceProductOptions.php | 2 +-
.../lib/Model/EcommerceProductOptions1.php | 2 +-
.../lib/Model/EcommerceProductVariants.php | 2 +-
src/gen/lib/Model/EcommerceStore.php | 2 +-
src/gen/lib/Model/Email.php | 2 +-
src/gen/lib/Model/Employee.php | 2 +-
src/gen/lib/Model/EmployeeCompensation.php | 2 +-
src/gen/lib/Model/EmployeeEmploymentRole.php | 2 +-
src/gen/lib/Model/EmployeeJob.php | 2 +-
src/gen/lib/Model/EmployeeList.php | 2 +-
src/gen/lib/Model/EmployeeManager.php | 2 +-
src/gen/lib/Model/EmployeePayroll.php | 2 +-
src/gen/lib/Model/EmployeeSchedules.php | 2 +-
src/gen/lib/Model/EmployeesFilter.php | 2 +-
src/gen/lib/Model/EmployeesSort.php | 2 +-
src/gen/lib/Model/EmploymentStatus.php | 2 +-
src/gen/lib/Model/Error.php | 2 +-
src/gen/lib/Model/ExecuteWebhookResponse.php | 2 +-
src/gen/lib/Model/FileStorageEventType.php | 2 +-
src/gen/lib/Model/FileType.php | 2 +-
src/gen/lib/Model/FilesFilter.php | 2 +-
src/gen/lib/Model/FilesSearch.php | 2 +-
src/gen/lib/Model/FilesSort.php | 2 +-
src/gen/lib/Model/Folder.php | 2 +-
src/gen/lib/Model/FormField.php | 2 +-
src/gen/lib/Model/FormFieldOption.php | 2 +-
src/gen/lib/Model/FormFieldOptionGroup.php | 2 +-
src/gen/lib/Model/Gender.php | 2 +-
.../Model/GetAccountingDepartmentResponse.php | 488 ++
.../GetAccountingDepartmentsResponse.php | 548 ++
.../Model/GetAccountingLocationResponse.php | 488 ++
.../Model/GetAccountingLocationsResponse.php | 548 ++
src/gen/lib/Model/GetActivitiesResponse.php | 2 +-
src/gen/lib/Model/GetActivityResponse.php | 2 +-
.../Model/GetApiResourceCoverageResponse.php | 2 +-
src/gen/lib/Model/GetApiResourceResponse.php | 2 +-
src/gen/lib/Model/GetApiResponse.php | 2 +-
src/gen/lib/Model/GetApisResponse.php | 2 +-
src/gen/lib/Model/GetApplicantResponse.php | 2 +-
src/gen/lib/Model/GetApplicantsResponse.php | 2 +-
src/gen/lib/Model/GetApplicationResponse.php | 2 +-
src/gen/lib/Model/GetApplicationsResponse.php | 2 +-
src/gen/lib/Model/GetBalanceSheetResponse.php | 2 +-
src/gen/lib/Model/GetBillResponse.php | 2 +-
src/gen/lib/Model/GetBillsResponse.php | 2 +-
src/gen/lib/Model/GetCollectionResponse.php | 2 +-
.../lib/Model/GetCollectionTagsResponse.php | 2 +-
.../lib/Model/GetCollectionUserResponse.php | 2 +-
.../lib/Model/GetCollectionUsersResponse.php | 2 +-
src/gen/lib/Model/GetCollectionsResponse.php | 2 +-
src/gen/lib/Model/GetCommentResponse.php | 2 +-
src/gen/lib/Model/GetCommentsResponse.php | 2 +-
src/gen/lib/Model/GetCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetCompanyInfoResponse.php | 2 +-
src/gen/lib/Model/GetCompanyResponse.php | 2 +-
src/gen/lib/Model/GetConnectionResponse.php | 2 +-
src/gen/lib/Model/GetConnectionsResponse.php | 2 +-
.../GetConnectorResourceExampleResponse.php | 2 +-
...etConnectorResourceExampleResponseData.php | 2 +-
.../Model/GetConnectorResourceResponse.php | 2 +-
.../GetConnectorResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetConnectorResponse.php | 2 +-
src/gen/lib/Model/GetConnectorsResponse.php | 2 +-
src/gen/lib/Model/GetConsumerResponse.php | 2 +-
src/gen/lib/Model/GetConsumersResponse.php | 2 +-
.../lib/Model/GetConsumersResponseData.php | 2 +-
src/gen/lib/Model/GetContactResponse.php | 2 +-
src/gen/lib/Model/GetContactsResponse.php | 2 +-
src/gen/lib/Model/GetCreditNoteResponse.php | 2 +-
src/gen/lib/Model/GetCreditNotesResponse.php | 2 +-
src/gen/lib/Model/GetCustomFieldsResponse.php | 2 +-
.../lib/Model/GetCustomMappingResponse.php | 2 +-
src/gen/lib/Model/GetCustomerResponse.php | 2 +-
src/gen/lib/Model/GetCustomersResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentsResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupsResponse.php | 2 +-
src/gen/lib/Model/GetDriveResponse.php | 2 +-
src/gen/lib/Model/GetDrivesResponse.php | 2 +-
.../Model/GetEcommerceCustomerResponse.php | 2 +-
.../Model/GetEcommerceCustomersResponse.php | 2 +-
.../lib/Model/GetEcommerceOrderResponse.php | 2 +-
.../lib/Model/GetEcommerceOrdersResponse.php | 2 +-
.../lib/Model/GetEmployeePayrollResponse.php | 2 +-
.../lib/Model/GetEmployeePayrollsResponse.php | 2 +-
src/gen/lib/Model/GetEmployeeResponse.php | 2 +-
.../Model/GetEmployeeSchedulesResponse.php | 2 +-
src/gen/lib/Model/GetEmployeesResponse.php | 2 +-
src/gen/lib/Model/GetFileResponse.php | 2 +-
src/gen/lib/Model/GetFilesResponse.php | 2 +-
src/gen/lib/Model/GetFolderResponse.php | 2 +-
src/gen/lib/Model/GetFoldersResponse.php | 2 +-
.../lib/Model/GetHrisCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceResponse.php | 2 +-
src/gen/lib/Model/GetInvoicesResponse.php | 2 +-
src/gen/lib/Model/GetItemResponse.php | 2 +-
src/gen/lib/Model/GetItemsResponse.php | 2 +-
src/gen/lib/Model/GetJobResponse.php | 2 +-
src/gen/lib/Model/GetJobsResponse.php | 2 +-
.../lib/Model/GetJournalEntriesResponse.php | 2 +-
src/gen/lib/Model/GetJournalEntryResponse.php | 2 +-
src/gen/lib/Model/GetLeadResponse.php | 2 +-
src/gen/lib/Model/GetLeadsResponse.php | 2 +-
.../lib/Model/GetLedgerAccountResponse.php | 2 +-
.../lib/Model/GetLedgerAccountsResponse.php | 2 +-
src/gen/lib/Model/GetLocationResponse.php | 2 +-
src/gen/lib/Model/GetLocationsResponse.php | 2 +-
src/gen/lib/Model/GetLogsResponse.php | 2 +-
src/gen/lib/Model/GetMerchantResponse.php | 2 +-
src/gen/lib/Model/GetMerchantsResponse.php | 2 +-
src/gen/lib/Model/GetMessageResponse.php | 2 +-
src/gen/lib/Model/GetMessagesResponse.php | 2 +-
.../lib/Model/GetModifierGroupResponse.php | 2 +-
.../lib/Model/GetModifierGroupsResponse.php | 2 +-
src/gen/lib/Model/GetModifierResponse.php | 2 +-
src/gen/lib/Model/GetModifiersResponse.php | 2 +-
src/gen/lib/Model/GetNoteResponse.php | 2 +-
src/gen/lib/Model/GetNotesResponse.php | 2 +-
.../lib/Model/GetOpportunitiesResponse.php | 2 +-
src/gen/lib/Model/GetOpportunityResponse.php | 2 +-
src/gen/lib/Model/GetOrderResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypeResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypesResponse.php | 2 +-
src/gen/lib/Model/GetOrdersResponse.php | 2 +-
src/gen/lib/Model/GetPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetPayrollResponse.php | 2 +-
src/gen/lib/Model/GetPayrollsResponse.php | 2 +-
src/gen/lib/Model/GetPipelineResponse.php | 2 +-
src/gen/lib/Model/GetPipelinesResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetProductResponse.php | 2 +-
src/gen/lib/Model/GetProductsResponse.php | 2 +-
.../lib/Model/GetProfitAndLossResponse.php | 2 +-
.../lib/Model/GetPurchaseOrderResponse.php | 2 +-
.../lib/Model/GetPurchaseOrdersResponse.php | 2 +-
.../lib/Model/GetResourceExampleResponse.php | 2 +-
.../lib/Model/GetResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinkResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinksResponse.php | 2 +-
src/gen/lib/Model/GetStoreResponse.php | 2 +-
src/gen/lib/Model/GetStoresResponse.php | 2 +-
src/gen/lib/Model/GetSubsidiariesResponse.php | 2 +-
src/gen/lib/Model/GetSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/GetSupplierResponse.php | 2 +-
src/gen/lib/Model/GetSuppliersResponse.php | 2 +-
src/gen/lib/Model/GetTaxRateResponse.php | 2 +-
src/gen/lib/Model/GetTaxRatesResponse.php | 2 +-
src/gen/lib/Model/GetTenderResponse.php | 2 +-
src/gen/lib/Model/GetTendersResponse.php | 2 +-
src/gen/lib/Model/GetTicketResponse.php | 2 +-
src/gen/lib/Model/GetTicketsResponse.php | 2 +-
.../lib/Model/GetTimeOffRequestResponse.php | 2 +-
.../lib/Model/GetTimeOffRequestsResponse.php | 2 +-
.../lib/Model/GetUploadSessionResponse.php | 2 +-
src/gen/lib/Model/GetUserResponse.php | 2 +-
src/gen/lib/Model/GetUsersResponse.php | 2 +-
.../lib/Model/GetWebhookEventLogsResponse.php | 2 +-
src/gen/lib/Model/GetWebhookResponse.php | 2 +-
src/gen/lib/Model/GetWebhooksResponse.php | 2 +-
src/gen/lib/Model/HrisCompany.php | 2 +-
src/gen/lib/Model/HrisEventType.php | 2 +-
src/gen/lib/Model/HrisJob.php | 2 +-
src/gen/lib/Model/HrisJobLocation.php | 2 +-
src/gen/lib/Model/HrisJobs.php | 2 +-
src/gen/lib/Model/IntegrationState.php | 2 +-
src/gen/lib/Model/Invoice.php | 2 +-
src/gen/lib/Model/InvoiceItem.php | 2 +-
src/gen/lib/Model/InvoiceItemSalesDetails.php | 2 +-
src/gen/lib/Model/InvoiceItemsFilter.php | 2 +-
src/gen/lib/Model/InvoiceLineItem.php | 2 +-
src/gen/lib/Model/InvoiceResponse.php | 2 +-
src/gen/lib/Model/InvoicesFilter.php | 2 +-
src/gen/lib/Model/InvoicesSort.php | 2 +-
src/gen/lib/Model/IssueTrackingEventType.php | 2 +-
src/gen/lib/Model/IssuesFilter.php | 2 +-
src/gen/lib/Model/Item.php | 2 +-
src/gen/lib/Model/Job.php | 2 +-
src/gen/lib/Model/JobLinks.php | 2 +-
src/gen/lib/Model/JobSalary.php | 2 +-
src/gen/lib/Model/JobStatus.php | 2 +-
src/gen/lib/Model/JournalEntriesFilter.php | 2 +-
src/gen/lib/Model/JournalEntriesSort.php | 2 +-
src/gen/lib/Model/JournalEntry.php | 2 +-
src/gen/lib/Model/JournalEntryLineItem.php | 2 +-
src/gen/lib/Model/Lead.php | 2 +-
src/gen/lib/Model/LeadEventType.php | 2 +-
src/gen/lib/Model/LeadsFilter.php | 2 +-
src/gen/lib/Model/LeadsSort.php | 2 +-
src/gen/lib/Model/LedgerAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountCategories.php | 2 +-
.../lib/Model/LedgerAccountParentAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountsFilter.php | 2 +-
src/gen/lib/Model/LedgerAccountsSort.php | 2 +-
src/gen/lib/Model/LinkedConnectorResource.php | 2 +-
src/gen/lib/Model/LinkedCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceOrder.php | 2 +-
src/gen/lib/Model/LinkedFolder.php | 2 +-
src/gen/lib/Model/LinkedInvoiceItem.php | 2 +-
src/gen/lib/Model/LinkedLedgerAccount.php | 2 +-
src/gen/lib/Model/LinkedParentCustomer.php | 2 +-
src/gen/lib/Model/LinkedSupplier.php | 2 +-
src/gen/lib/Model/LinkedTaxRate.php | 2 +-
src/gen/lib/Model/LinkedTrackingCategory.php | 2 +-
src/gen/lib/Model/Links.php | 2 +-
src/gen/lib/Model/Location.php | 2 +-
src/gen/lib/Model/Log.php | 2 +-
src/gen/lib/Model/LogOperation.php | 2 +-
src/gen/lib/Model/LogService.php | 2 +-
src/gen/lib/Model/LogsFilter.php | 2 +-
src/gen/lib/Model/Merchant.php | 2 +-
src/gen/lib/Model/Message.php | 2 +-
src/gen/lib/Model/Meta.php | 2 +-
src/gen/lib/Model/MetaCursors.php | 2 +-
src/gen/lib/Model/ModelInterface.php | 2 +-
src/gen/lib/Model/Modifier.php | 2 +-
src/gen/lib/Model/ModifierGroup.php | 2 +-
src/gen/lib/Model/ModifierGroupFilter.php | 2 +-
src/gen/lib/Model/NotFoundResponse.php | 2 +-
src/gen/lib/Model/NotImplementedResponse.php | 2 +-
src/gen/lib/Model/Note.php | 2 +-
src/gen/lib/Model/OAuthGrantType.php | 2 +-
src/gen/lib/Model/Offer.php | 2 +-
src/gen/lib/Model/OpportunitiesFilter.php | 2 +-
src/gen/lib/Model/OpportunitiesSort.php | 2 +-
src/gen/lib/Model/Opportunity.php | 2 +-
src/gen/lib/Model/Order.php | 2 +-
src/gen/lib/Model/OrderCustomers.php | 2 +-
src/gen/lib/Model/OrderDiscounts.php | 2 +-
src/gen/lib/Model/OrderFulfillments.php | 2 +-
src/gen/lib/Model/OrderLineItems.php | 2 +-
src/gen/lib/Model/OrderPayments.php | 2 +-
src/gen/lib/Model/OrderPickupDetails.php | 2 +-
...rderPickupDetailsCurbsidePickupDetails.php | 2 +-
.../lib/Model/OrderPickupDetailsRecipient.php | 2 +-
src/gen/lib/Model/OrderRefunds.php | 2 +-
src/gen/lib/Model/OrderTenders.php | 2 +-
src/gen/lib/Model/OrderType.php | 2 +-
src/gen/lib/Model/Owner.php | 2 +-
src/gen/lib/Model/PaginationCoverage.php | 2 +-
src/gen/lib/Model/PassThroughQuery.php | 2 +-
src/gen/lib/Model/Payment.php | 2 +-
src/gen/lib/Model/PaymentAllocations.php | 2 +-
src/gen/lib/Model/PaymentCard.php | 2 +-
src/gen/lib/Model/PaymentFrequency.php | 2 +-
src/gen/lib/Model/PaymentRequiredResponse.php | 2 +-
src/gen/lib/Model/PaymentUnit.php | 2 +-
src/gen/lib/Model/PaymentsFilter.php | 2 +-
src/gen/lib/Model/PaymentsSort.php | 2 +-
src/gen/lib/Model/Payroll.php | 2 +-
src/gen/lib/Model/PayrollTotals.php | 2 +-
src/gen/lib/Model/PayrollsFilter.php | 2 +-
src/gen/lib/Model/Person.php | 2 +-
src/gen/lib/Model/PhoneNumber.php | 2 +-
src/gen/lib/Model/Pipeline.php | 2 +-
src/gen/lib/Model/PipelineStages.php | 2 +-
src/gen/lib/Model/PosBankAccount.php | 2 +-
.../lib/Model/PosBankAccountAchDetails.php | 2 +-
src/gen/lib/Model/PosPayment.php | 2 +-
src/gen/lib/Model/PosPaymentCardDetails.php | 2 +-
.../lib/Model/PosPaymentExternalDetails.php | 2 +-
src/gen/lib/Model/Price.php | 2 +-
src/gen/lib/Model/ProbationPeriod.php | 2 +-
src/gen/lib/Model/ProfitAndLoss.php | 2 +-
src/gen/lib/Model/ProfitAndLossExpenses.php | 2 +-
src/gen/lib/Model/ProfitAndLossFilter.php | 2 +-
.../lib/Model/ProfitAndLossGrossProfit.php | 2 +-
src/gen/lib/Model/ProfitAndLossIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossNetIncome.php | 2 +-
.../Model/ProfitAndLossNetOperatingIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossRecord.php | 2 +-
src/gen/lib/Model/ProfitAndLossSection.php | 2 +-
src/gen/lib/Model/PurchaseOrder.php | 2 +-
src/gen/lib/Model/PurchaseOrdersFilter.php | 2 +-
src/gen/lib/Model/PurchaseOrdersSort.php | 2 +-
src/gen/lib/Model/RequestCountAllocation.php | 2 +-
src/gen/lib/Model/RequestRate.php | 2 +-
src/gen/lib/Model/ResolveWebhookResponse.php | 2 +-
src/gen/lib/Model/ResourceExample.php | 2 +-
src/gen/lib/Model/ResourceStatus.php | 2 +-
src/gen/lib/Model/Schedule.php | 2 +-
src/gen/lib/Model/ScheduleWorkPattern.php | 2 +-
.../lib/Model/ScheduleWorkPatternOddWeeks.php | 2 +-
src/gen/lib/Model/SchemaSupport.php | 2 +-
src/gen/lib/Model/ServiceCharge.php | 2 +-
src/gen/lib/Model/Session.php | 2 +-
src/gen/lib/Model/SessionSettings.php | 2 +-
src/gen/lib/Model/SessionTheme.php | 2 +-
src/gen/lib/Model/SharedLink.php | 2 +-
src/gen/lib/Model/SharedLinkTarget.php | 2 +-
src/gen/lib/Model/SimpleFormFieldOption.php | 2 +-
src/gen/lib/Model/SocialLink.php | 2 +-
src/gen/lib/Model/SortDirection.php | 2 +-
src/gen/lib/Model/Status.php | 2 +-
src/gen/lib/Model/Subsidiary.php | 2 +-
src/gen/lib/Model/SubsidiaryReference.php | 350 +
src/gen/lib/Model/Supplier.php | 2 +-
src/gen/lib/Model/SuppliersFilter.php | 2 +-
src/gen/lib/Model/SuppliersSort.php | 2 +-
src/gen/lib/Model/SupportedProperty.php | 2 +-
src/gen/lib/Model/Tax.php | 2 +-
src/gen/lib/Model/TaxRate.php | 2 +-
src/gen/lib/Model/TaxRatesFilter.php | 2 +-
src/gen/lib/Model/Team.php | 2 +-
src/gen/lib/Model/Tender.php | 2 +-
src/gen/lib/Model/Ticket.php | 2 +-
src/gen/lib/Model/TicketsSort.php | 2 +-
src/gen/lib/Model/TimeOffRequest.php | 2 +-
src/gen/lib/Model/TimeOffRequestNotes.php | 2 +-
src/gen/lib/Model/TimeOffRequestsFilter.php | 2 +-
src/gen/lib/Model/TooManyRequestsResponse.php | 2 +-
.../Model/TooManyRequestsResponseDetail.php | 2 +-
src/gen/lib/Model/TrackingItem.php | 2 +-
src/gen/lib/Model/UnauthorizedResponse.php | 2 +-
src/gen/lib/Model/UnexpectedErrorResponse.php | 2 +-
src/gen/lib/Model/UnifiedApiId.php | 2 +-
src/gen/lib/Model/UnifiedFile.php | 2 +-
src/gen/lib/Model/UnifiedFilePermissions.php | 2 +-
src/gen/lib/Model/UnifiedId.php | 2 +-
src/gen/lib/Model/UnprocessableResponse.php | 2 +-
.../UpdateAccountingDepartmentResponse.php | 488 ++
.../UpdateAccountingLocationResponse.php | 488 ++
src/gen/lib/Model/UpdateActivityResponse.php | 2 +-
src/gen/lib/Model/UpdateApplicantResponse.php | 2 +-
.../lib/Model/UpdateApplicationResponse.php | 2 +-
src/gen/lib/Model/UpdateBillResponse.php | 2 +-
src/gen/lib/Model/UpdateCommentResponse.php | 2 +-
src/gen/lib/Model/UpdateCompanyResponse.php | 2 +-
.../lib/Model/UpdateConnectionResponse.php | 2 +-
src/gen/lib/Model/UpdateConsumerRequest.php | 2 +-
src/gen/lib/Model/UpdateConsumerResponse.php | 2 +-
src/gen/lib/Model/UpdateContactResponse.php | 2 +-
.../lib/Model/UpdateCreditNoteResponse.php | 2 +-
.../lib/Model/UpdateCustomMappingRequest.php | 2 +-
.../lib/Model/UpdateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/UpdateCustomerResponse.php | 2 +-
.../lib/Model/UpdateDepartmentResponse.php | 2 +-
.../lib/Model/UpdateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateDriveResponse.php | 2 +-
.../Model/UpdateEcommerceCustomerResponse.php | 2 +-
.../Model/UpdateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateEmployeeResponse.php | 2 +-
src/gen/lib/Model/UpdateFileRequest.php | 2 +-
src/gen/lib/Model/UpdateFileResponse.php | 2 +-
src/gen/lib/Model/UpdateFolderRequest.php | 2 +-
src/gen/lib/Model/UpdateFolderResponse.php | 2 +-
.../lib/Model/UpdateHrisCompanyResponse.php | 2 +-
.../lib/Model/UpdateInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/UpdateInvoiceResponse.php | 2 +-
src/gen/lib/Model/UpdateItemResponse.php | 2 +-
src/gen/lib/Model/UpdateJobResponse.php | 2 +-
.../lib/Model/UpdateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/UpdateLeadResponse.php | 2 +-
.../lib/Model/UpdateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/UpdateLocationResponse.php | 2 +-
src/gen/lib/Model/UpdateMerchantResponse.php | 2 +-
src/gen/lib/Model/UpdateMessageResponse.php | 2 +-
.../lib/Model/UpdateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateModifierResponse.php | 2 +-
src/gen/lib/Model/UpdateNoteResponse.php | 2 +-
.../lib/Model/UpdateOpportunityResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/UpdatePaymentResponse.php | 2 +-
src/gen/lib/Model/UpdatePipelineResponse.php | 2 +-
.../lib/Model/UpdatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/UpdateProductResponse.php | 2 +-
.../lib/Model/UpdatePurchaseOrderResponse.php | 2 +-
.../lib/Model/UpdateSharedLinkResponse.php | 2 +-
.../lib/Model/UpdateSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/UpdateSupplierResponse.php | 2 +-
src/gen/lib/Model/UpdateTaxRateResponse.php | 2 +-
src/gen/lib/Model/UpdateTenderResponse.php | 2 +-
src/gen/lib/Model/UpdateTicketResponse.php | 2 +-
.../Model/UpdateTimeOffRequestResponse.php | 2 +-
.../lib/Model/UpdateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/UpdateUserResponse.php | 2 +-
src/gen/lib/Model/UpdateWebhookRequest.php | 2 +-
src/gen/lib/Model/UpdateWebhookResponse.php | 2 +-
src/gen/lib/Model/UploadSession.php | 2 +-
src/gen/lib/Model/User.php | 2 +-
src/gen/lib/Model/VaultEventType.php | 2 +-
src/gen/lib/Model/VirtualWebhooks.php | 2 +-
src/gen/lib/Model/WalletDetails.php | 2 +-
src/gen/lib/Model/Webhook.php | 2 +-
src/gen/lib/Model/WebhookEvent.php | 2 +-
src/gen/lib/Model/WebhookEventLog.php | 2 +-
src/gen/lib/Model/WebhookEventLogAttempts.php | 2 +-
src/gen/lib/Model/WebhookEventLogService.php | 2 +-
src/gen/lib/Model/WebhookEventLogsFilter.php | 2 +-
.../Model/WebhookEventLogsFilterService.php | 2 +-
src/gen/lib/Model/WebhookEventType.php | 2 +-
src/gen/lib/Model/WebhookSubscription.php | 2 +-
src/gen/lib/Model/WebhookSupport.php | 2 +-
src/gen/lib/Model/Website.php | 2 +-
src/gen/lib/ObjectSerializer.php | 2 +-
src/gen/test/Api/AccountingApiTest.php | 122 +-
src/gen/test/Api/AtsApiTest.php | 2 +-
src/gen/test/Api/ConnectorApiTest.php | 2 +-
src/gen/test/Api/CrmApiTest.php | 2 +-
src/gen/test/Api/EcommerceApiTest.php | 2 +-
src/gen/test/Api/FileStorageApiTest.php | 2 +-
src/gen/test/Api/HrisApiTest.php | 2 +-
src/gen/test/Api/IssueTrackingApiTest.php | 2 +-
src/gen/test/Api/LeadApiTest.php | 2 +-
src/gen/test/Api/PosApiTest.php | 2 +-
src/gen/test/Api/SmsApiTest.php | 2 +-
src/gen/test/Api/VaultApiTest.php | 2 +-
src/gen/test/Api/WebhookApiTest.php | 2 +-
.../test/Model/AccountingDepartmentTest.php | 180 +
.../Model/AccountingDepartmentsFilterTest.php | 90 +
.../test/Model/AccountingEventTypeTest.php | 2 +-
src/gen/test/Model/AccountingLocationTest.php | 198 +
.../Model/AccountingLocationsFilterTest.php | 90 +
src/gen/test/Model/ActivitiesFilterTest.php | 2 +-
src/gen/test/Model/ActivitiesSortTest.php | 2 +-
src/gen/test/Model/ActivityAttendeeTest.php | 2 +-
src/gen/test/Model/ActivityTest.php | 2 +-
src/gen/test/Model/AddressTest.php | 2 +-
.../Model/ApiResourceCoverageCoverageTest.php | 2 +-
.../test/Model/ApiResourceCoverageTest.php | 2 +-
.../Model/ApiResourceLinkedResourcesTest.php | 2 +-
src/gen/test/Model/ApiResourceTest.php | 2 +-
src/gen/test/Model/ApiResourcesTest.php | 2 +-
src/gen/test/Model/ApiStatusTest.php | 2 +-
src/gen/test/Model/ApiTest.php | 2 +-
src/gen/test/Model/ApisFilterTest.php | 2 +-
.../test/Model/ApplicantSocialLinksTest.php | 2 +-
src/gen/test/Model/ApplicantTest.php | 2 +-
src/gen/test/Model/ApplicantWebsitesTest.php | 2 +-
src/gen/test/Model/ApplicantsFilterTest.php | 2 +-
src/gen/test/Model/ApplicationStageTest.php | 2 +-
src/gen/test/Model/ApplicationTest.php | 2 +-
src/gen/test/Model/AssigneeTest.php | 2 +-
src/gen/test/Model/AtsActivityTest.php | 2 +-
src/gen/test/Model/AtsEventTypeTest.php | 2 +-
src/gen/test/Model/AuthTypeTest.php | 2 +-
src/gen/test/Model/BadRequestResponseTest.php | 2 +-
...ceSheetAssetsCurrentAssetsAccountsTest.php | 2 +-
.../BalanceSheetAssetsCurrentAssetsTest.php | 2 +-
...anceSheetAssetsFixedAssetsAccountsTest.php | 2 +-
.../BalanceSheetAssetsFixedAssetsTest.php | 2 +-
src/gen/test/Model/BalanceSheetAssetsTest.php | 2 +-
.../Model/BalanceSheetEquityItemsTest.php | 2 +-
src/gen/test/Model/BalanceSheetEquityTest.php | 2 +-
src/gen/test/Model/BalanceSheetFilterTest.php | 2 +-
.../BalanceSheetLiabilitiesAccountsTest.php | 2 +-
.../Model/BalanceSheetLiabilitiesTest.php | 2 +-
src/gen/test/Model/BalanceSheetTest.php | 2 +-
src/gen/test/Model/BankAccountTest.php | 2 +-
src/gen/test/Model/BenefitTest.php | 2 +-
src/gen/test/Model/BillLineItemTest.php | 2 +-
src/gen/test/Model/BillTest.php | 2 +-
src/gen/test/Model/BillsFilterTest.php | 2 +-
src/gen/test/Model/BillsSortTest.php | 2 +-
src/gen/test/Model/BranchTest.php | 2 +-
src/gen/test/Model/CashDetailsTest.php | 2 +-
src/gen/test/Model/CollectionTagTest.php | 2 +-
src/gen/test/Model/CollectionTest.php | 2 +-
.../Model/CollectionTicketCommentTest.php | 2 +-
src/gen/test/Model/CollectionUserTest.php | 2 +-
src/gen/test/Model/CollectionsSortTest.php | 2 +-
src/gen/test/Model/CommentsSortTest.php | 2 +-
src/gen/test/Model/CompaniesFilterTest.php | 2 +-
src/gen/test/Model/CompaniesSortTest.php | 2 +-
src/gen/test/Model/CompanyInfoTest.php | 2 +-
src/gen/test/Model/CompanyRowTypeTest.php | 2 +-
src/gen/test/Model/CompanyTest.php | 2 +-
src/gen/test/Model/CompensationTest.php | 2 +-
.../Model/ConnectionConfigurationTest.php | 2 +-
src/gen/test/Model/ConnectionDefaultsTest.php | 2 +-
.../ConnectionImportDataCredentialsTest.php | 2 +-
.../test/Model/ConnectionImportDataTest.php | 2 +-
src/gen/test/Model/ConnectionMetadataTest.php | 2 +-
src/gen/test/Model/ConnectionStateTest.php | 2 +-
src/gen/test/Model/ConnectionTest.php | 2 +-
src/gen/test/Model/ConnectionWebhookTest.php | 2 +-
src/gen/test/Model/ConnectorDocTest.php | 2 +-
src/gen/test/Model/ConnectorEventTest.php | 2 +-
.../test/Model/ConnectorOauthScopes1Test.php | 2 +-
.../test/Model/ConnectorOauthScopesTest.php | 2 +-
src/gen/test/Model/ConnectorResourceTest.php | 2 +-
src/gen/test/Model/ConnectorSettingTest.php | 2 +-
src/gen/test/Model/ConnectorStatusTest.php | 2 +-
src/gen/test/Model/ConnectorTest.php | 2 +-
.../test/Model/ConnectorTlsSupportTest.php | 2 +-
.../test/Model/ConnectorUnifiedApisTest.php | 2 +-
src/gen/test/Model/ConnectorsFilterTest.php | 2 +-
src/gen/test/Model/ConsumerConnectionTest.php | 2 +-
src/gen/test/Model/ConsumerMetadataTest.php | 2 +-
...questCountsInDateRangeResponseDataTest.php | 2 +-
...erRequestCountsInDateRangeResponseTest.php | 2 +-
src/gen/test/Model/ConsumerTest.php | 2 +-
src/gen/test/Model/ContactTest.php | 2 +-
src/gen/test/Model/ContactsFilterTest.php | 2 +-
src/gen/test/Model/ContactsSortTest.php | 2 +-
src/gen/test/Model/CopyFolderRequestTest.php | 2 +-
...CreateAccountingDepartmentResponseTest.php | 135 +
.../CreateAccountingLocationResponseTest.php | 135 +
.../test/Model/CreateActivityResponseTest.php | 2 +-
.../Model/CreateApplicantResponseTest.php | 2 +-
.../Model/CreateApplicationResponseTest.php | 2 +-
src/gen/test/Model/CreateBillResponseTest.php | 2 +-
.../test/Model/CreateCommentResponseTest.php | 2 +-
.../test/Model/CreateCompanyResponseTest.php | 2 +-
.../Model/CreateConnectionResponseTest.php | 2 +-
.../test/Model/CreateConsumerResponseTest.php | 2 +-
.../test/Model/CreateContactResponseTest.php | 2 +-
.../Model/CreateCreditNoteResponseTest.php | 2 +-
.../Model/CreateCustomMappingRequestTest.php | 2 +-
.../Model/CreateCustomMappingResponseTest.php | 2 +-
.../test/Model/CreateCustomerResponseTest.php | 2 +-
.../Model/CreateDepartmentResponseTest.php | 2 +-
.../Model/CreateDriveGroupResponseTest.php | 2 +-
.../test/Model/CreateDriveResponseTest.php | 2 +-
.../CreateEcommerceCustomerResponseTest.php | 2 +-
.../CreateEcommerceOrderResponseTest.php | 2 +-
.../test/Model/CreateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/CreateFileRequestTest.php | 2 +-
src/gen/test/Model/CreateFileResponseTest.php | 2 +-
.../test/Model/CreateFolderRequestTest.php | 2 +-
.../test/Model/CreateFolderResponseTest.php | 2 +-
.../Model/CreateHrisCompanyResponseTest.php | 2 +-
.../Model/CreateInvoiceItemResponseTest.php | 2 +-
.../test/Model/CreateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/CreateItemResponseTest.php | 2 +-
src/gen/test/Model/CreateJobResponseTest.php | 2 +-
.../Model/CreateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/CreateLeadResponseTest.php | 2 +-
.../Model/CreateLedgerAccountResponseTest.php | 2 +-
.../test/Model/CreateLocationResponseTest.php | 2 +-
.../test/Model/CreateMerchantResponseTest.php | 2 +-
.../test/Model/CreateMessageResponseTest.php | 2 +-
.../Model/CreateModifierGroupResponseTest.php | 2 +-
.../test/Model/CreateModifierResponseTest.php | 2 +-
src/gen/test/Model/CreateNoteResponseTest.php | 2 +-
.../Model/CreateOpportunityResponseTest.php | 2 +-
.../test/Model/CreateOrderResponseTest.php | 2 +-
.../Model/CreateOrderTypeResponseTest.php | 2 +-
.../test/Model/CreatePaymentResponseTest.php | 2 +-
.../test/Model/CreatePipelineResponseTest.php | 2 +-
.../Model/CreatePosPaymentResponseTest.php | 2 +-
.../test/Model/CreateProductResponseTest.php | 2 +-
.../Model/CreatePurchaseOrderResponseTest.php | 2 +-
.../Model/CreateSessionResponseDataTest.php | 2 +-
.../test/Model/CreateSessionResponseTest.php | 2 +-
.../Model/CreateSharedLinkResponseTest.php | 2 +-
.../Model/CreateSubsidiaryResponseTest.php | 2 +-
.../test/Model/CreateSupplierResponseTest.php | 2 +-
.../test/Model/CreateTaxRateResponseTest.php | 2 +-
.../test/Model/CreateTenderResponseTest.php | 2 +-
.../test/Model/CreateTicketResponseTest.php | 2 +-
.../CreateTimeOffRequestResponseTest.php | 2 +-
.../Model/CreateUploadSessionRequestTest.php | 2 +-
.../Model/CreateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/CreateUserResponseTest.php | 2 +-
.../test/Model/CreateWebhookRequestTest.php | 2 +-
.../test/Model/CreateWebhookResponseTest.php | 2 +-
src/gen/test/Model/CreditNoteTest.php | 2 +-
src/gen/test/Model/CreditNotesFilterTest.php | 2 +-
src/gen/test/Model/CreditNotesSortTest.php | 2 +-
src/gen/test/Model/CrmEventTypeTest.php | 2 +-
src/gen/test/Model/CurrencyTest.php | 2 +-
src/gen/test/Model/CustomFieldFinderTest.php | 2 +-
src/gen/test/Model/CustomFieldTest.php | 2 +-
src/gen/test/Model/CustomMappingTest.php | 2 +-
src/gen/test/Model/CustomerTest.php | 2 +-
src/gen/test/Model/CustomersFilterTest.php | 2 +-
src/gen/test/Model/CustomersSortTest.php | 2 +-
src/gen/test/Model/DeductionTest.php | 2 +-
...DeleteAccountingDepartmentResponseTest.php | 135 +
.../DeleteAccountingLocationResponseTest.php | 135 +
.../test/Model/DeleteActivityResponseTest.php | 2 +-
.../Model/DeleteApplicantResponseTest.php | 2 +-
.../Model/DeleteApplicationResponseTest.php | 2 +-
src/gen/test/Model/DeleteBillResponseTest.php | 2 +-
.../test/Model/DeleteCommentResponseTest.php | 2 +-
.../test/Model/DeleteCompanyResponseTest.php | 2 +-
.../test/Model/DeleteConsumerResponseTest.php | 2 +-
.../test/Model/DeleteContactResponseTest.php | 2 +-
.../Model/DeleteCreditNoteResponseTest.php | 2 +-
.../test/Model/DeleteCustomerResponseTest.php | 2 +-
.../Model/DeleteDepartmentResponseTest.php | 2 +-
.../Model/DeleteDriveGroupResponseTest.php | 2 +-
.../test/Model/DeleteDriveResponseTest.php | 2 +-
.../DeleteEcommerceCustomerResponseTest.php | 2 +-
.../DeleteEcommerceOrderResponseTest.php | 2 +-
.../test/Model/DeleteEmployeeResponseTest.php | 2 +-
src/gen/test/Model/DeleteFileResponseTest.php | 2 +-
.../test/Model/DeleteFolderResponseTest.php | 2 +-
.../Model/DeleteHrisCompanyResponseTest.php | 2 +-
.../test/Model/DeleteInvoiceResponseTest.php | 2 +-
src/gen/test/Model/DeleteItemResponseTest.php | 2 +-
src/gen/test/Model/DeleteJobResponseTest.php | 2 +-
.../Model/DeleteJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/DeleteLeadResponseTest.php | 2 +-
.../Model/DeleteLedgerAccountResponseTest.php | 2 +-
.../test/Model/DeleteLocationResponseTest.php | 2 +-
.../test/Model/DeleteMerchantResponseTest.php | 2 +-
.../test/Model/DeleteMessageResponseTest.php | 2 +-
.../Model/DeleteModifierGroupResponseTest.php | 2 +-
.../test/Model/DeleteModifierResponseTest.php | 2 +-
src/gen/test/Model/DeleteNoteResponseTest.php | 2 +-
.../Model/DeleteOpportunityResponseTest.php | 2 +-
.../test/Model/DeleteOrderResponseTest.php | 2 +-
.../Model/DeleteOrderTypeResponseTest.php | 2 +-
.../test/Model/DeletePaymentResponseTest.php | 2 +-
.../test/Model/DeletePipelineResponseTest.php | 2 +-
.../Model/DeletePosPaymentResponseTest.php | 2 +-
.../test/Model/DeleteProductResponseTest.php | 2 +-
.../Model/DeletePurchaseOrderResponseTest.php | 2 +-
.../Model/DeleteSharedLinkResponseTest.php | 2 +-
.../Model/DeleteSubsidiaryResponseTest.php | 2 +-
.../test/Model/DeleteSupplierResponseTest.php | 2 +-
.../test/Model/DeleteTaxRateResponseTest.php | 2 +-
.../test/Model/DeleteTenderResponseTest.php | 2 +-
.../test/Model/DeleteTicketResponseTest.php | 2 +-
.../DeleteTimeOffRequestResponseTest.php | 2 +-
.../Model/DeleteUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/DeleteUserResponseTest.php | 2 +-
.../test/Model/DeleteWebhookResponseTest.php | 2 +-
src/gen/test/Model/DepartmentTest.php | 2 +-
src/gen/test/Model/DriveGroupTest.php | 2 +-
src/gen/test/Model/DriveGroupsFilterTest.php | 2 +-
src/gen/test/Model/DriveTest.php | 2 +-
src/gen/test/Model/DrivesFilterTest.php | 2 +-
src/gen/test/Model/EcommerceAddressTest.php | 2 +-
.../Model/EcommerceCustomerAddressesTest.php | 2 +-
src/gen/test/Model/EcommerceCustomerTest.php | 2 +-
.../Model/EcommerceCustomersFilterTest.php | 2 +-
src/gen/test/Model/EcommerceDiscountTest.php | 2 +-
.../test/Model/EcommerceOrderLineItemTest.php | 2 +-
.../test/Model/EcommerceOrderStatusTest.php | 2 +-
src/gen/test/Model/EcommerceOrderTest.php | 2 +-
.../test/Model/EcommerceOrdersFilterTest.php | 2 +-
.../Model/EcommerceProductCategoriesTest.php | 2 +-
.../Model/EcommerceProductImages1Test.php | 2 +-
.../test/Model/EcommerceProductImagesTest.php | 2 +-
.../Model/EcommerceProductOptions1Test.php | 2 +-
.../Model/EcommerceProductOptionsTest.php | 2 +-
src/gen/test/Model/EcommerceProductTest.php | 2 +-
.../Model/EcommerceProductVariantsTest.php | 2 +-
src/gen/test/Model/EcommerceStoreTest.php | 2 +-
src/gen/test/Model/EmailTest.php | 2 +-
.../test/Model/EmployeeCompensationTest.php | 2 +-
.../test/Model/EmployeeEmploymentRoleTest.php | 2 +-
src/gen/test/Model/EmployeeJobTest.php | 2 +-
src/gen/test/Model/EmployeeListTest.php | 2 +-
src/gen/test/Model/EmployeeManagerTest.php | 2 +-
src/gen/test/Model/EmployeePayrollTest.php | 2 +-
src/gen/test/Model/EmployeeSchedulesTest.php | 2 +-
src/gen/test/Model/EmployeeTest.php | 2 +-
src/gen/test/Model/EmployeesFilterTest.php | 2 +-
src/gen/test/Model/EmployeesSortTest.php | 2 +-
src/gen/test/Model/EmploymentStatusTest.php | 2 +-
src/gen/test/Model/ErrorTest.php | 2 +-
.../test/Model/ExecuteWebhookResponseTest.php | 2 +-
.../test/Model/FileStorageEventTypeTest.php | 2 +-
src/gen/test/Model/FileTypeTest.php | 2 +-
src/gen/test/Model/FilesFilterTest.php | 2 +-
src/gen/test/Model/FilesSearchTest.php | 2 +-
src/gen/test/Model/FilesSortTest.php | 2 +-
src/gen/test/Model/FolderTest.php | 2 +-
.../test/Model/FormFieldOptionGroupTest.php | 2 +-
src/gen/test/Model/FormFieldOptionTest.php | 2 +-
src/gen/test/Model/FormFieldTest.php | 2 +-
src/gen/test/Model/GenderTest.php | 2 +-
.../GetAccountingDepartmentResponseTest.php | 135 +
.../GetAccountingDepartmentsResponseTest.php | 153 +
.../GetAccountingLocationResponseTest.php | 135 +
.../GetAccountingLocationsResponseTest.php | 153 +
.../test/Model/GetActivitiesResponseTest.php | 2 +-
.../test/Model/GetActivityResponseTest.php | 2 +-
.../GetApiResourceCoverageResponseTest.php | 2 +-
.../test/Model/GetApiResourceResponseTest.php | 2 +-
src/gen/test/Model/GetApiResponseTest.php | 2 +-
src/gen/test/Model/GetApisResponseTest.php | 2 +-
.../test/Model/GetApplicantResponseTest.php | 2 +-
.../test/Model/GetApplicantsResponseTest.php | 2 +-
.../test/Model/GetApplicationResponseTest.php | 2 +-
.../Model/GetApplicationsResponseTest.php | 2 +-
.../Model/GetBalanceSheetResponseTest.php | 2 +-
src/gen/test/Model/GetBillResponseTest.php | 2 +-
src/gen/test/Model/GetBillsResponseTest.php | 2 +-
.../test/Model/GetCollectionResponseTest.php | 2 +-
.../Model/GetCollectionTagsResponseTest.php | 2 +-
.../Model/GetCollectionUserResponseTest.php | 2 +-
.../Model/GetCollectionUsersResponseTest.php | 2 +-
.../test/Model/GetCollectionsResponseTest.php | 2 +-
src/gen/test/Model/GetCommentResponseTest.php | 2 +-
.../test/Model/GetCommentsResponseTest.php | 2 +-
.../test/Model/GetCompaniesResponseTest.php | 2 +-
.../test/Model/GetCompanyInfoResponseTest.php | 2 +-
src/gen/test/Model/GetCompanyResponseTest.php | 2 +-
.../test/Model/GetConnectionResponseTest.php | 2 +-
.../test/Model/GetConnectionsResponseTest.php | 2 +-
...nnectorResourceExampleResponseDataTest.php | 2 +-
...etConnectorResourceExampleResponseTest.php | 2 +-
.../GetConnectorResourceResponseTest.php | 2 +-
...GetConnectorResourceSchemaResponseTest.php | 2 +-
.../test/Model/GetConnectorResponseTest.php | 2 +-
.../test/Model/GetConnectorsResponseTest.php | 2 +-
.../test/Model/GetConsumerResponseTest.php | 2 +-
.../Model/GetConsumersResponseDataTest.php | 2 +-
.../test/Model/GetConsumersResponseTest.php | 2 +-
src/gen/test/Model/GetContactResponseTest.php | 2 +-
.../test/Model/GetContactsResponseTest.php | 2 +-
.../test/Model/GetCreditNoteResponseTest.php | 2 +-
.../test/Model/GetCreditNotesResponseTest.php | 2 +-
.../Model/GetCustomFieldsResponseTest.php | 2 +-
.../Model/GetCustomMappingResponseTest.php | 2 +-
.../test/Model/GetCustomerResponseTest.php | 2 +-
.../test/Model/GetCustomersResponseTest.php | 2 +-
.../test/Model/GetDepartmentResponseTest.php | 2 +-
.../test/Model/GetDepartmentsResponseTest.php | 2 +-
.../test/Model/GetDriveGroupResponseTest.php | 2 +-
.../test/Model/GetDriveGroupsResponseTest.php | 2 +-
src/gen/test/Model/GetDriveResponseTest.php | 2 +-
src/gen/test/Model/GetDrivesResponseTest.php | 2 +-
.../GetEcommerceCustomerResponseTest.php | 2 +-
.../GetEcommerceCustomersResponseTest.php | 2 +-
.../Model/GetEcommerceOrderResponseTest.php | 2 +-
.../Model/GetEcommerceOrdersResponseTest.php | 2 +-
.../Model/GetEmployeePayrollResponseTest.php | 2 +-
.../Model/GetEmployeePayrollsResponseTest.php | 2 +-
.../test/Model/GetEmployeeResponseTest.php | 2 +-
.../GetEmployeeSchedulesResponseTest.php | 2 +-
.../test/Model/GetEmployeesResponseTest.php | 2 +-
src/gen/test/Model/GetFileResponseTest.php | 2 +-
src/gen/test/Model/GetFilesResponseTest.php | 2 +-
src/gen/test/Model/GetFolderResponseTest.php | 2 +-
src/gen/test/Model/GetFoldersResponseTest.php | 2 +-
.../Model/GetHrisCompaniesResponseTest.php | 2 +-
.../test/Model/GetHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/GetHrisJobResponseTest.php | 2 +-
.../test/Model/GetHrisJobsResponseTest.php | 2 +-
.../test/Model/GetInvoiceItemResponseTest.php | 2 +-
.../Model/GetInvoiceItemsResponseTest.php | 2 +-
src/gen/test/Model/GetInvoiceResponseTest.php | 2 +-
.../test/Model/GetInvoicesResponseTest.php | 2 +-
src/gen/test/Model/GetItemResponseTest.php | 2 +-
src/gen/test/Model/GetItemsResponseTest.php | 2 +-
src/gen/test/Model/GetJobResponseTest.php | 2 +-
src/gen/test/Model/GetJobsResponseTest.php | 2 +-
.../Model/GetJournalEntriesResponseTest.php | 2 +-
.../Model/GetJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/GetLeadResponseTest.php | 2 +-
src/gen/test/Model/GetLeadsResponseTest.php | 2 +-
.../Model/GetLedgerAccountResponseTest.php | 2 +-
.../Model/GetLedgerAccountsResponseTest.php | 2 +-
.../test/Model/GetLocationResponseTest.php | 2 +-
.../test/Model/GetLocationsResponseTest.php | 2 +-
src/gen/test/Model/GetLogsResponseTest.php | 2 +-
.../test/Model/GetMerchantResponseTest.php | 2 +-
.../test/Model/GetMerchantsResponseTest.php | 2 +-
src/gen/test/Model/GetMessageResponseTest.php | 2 +-
.../test/Model/GetMessagesResponseTest.php | 2 +-
.../Model/GetModifierGroupResponseTest.php | 2 +-
.../Model/GetModifierGroupsResponseTest.php | 2 +-
.../test/Model/GetModifierResponseTest.php | 2 +-
.../test/Model/GetModifiersResponseTest.php | 2 +-
src/gen/test/Model/GetNoteResponseTest.php | 2 +-
src/gen/test/Model/GetNotesResponseTest.php | 2 +-
.../Model/GetOpportunitiesResponseTest.php | 2 +-
.../test/Model/GetOpportunityResponseTest.php | 2 +-
src/gen/test/Model/GetOrderResponseTest.php | 2 +-
.../test/Model/GetOrderTypeResponseTest.php | 2 +-
.../test/Model/GetOrderTypesResponseTest.php | 2 +-
src/gen/test/Model/GetOrdersResponseTest.php | 2 +-
src/gen/test/Model/GetPaymentResponseTest.php | 2 +-
.../test/Model/GetPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetPayrollResponseTest.php | 2 +-
.../test/Model/GetPayrollsResponseTest.php | 2 +-
.../test/Model/GetPipelineResponseTest.php | 2 +-
.../test/Model/GetPipelinesResponseTest.php | 2 +-
.../test/Model/GetPosPaymentResponseTest.php | 2 +-
.../test/Model/GetPosPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetProductResponseTest.php | 2 +-
.../test/Model/GetProductsResponseTest.php | 2 +-
.../Model/GetProfitAndLossResponseTest.php | 2 +-
.../Model/GetPurchaseOrderResponseTest.php | 2 +-
.../Model/GetPurchaseOrdersResponseTest.php | 2 +-
.../Model/GetResourceExampleResponseTest.php | 2 +-
.../Model/GetResourceSchemaResponseTest.php | 2 +-
.../test/Model/GetSharedLinkResponseTest.php | 2 +-
.../test/Model/GetSharedLinksResponseTest.php | 2 +-
src/gen/test/Model/GetStoreResponseTest.php | 2 +-
src/gen/test/Model/GetStoresResponseTest.php | 2 +-
.../Model/GetSubsidiariesResponseTest.php | 2 +-
.../test/Model/GetSubsidiaryResponseTest.php | 2 +-
.../test/Model/GetSupplierResponseTest.php | 2 +-
.../test/Model/GetSuppliersResponseTest.php | 2 +-
src/gen/test/Model/GetTaxRateResponseTest.php | 2 +-
.../test/Model/GetTaxRatesResponseTest.php | 2 +-
src/gen/test/Model/GetTenderResponseTest.php | 2 +-
src/gen/test/Model/GetTendersResponseTest.php | 2 +-
src/gen/test/Model/GetTicketResponseTest.php | 2 +-
src/gen/test/Model/GetTicketsResponseTest.php | 2 +-
.../Model/GetTimeOffRequestResponseTest.php | 2 +-
.../Model/GetTimeOffRequestsResponseTest.php | 2 +-
.../Model/GetUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/GetUserResponseTest.php | 2 +-
src/gen/test/Model/GetUsersResponseTest.php | 2 +-
.../Model/GetWebhookEventLogsResponseTest.php | 2 +-
src/gen/test/Model/GetWebhookResponseTest.php | 2 +-
.../test/Model/GetWebhooksResponseTest.php | 2 +-
src/gen/test/Model/HrisCompanyTest.php | 2 +-
src/gen/test/Model/HrisEventTypeTest.php | 2 +-
src/gen/test/Model/HrisJobLocationTest.php | 2 +-
src/gen/test/Model/HrisJobTest.php | 2 +-
src/gen/test/Model/HrisJobsTest.php | 2 +-
src/gen/test/Model/IntegrationStateTest.php | 2 +-
.../Model/InvoiceItemSalesDetailsTest.php | 2 +-
src/gen/test/Model/InvoiceItemTest.php | 2 +-
src/gen/test/Model/InvoiceItemsFilterTest.php | 2 +-
src/gen/test/Model/InvoiceLineItemTest.php | 2 +-
src/gen/test/Model/InvoiceResponseTest.php | 2 +-
src/gen/test/Model/InvoiceTest.php | 2 +-
src/gen/test/Model/InvoicesFilterTest.php | 2 +-
src/gen/test/Model/InvoicesSortTest.php | 2 +-
.../test/Model/IssueTrackingEventTypeTest.php | 2 +-
src/gen/test/Model/IssuesFilterTest.php | 2 +-
src/gen/test/Model/ItemTest.php | 2 +-
src/gen/test/Model/JobLinksTest.php | 2 +-
src/gen/test/Model/JobSalaryTest.php | 2 +-
src/gen/test/Model/JobStatusTest.php | 2 +-
src/gen/test/Model/JobTest.php | 2 +-
.../test/Model/JournalEntriesFilterTest.php | 2 +-
src/gen/test/Model/JournalEntriesSortTest.php | 2 +-
.../test/Model/JournalEntryLineItemTest.php | 2 +-
src/gen/test/Model/JournalEntryTest.php | 2 +-
src/gen/test/Model/LeadEventTypeTest.php | 2 +-
src/gen/test/Model/LeadTest.php | 2 +-
src/gen/test/Model/LeadsFilterTest.php | 2 +-
src/gen/test/Model/LeadsSortTest.php | 2 +-
.../Model/LedgerAccountCategoriesTest.php | 2 +-
.../Model/LedgerAccountParentAccountTest.php | 2 +-
src/gen/test/Model/LedgerAccountTest.php | 2 +-
.../test/Model/LedgerAccountsFilterTest.php | 2 +-
src/gen/test/Model/LedgerAccountsSortTest.php | 2 +-
.../Model/LinkedConnectorResourceTest.php | 2 +-
src/gen/test/Model/LinkedCustomerTest.php | 2 +-
.../Model/LinkedEcommerceCustomerTest.php | 2 +-
.../test/Model/LinkedEcommerceOrderTest.php | 2 +-
src/gen/test/Model/LinkedFolderTest.php | 2 +-
src/gen/test/Model/LinkedInvoiceItemTest.php | 2 +-
.../test/Model/LinkedLedgerAccountTest.php | 2 +-
.../test/Model/LinkedParentCustomerTest.php | 2 +-
src/gen/test/Model/LinkedSupplierTest.php | 2 +-
src/gen/test/Model/LinkedTaxRateTest.php | 2 +-
.../test/Model/LinkedTrackingCategoryTest.php | 2 +-
src/gen/test/Model/LinksTest.php | 2 +-
src/gen/test/Model/LocationTest.php | 2 +-
src/gen/test/Model/LogOperationTest.php | 2 +-
src/gen/test/Model/LogServiceTest.php | 2 +-
src/gen/test/Model/LogTest.php | 2 +-
src/gen/test/Model/LogsFilterTest.php | 2 +-
src/gen/test/Model/MerchantTest.php | 2 +-
src/gen/test/Model/MessageTest.php | 2 +-
src/gen/test/Model/MetaCursorsTest.php | 2 +-
src/gen/test/Model/MetaTest.php | 2 +-
.../test/Model/ModifierGroupFilterTest.php | 2 +-
src/gen/test/Model/ModifierGroupTest.php | 2 +-
src/gen/test/Model/ModifierTest.php | 2 +-
src/gen/test/Model/NotFoundResponseTest.php | 2 +-
.../test/Model/NotImplementedResponseTest.php | 2 +-
src/gen/test/Model/NoteTest.php | 2 +-
src/gen/test/Model/OAuthGrantTypeTest.php | 2 +-
src/gen/test/Model/OfferTest.php | 2 +-
.../test/Model/OpportunitiesFilterTest.php | 2 +-
src/gen/test/Model/OpportunitiesSortTest.php | 2 +-
src/gen/test/Model/OpportunityTest.php | 2 +-
src/gen/test/Model/OrderCustomersTest.php | 2 +-
src/gen/test/Model/OrderDiscountsTest.php | 2 +-
src/gen/test/Model/OrderFulfillmentsTest.php | 2 +-
src/gen/test/Model/OrderLineItemsTest.php | 2 +-
src/gen/test/Model/OrderPaymentsTest.php | 2 +-
...PickupDetailsCurbsidePickupDetailsTest.php | 2 +-
.../Model/OrderPickupDetailsRecipientTest.php | 2 +-
src/gen/test/Model/OrderPickupDetailsTest.php | 2 +-
src/gen/test/Model/OrderRefundsTest.php | 2 +-
src/gen/test/Model/OrderTendersTest.php | 2 +-
src/gen/test/Model/OrderTest.php | 2 +-
src/gen/test/Model/OrderTypeTest.php | 2 +-
src/gen/test/Model/OwnerTest.php | 2 +-
src/gen/test/Model/PaginationCoverageTest.php | 2 +-
src/gen/test/Model/PassThroughQueryTest.php | 2 +-
src/gen/test/Model/PaymentAllocationsTest.php | 2 +-
src/gen/test/Model/PaymentCardTest.php | 2 +-
src/gen/test/Model/PaymentFrequencyTest.php | 2 +-
.../Model/PaymentRequiredResponseTest.php | 2 +-
src/gen/test/Model/PaymentTest.php | 2 +-
src/gen/test/Model/PaymentUnitTest.php | 2 +-
src/gen/test/Model/PaymentsFilterTest.php | 2 +-
src/gen/test/Model/PaymentsSortTest.php | 2 +-
src/gen/test/Model/PayrollTest.php | 2 +-
src/gen/test/Model/PayrollTotalsTest.php | 2 +-
src/gen/test/Model/PayrollsFilterTest.php | 2 +-
src/gen/test/Model/PersonTest.php | 2 +-
src/gen/test/Model/PhoneNumberTest.php | 2 +-
src/gen/test/Model/PipelineStagesTest.php | 2 +-
src/gen/test/Model/PipelineTest.php | 2 +-
.../Model/PosBankAccountAchDetailsTest.php | 2 +-
src/gen/test/Model/PosBankAccountTest.php | 2 +-
.../test/Model/PosPaymentCardDetailsTest.php | 2 +-
.../Model/PosPaymentExternalDetailsTest.php | 2 +-
src/gen/test/Model/PosPaymentTest.php | 2 +-
src/gen/test/Model/PriceTest.php | 2 +-
src/gen/test/Model/ProbationPeriodTest.php | 2 +-
.../test/Model/ProfitAndLossExpensesTest.php | 2 +-
.../test/Model/ProfitAndLossFilterTest.php | 2 +-
.../Model/ProfitAndLossGrossProfitTest.php | 2 +-
.../test/Model/ProfitAndLossIncomeTest.php | 2 +-
.../test/Model/ProfitAndLossNetIncomeTest.php | 2 +-
.../ProfitAndLossNetOperatingIncomeTest.php | 2 +-
.../test/Model/ProfitAndLossRecordTest.php | 2 +-
.../test/Model/ProfitAndLossSectionTest.php | 2 +-
src/gen/test/Model/ProfitAndLossTest.php | 2 +-
src/gen/test/Model/PurchaseOrderTest.php | 2 +-
.../test/Model/PurchaseOrdersFilterTest.php | 2 +-
src/gen/test/Model/PurchaseOrdersSortTest.php | 2 +-
.../test/Model/RequestCountAllocationTest.php | 2 +-
src/gen/test/Model/RequestRateTest.php | 2 +-
.../test/Model/ResolveWebhookResponseTest.php | 2 +-
src/gen/test/Model/ResourceExampleTest.php | 2 +-
src/gen/test/Model/ResourceStatusTest.php | 2 +-
src/gen/test/Model/ScheduleTest.php | 2 +-
.../Model/ScheduleWorkPatternOddWeeksTest.php | 2 +-
.../test/Model/ScheduleWorkPatternTest.php | 2 +-
src/gen/test/Model/SchemaSupportTest.php | 2 +-
src/gen/test/Model/ServiceChargeTest.php | 2 +-
src/gen/test/Model/SessionSettingsTest.php | 2 +-
src/gen/test/Model/SessionTest.php | 2 +-
src/gen/test/Model/SessionThemeTest.php | 2 +-
src/gen/test/Model/SharedLinkTargetTest.php | 2 +-
src/gen/test/Model/SharedLinkTest.php | 2 +-
.../test/Model/SimpleFormFieldOptionTest.php | 2 +-
src/gen/test/Model/SocialLinkTest.php | 2 +-
src/gen/test/Model/SortDirectionTest.php | 2 +-
src/gen/test/Model/StatusTest.php | 2 +-
.../test/Model/SubsidiaryReferenceTest.php | 99 +
src/gen/test/Model/SubsidiaryTest.php | 2 +-
src/gen/test/Model/SupplierTest.php | 2 +-
src/gen/test/Model/SuppliersFilterTest.php | 2 +-
src/gen/test/Model/SuppliersSortTest.php | 2 +-
src/gen/test/Model/SupportedPropertyTest.php | 2 +-
src/gen/test/Model/TaxRateTest.php | 2 +-
src/gen/test/Model/TaxRatesFilterTest.php | 2 +-
src/gen/test/Model/TaxTest.php | 2 +-
src/gen/test/Model/TeamTest.php | 2 +-
src/gen/test/Model/TenderTest.php | 2 +-
src/gen/test/Model/TicketTest.php | 2 +-
src/gen/test/Model/TicketsSortTest.php | 2 +-
.../test/Model/TimeOffRequestNotesTest.php | 2 +-
src/gen/test/Model/TimeOffRequestTest.php | 2 +-
.../test/Model/TimeOffRequestsFilterTest.php | 2 +-
.../TooManyRequestsResponseDetailTest.php | 2 +-
.../Model/TooManyRequestsResponseTest.php | 2 +-
src/gen/test/Model/TrackingItemTest.php | 2 +-
.../test/Model/UnauthorizedResponseTest.php | 2 +-
.../Model/UnexpectedErrorResponseTest.php | 2 +-
src/gen/test/Model/UnifiedApiIdTest.php | 2 +-
.../test/Model/UnifiedFilePermissionsTest.php | 2 +-
src/gen/test/Model/UnifiedFileTest.php | 2 +-
src/gen/test/Model/UnifiedIdTest.php | 2 +-
.../test/Model/UnprocessableResponseTest.php | 2 +-
...UpdateAccountingDepartmentResponseTest.php | 135 +
.../UpdateAccountingLocationResponseTest.php | 135 +
.../test/Model/UpdateActivityResponseTest.php | 2 +-
.../Model/UpdateApplicantResponseTest.php | 2 +-
.../Model/UpdateApplicationResponseTest.php | 2 +-
src/gen/test/Model/UpdateBillResponseTest.php | 2 +-
.../test/Model/UpdateCommentResponseTest.php | 2 +-
.../test/Model/UpdateCompanyResponseTest.php | 2 +-
.../Model/UpdateConnectionResponseTest.php | 2 +-
.../test/Model/UpdateConsumerRequestTest.php | 2 +-
.../test/Model/UpdateConsumerResponseTest.php | 2 +-
.../test/Model/UpdateContactResponseTest.php | 2 +-
.../Model/UpdateCreditNoteResponseTest.php | 2 +-
.../Model/UpdateCustomMappingRequestTest.php | 2 +-
.../Model/UpdateCustomMappingResponseTest.php | 2 +-
.../test/Model/UpdateCustomerResponseTest.php | 2 +-
.../Model/UpdateDepartmentResponseTest.php | 2 +-
.../Model/UpdateDriveGroupResponseTest.php | 2 +-
.../test/Model/UpdateDriveResponseTest.php | 2 +-
.../UpdateEcommerceCustomerResponseTest.php | 2 +-
.../UpdateEcommerceOrderResponseTest.php | 2 +-
.../test/Model/UpdateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/UpdateFileRequestTest.php | 2 +-
src/gen/test/Model/UpdateFileResponseTest.php | 2 +-
.../test/Model/UpdateFolderRequestTest.php | 2 +-
.../test/Model/UpdateFolderResponseTest.php | 2 +-
.../Model/UpdateHrisCompanyResponseTest.php | 2 +-
.../Model/UpdateInvoiceItemsResponseTest.php | 2 +-
.../test/Model/UpdateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/UpdateItemResponseTest.php | 2 +-
src/gen/test/Model/UpdateJobResponseTest.php | 2 +-
.../Model/UpdateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/UpdateLeadResponseTest.php | 2 +-
.../Model/UpdateLedgerAccountResponseTest.php | 2 +-
.../test/Model/UpdateLocationResponseTest.php | 2 +-
.../test/Model/UpdateMerchantResponseTest.php | 2 +-
.../test/Model/UpdateMessageResponseTest.php | 2 +-
.../Model/UpdateModifierGroupResponseTest.php | 2 +-
.../test/Model/UpdateModifierResponseTest.php | 2 +-
src/gen/test/Model/UpdateNoteResponseTest.php | 2 +-
.../Model/UpdateOpportunityResponseTest.php | 2 +-
.../test/Model/UpdateOrderResponseTest.php | 2 +-
.../Model/UpdateOrderTypeResponseTest.php | 2 +-
.../test/Model/UpdatePaymentResponseTest.php | 2 +-
.../test/Model/UpdatePipelineResponseTest.php | 2 +-
.../Model/UpdatePosPaymentResponseTest.php | 2 +-
.../test/Model/UpdateProductResponseTest.php | 2 +-
.../Model/UpdatePurchaseOrderResponseTest.php | 2 +-
.../Model/UpdateSharedLinkResponseTest.php | 2 +-
.../Model/UpdateSubsidiaryResponseTest.php | 2 +-
.../test/Model/UpdateSupplierResponseTest.php | 2 +-
.../test/Model/UpdateTaxRateResponseTest.php | 2 +-
.../test/Model/UpdateTenderResponseTest.php | 2 +-
.../test/Model/UpdateTicketResponseTest.php | 2 +-
.../UpdateTimeOffRequestResponseTest.php | 2 +-
.../Model/UpdateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/UpdateUserResponseTest.php | 2 +-
.../test/Model/UpdateWebhookRequestTest.php | 2 +-
.../test/Model/UpdateWebhookResponseTest.php | 2 +-
src/gen/test/Model/UploadSessionTest.php | 2 +-
src/gen/test/Model/UserTest.php | 2 +-
src/gen/test/Model/VaultEventTypeTest.php | 2 +-
src/gen/test/Model/VirtualWebhooksTest.php | 2 +-
src/gen/test/Model/WalletDetailsTest.php | 2 +-
.../Model/WebhookEventLogAttemptsTest.php | 2 +-
.../test/Model/WebhookEventLogServiceTest.php | 2 +-
src/gen/test/Model/WebhookEventLogTest.php | 2 +-
.../WebhookEventLogsFilterServiceTest.php | 2 +-
.../test/Model/WebhookEventLogsFilterTest.php | 2 +-
src/gen/test/Model/WebhookEventTest.php | 2 +-
src/gen/test/Model/WebhookEventTypeTest.php | 2 +-
.../test/Model/WebhookSubscriptionTest.php | 2 +-
src/gen/test/Model/WebhookSupportTest.php | 2 +-
src/gen/test/Model/WebhookTest.php | 2 +-
src/gen/test/Model/WebsiteTest.php | 2 +-
1312 files changed, 18117 insertions(+), 2254 deletions(-)
create mode 100644 src/gen/docs/models/AccountingDepartment.md
create mode 100644 src/gen/docs/models/AccountingDepartmentsFilter.md
create mode 100644 src/gen/docs/models/AccountingLocation.md
create mode 100644 src/gen/docs/models/AccountingLocationsFilter.md
create mode 100644 src/gen/docs/models/CreateAccountingDepartmentResponse.md
create mode 100644 src/gen/docs/models/CreateAccountingLocationResponse.md
create mode 100644 src/gen/docs/models/DeleteAccountingDepartmentResponse.md
create mode 100644 src/gen/docs/models/DeleteAccountingLocationResponse.md
create mode 100644 src/gen/docs/models/GetAccountingDepartmentResponse.md
create mode 100644 src/gen/docs/models/GetAccountingDepartmentsResponse.md
create mode 100644 src/gen/docs/models/GetAccountingLocationResponse.md
create mode 100644 src/gen/docs/models/GetAccountingLocationsResponse.md
create mode 100644 src/gen/docs/models/SubsidiaryReference.md
create mode 100644 src/gen/docs/models/UpdateAccountingDepartmentResponse.md
create mode 100644 src/gen/docs/models/UpdateAccountingLocationResponse.md
create mode 100644 src/gen/lib/Model/AccountingDepartment.php
create mode 100644 src/gen/lib/Model/AccountingDepartmentsFilter.php
create mode 100644 src/gen/lib/Model/AccountingLocation.php
create mode 100644 src/gen/lib/Model/AccountingLocationsFilter.php
create mode 100644 src/gen/lib/Model/CreateAccountingDepartmentResponse.php
create mode 100644 src/gen/lib/Model/CreateAccountingLocationResponse.php
create mode 100644 src/gen/lib/Model/DeleteAccountingDepartmentResponse.php
create mode 100644 src/gen/lib/Model/DeleteAccountingLocationResponse.php
create mode 100644 src/gen/lib/Model/GetAccountingDepartmentResponse.php
create mode 100644 src/gen/lib/Model/GetAccountingDepartmentsResponse.php
create mode 100644 src/gen/lib/Model/GetAccountingLocationResponse.php
create mode 100644 src/gen/lib/Model/GetAccountingLocationsResponse.php
create mode 100644 src/gen/lib/Model/SubsidiaryReference.php
create mode 100644 src/gen/lib/Model/UpdateAccountingDepartmentResponse.php
create mode 100644 src/gen/lib/Model/UpdateAccountingLocationResponse.php
create mode 100644 src/gen/test/Model/AccountingDepartmentTest.php
create mode 100644 src/gen/test/Model/AccountingDepartmentsFilterTest.php
create mode 100644 src/gen/test/Model/AccountingLocationTest.php
create mode 100644 src/gen/test/Model/AccountingLocationsFilterTest.php
create mode 100644 src/gen/test/Model/CreateAccountingDepartmentResponseTest.php
create mode 100644 src/gen/test/Model/CreateAccountingLocationResponseTest.php
create mode 100644 src/gen/test/Model/DeleteAccountingDepartmentResponseTest.php
create mode 100644 src/gen/test/Model/DeleteAccountingLocationResponseTest.php
create mode 100644 src/gen/test/Model/GetAccountingDepartmentResponseTest.php
create mode 100644 src/gen/test/Model/GetAccountingDepartmentsResponseTest.php
create mode 100644 src/gen/test/Model/GetAccountingLocationResponseTest.php
create mode 100644 src/gen/test/Model/GetAccountingLocationsResponseTest.php
create mode 100644 src/gen/test/Model/SubsidiaryReferenceTest.php
create mode 100644 src/gen/test/Model/UpdateAccountingDepartmentResponseTest.php
create mode 100644 src/gen/test/Model/UpdateAccountingLocationResponseTest.php
diff --git a/src/gen/.openapi-generator/FILES b/src/gen/.openapi-generator/FILES
index 6593281a18..5a378252f0 100644
--- a/src/gen/.openapi-generator/FILES
+++ b/src/gen/.openapi-generator/FILES
@@ -22,7 +22,11 @@ docs/Api/PosApi.md
docs/Api/SmsApi.md
docs/Api/VaultApi.md
docs/Api/WebhookApi.md
+docs/Model/AccountingDepartment.md
+docs/Model/AccountingDepartmentsFilter.md
docs/Model/AccountingEventType.md
+docs/Model/AccountingLocation.md
+docs/Model/AccountingLocationsFilter.md
docs/Model/ActivitiesFilter.md
docs/Model/ActivitiesSort.md
docs/Model/Activity.md
@@ -106,6 +110,8 @@ docs/Model/Contact.md
docs/Model/ContactsFilter.md
docs/Model/ContactsSort.md
docs/Model/CopyFolderRequest.md
+docs/Model/CreateAccountingDepartmentResponse.md
+docs/Model/CreateAccountingLocationResponse.md
docs/Model/CreateActivityResponse.md
docs/Model/CreateApplicantResponse.md
docs/Model/CreateApplicationResponse.md
@@ -177,6 +183,8 @@ docs/Model/Customer.md
docs/Model/CustomersFilter.md
docs/Model/CustomersSort.md
docs/Model/Deduction.md
+docs/Model/DeleteAccountingDepartmentResponse.md
+docs/Model/DeleteAccountingLocationResponse.md
docs/Model/DeleteActivityResponse.md
docs/Model/DeleteApplicantResponse.md
docs/Model/DeleteApplicationResponse.md
@@ -272,6 +280,10 @@ docs/Model/FormField.md
docs/Model/FormFieldOption.md
docs/Model/FormFieldOptionGroup.md
docs/Model/Gender.md
+docs/Model/GetAccountingDepartmentResponse.md
+docs/Model/GetAccountingDepartmentsResponse.md
+docs/Model/GetAccountingLocationResponse.md
+docs/Model/GetAccountingLocationsResponse.md
docs/Model/GetActivitiesResponse.md
docs/Model/GetActivityResponse.md
docs/Model/GetApiResourceCoverageResponse.md
@@ -542,6 +554,7 @@ docs/Model/SocialLink.md
docs/Model/SortDirection.md
docs/Model/Status.md
docs/Model/Subsidiary.md
+docs/Model/SubsidiaryReference.md
docs/Model/Supplier.md
docs/Model/SuppliersFilter.md
docs/Model/SuppliersSort.md
@@ -566,6 +579,8 @@ docs/Model/UnifiedFile.md
docs/Model/UnifiedFilePermissions.md
docs/Model/UnifiedId.md
docs/Model/UnprocessableResponse.md
+docs/Model/UpdateAccountingDepartmentResponse.md
+docs/Model/UpdateAccountingLocationResponse.md
docs/Model/UpdateActivityResponse.md
docs/Model/UpdateApplicantResponse.md
docs/Model/UpdateApplicationResponse.md
@@ -658,7 +673,11 @@ lib/Apideck.php
lib/ApideckConfiguration.php
lib/Configuration.php
lib/HeaderSelector.php
+lib/Model/AccountingDepartment.php
+lib/Model/AccountingDepartmentsFilter.php
lib/Model/AccountingEventType.php
+lib/Model/AccountingLocation.php
+lib/Model/AccountingLocationsFilter.php
lib/Model/ActivitiesFilter.php
lib/Model/ActivitiesSort.php
lib/Model/Activity.php
@@ -742,6 +761,8 @@ lib/Model/Contact.php
lib/Model/ContactsFilter.php
lib/Model/ContactsSort.php
lib/Model/CopyFolderRequest.php
+lib/Model/CreateAccountingDepartmentResponse.php
+lib/Model/CreateAccountingLocationResponse.php
lib/Model/CreateActivityResponse.php
lib/Model/CreateApplicantResponse.php
lib/Model/CreateApplicationResponse.php
@@ -813,6 +834,8 @@ lib/Model/Customer.php
lib/Model/CustomersFilter.php
lib/Model/CustomersSort.php
lib/Model/Deduction.php
+lib/Model/DeleteAccountingDepartmentResponse.php
+lib/Model/DeleteAccountingLocationResponse.php
lib/Model/DeleteActivityResponse.php
lib/Model/DeleteApplicantResponse.php
lib/Model/DeleteApplicationResponse.php
@@ -908,6 +931,10 @@ lib/Model/FormField.php
lib/Model/FormFieldOption.php
lib/Model/FormFieldOptionGroup.php
lib/Model/Gender.php
+lib/Model/GetAccountingDepartmentResponse.php
+lib/Model/GetAccountingDepartmentsResponse.php
+lib/Model/GetAccountingLocationResponse.php
+lib/Model/GetAccountingLocationsResponse.php
lib/Model/GetActivitiesResponse.php
lib/Model/GetActivityResponse.php
lib/Model/GetApiResourceCoverageResponse.php
@@ -1179,6 +1206,7 @@ lib/Model/SocialLink.php
lib/Model/SortDirection.php
lib/Model/Status.php
lib/Model/Subsidiary.php
+lib/Model/SubsidiaryReference.php
lib/Model/Supplier.php
lib/Model/SuppliersFilter.php
lib/Model/SuppliersSort.php
@@ -1203,6 +1231,8 @@ lib/Model/UnifiedFile.php
lib/Model/UnifiedFilePermissions.php
lib/Model/UnifiedId.php
lib/Model/UnprocessableResponse.php
+lib/Model/UpdateAccountingDepartmentResponse.php
+lib/Model/UpdateAccountingLocationResponse.php
lib/Model/UpdateActivityResponse.php
lib/Model/UpdateApplicantResponse.php
lib/Model/UpdateApplicationResponse.php
@@ -1291,7 +1321,11 @@ test/Api/PosApiTest.php
test/Api/SmsApiTest.php
test/Api/VaultApiTest.php
test/Api/WebhookApiTest.php
+test/Model/AccountingDepartmentTest.php
+test/Model/AccountingDepartmentsFilterTest.php
test/Model/AccountingEventTypeTest.php
+test/Model/AccountingLocationTest.php
+test/Model/AccountingLocationsFilterTest.php
test/Model/ActivitiesFilterTest.php
test/Model/ActivitiesSortTest.php
test/Model/ActivityAttendeeTest.php
@@ -1375,6 +1409,8 @@ test/Model/ContactTest.php
test/Model/ContactsFilterTest.php
test/Model/ContactsSortTest.php
test/Model/CopyFolderRequestTest.php
+test/Model/CreateAccountingDepartmentResponseTest.php
+test/Model/CreateAccountingLocationResponseTest.php
test/Model/CreateActivityResponseTest.php
test/Model/CreateApplicantResponseTest.php
test/Model/CreateApplicationResponseTest.php
@@ -1446,6 +1482,8 @@ test/Model/CustomerTest.php
test/Model/CustomersFilterTest.php
test/Model/CustomersSortTest.php
test/Model/DeductionTest.php
+test/Model/DeleteAccountingDepartmentResponseTest.php
+test/Model/DeleteAccountingLocationResponseTest.php
test/Model/DeleteActivityResponseTest.php
test/Model/DeleteApplicantResponseTest.php
test/Model/DeleteApplicationResponseTest.php
@@ -1541,6 +1579,10 @@ test/Model/FormFieldOptionGroupTest.php
test/Model/FormFieldOptionTest.php
test/Model/FormFieldTest.php
test/Model/GenderTest.php
+test/Model/GetAccountingDepartmentResponseTest.php
+test/Model/GetAccountingDepartmentsResponseTest.php
+test/Model/GetAccountingLocationResponseTest.php
+test/Model/GetAccountingLocationsResponseTest.php
test/Model/GetActivitiesResponseTest.php
test/Model/GetActivityResponseTest.php
test/Model/GetApiResourceCoverageResponseTest.php
@@ -1810,6 +1852,7 @@ test/Model/SimpleFormFieldOptionTest.php
test/Model/SocialLinkTest.php
test/Model/SortDirectionTest.php
test/Model/StatusTest.php
+test/Model/SubsidiaryReferenceTest.php
test/Model/SubsidiaryTest.php
test/Model/SupplierTest.php
test/Model/SuppliersFilterTest.php
@@ -1835,6 +1878,8 @@ test/Model/UnifiedFilePermissionsTest.php
test/Model/UnifiedFileTest.php
test/Model/UnifiedIdTest.php
test/Model/UnprocessableResponseTest.php
+test/Model/UpdateAccountingDepartmentResponseTest.php
+test/Model/UpdateAccountingLocationResponseTest.php
test/Model/UpdateActivityResponseTest.php
test/Model/UpdateApplicantResponseTest.php
test/Model/UpdateApplicationResponseTest.php
diff --git a/src/gen/docs/apis/AccountingApi.md b/src/gen/docs/apis/AccountingApi.md
index 25db28bf53..6c471f7f6a 100644
--- a/src/gen/docs/apis/AccountingApi.md
+++ b/src/gen/docs/apis/AccountingApi.md
@@ -22,6 +22,11 @@
* [Delete Customer](#customersDelete)
* [Get Customer](#customersOne)
* [Update Customer](#customersUpdate)
+* [Create Department](#departmentsAdd)
+* [List Departments](#departmentsAll)
+* [Delete Department](#departmentsDelete)
+* [Get Department](#departmentsOne)
+* [Update Department](#departmentsUpdate)
* [Create Invoice Item](#invoiceItemsAdd)
* [List Invoice Items](#invoiceItemsAll)
* [Delete Invoice Item](#invoiceItemsDelete)
@@ -42,6 +47,11 @@
* [Delete Ledger Account](#ledgerAccountsDelete)
* [Get Ledger Account](#ledgerAccountsOne)
* [Update Ledger Account](#ledgerAccountsUpdate)
+* [Create Location](#locationsAdd)
+* [List Locations](#locationsAll)
+* [Delete Location](#locationsDelete)
+* [Get Location](#locationsOne)
+* [Update Location](#locationsUpdate)
* [Create Payment](#paymentsAdd)
* [List Payments](#paymentsAll)
* [Delete Payment](#paymentsDelete)
@@ -1213,21 +1223,21 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Create Invoice Item
+
+# Create Department
-Method: **invoiceItemsAdd**
+Method: **departmentsAdd**
```php
-Apideck->getAccountingApi()->invoiceItemsAdd($data)
+Apideck->getAccountingApi()->departmentsAdd($data)
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
- **invoice_item** | [\Apideck\Client\Model\InvoiceItem](../models/\Apideck\Client\Model\InvoiceItem.md)| |
+ **accounting_department** | [\Apideck\Client\Model\AccountingDepartment](../models/\Apideck\Client\Model\AccountingDepartment.md)| |
**x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
@@ -1237,14 +1247,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\CreateInvoiceItemResponse`](../models/\Apideck\Client\Model\CreateInvoiceItemResponse.md)
+[`\Apideck\Client\Model\CreateAccountingDepartmentResponse`](../models/\Apideck\Client\Model\CreateAccountingDepartmentResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**201** | InvoiceItems |
+**201** | Department |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1268,7 +1278,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoiceItemsAdd($invoiceItem);
+ $response = $apideck->getAccountingApi()->departmentsAdd($department);
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1279,14 +1289,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# List Invoice Items
+
+# List Departments
-Method: **invoiceItemsAll**
+Method: **departmentsAll**
```php
-Apideck->getAccountingApi()->invoiceItemsAll($data)
+Apideck->getAccountingApi()->departmentsAll($data)
```
### Parameters
@@ -1297,9 +1307,8 @@ Name | Type | Description | Notes
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
**cursor** | **string**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. |
- **filter** | [\Apideck\Client\Model\InvoiceItemsFilter](../models/\Apideck\Client\Model\InvoiceItemsFilter.md)| Apply filters |
- **pass_through** | [\Apideck\Client\Model\PassThroughQuery](../models/\Apideck\Client\Model\PassThroughQuery.md)| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads |
**fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
+ **filter** | [\Apideck\Client\Model\AccountingDepartmentsFilter](../models/\Apideck\Client\Model\AccountingDepartmentsFilter.md)| Apply filters |
**raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
**limit** | [**int**] | Number of results to return. Minimum 1, Maximum 200, Default 20 | (optional) defaults to 20
@@ -1307,14 +1316,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\GetInvoiceItemsResponse`](../models/\Apideck\Client\Model\GetInvoiceItemsResponse.md)
+[`\Apideck\Client\Model\GetAccountingDepartmentsResponse`](../models/\Apideck\Client\Model\GetAccountingDepartmentsResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | InvoiceItems |
+**200** | Departments |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1338,7 +1347,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoiceItemsAll();
+ $response = $apideck->getAccountingApi()->departmentsAll();
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1349,14 +1358,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Delete Invoice Item
+
+# Delete Department
-Method: **invoiceItemsDelete**
+Method: **departmentsDelete**
```php
-Apideck->getAccountingApi()->invoiceItemsDelete($data)
+Apideck->getAccountingApi()->departmentsDelete($data)
```
### Parameters
@@ -1373,14 +1382,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\DeleteTaxRateResponse`](../models/\Apideck\Client\Model\DeleteTaxRateResponse.md)
+[`\Apideck\Client\Model\DeleteAccountingDepartmentResponse`](../models/\Apideck\Client\Model\DeleteAccountingDepartmentResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | InvoiceItems |
+**200** | Department deleted |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1404,7 +1413,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoiceItemsDelete('id_example');
+ $response = $apideck->getAccountingApi()->departmentsDelete('id_example');
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1415,14 +1424,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Get Invoice Item
+
+# Get Department
-Method: **invoiceItemsOne**
+Method: **departmentsOne**
```php
-Apideck->getAccountingApi()->invoiceItemsOne($data)
+Apideck->getAccountingApi()->departmentsOne($data)
```
### Parameters
@@ -1440,14 +1449,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\GetInvoiceItemResponse`](../models/\Apideck\Client\Model\GetInvoiceItemResponse.md)
+[`\Apideck\Client\Model\GetAccountingDepartmentResponse`](../models/\Apideck\Client\Model\GetAccountingDepartmentResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | InvoiceItems |
+**200** | Location |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1471,7 +1480,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoiceItemsOne('id_example');
+ $response = $apideck->getAccountingApi()->departmentsOne('id_example');
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1482,14 +1491,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Update Invoice Item
+
+# Update Department
-Method: **invoiceItemsUpdate**
+Method: **departmentsUpdate**
```php
-Apideck->getAccountingApi()->invoiceItemsUpdate($data)
+Apideck->getAccountingApi()->departmentsUpdate($data)
```
### Parameters
@@ -1497,7 +1506,7 @@ Apideck->getAccountingApi()->invoiceItemsUpdate($data)
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **string**| ID of the record you are acting upon. |
- **invoice_item** | [\Apideck\Client\Model\InvoiceItem](../models/\Apideck\Client\Model\InvoiceItem.md)| |
+ **accounting_department** | [\Apideck\Client\Model\AccountingDepartment](../models/\Apideck\Client\Model\AccountingDepartment.md)| |
**x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
@@ -1507,14 +1516,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\UpdateInvoiceItemsResponse`](../models/\Apideck\Client\Model\UpdateInvoiceItemsResponse.md)
+[`\Apideck\Client\Model\UpdateAccountingDepartmentResponse`](../models/\Apideck\Client\Model\UpdateAccountingDepartmentResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | InvoiceItems |
+**200** | Department |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1538,7 +1547,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoiceItemsUpdate('id_example', $invoiceItem);
+ $response = $apideck->getAccountingApi()->departmentsUpdate('id_example', $department);
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1549,21 +1558,21 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Create Invoice
+
+# Create Invoice Item
-Method: **invoicesAdd**
+Method: **invoiceItemsAdd**
```php
-Apideck->getAccountingApi()->invoicesAdd($data)
+Apideck->getAccountingApi()->invoiceItemsAdd($data)
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
- **invoice** | [\Apideck\Client\Model\Invoice](../models/\Apideck\Client\Model\Invoice.md)| |
+ **invoice_item** | [\Apideck\Client\Model\InvoiceItem](../models/\Apideck\Client\Model\InvoiceItem.md)| |
**x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
@@ -1573,14 +1582,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\CreateInvoiceResponse`](../models/\Apideck\Client\Model\CreateInvoiceResponse.md)
+[`\Apideck\Client\Model\CreateInvoiceItemResponse`](../models/\Apideck\Client\Model\CreateInvoiceItemResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**201** | Invoice created |
+**201** | InvoiceItems |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1604,7 +1613,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoicesAdd($invoice);
+ $response = $apideck->getAccountingApi()->invoiceItemsAdd($invoiceItem);
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1615,14 +1624,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# List Invoices
+
+# List Invoice Items
-Method: **invoicesAll**
+Method: **invoiceItemsAll**
```php
-Apideck->getAccountingApi()->invoicesAll($data)
+Apideck->getAccountingApi()->invoiceItemsAll($data)
```
### Parameters
@@ -1633,8 +1642,7 @@ Name | Type | Description | Notes
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
**cursor** | **string**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. |
- **filter** | [\Apideck\Client\Model\InvoicesFilter](../models/\Apideck\Client\Model\InvoicesFilter.md)| Apply filters |
- **sort** | [\Apideck\Client\Model\InvoicesSort](../models/\Apideck\Client\Model\InvoicesSort.md)| Apply sorting |
+ **filter** | [\Apideck\Client\Model\InvoiceItemsFilter](../models/\Apideck\Client\Model\InvoiceItemsFilter.md)| Apply filters |
**pass_through** | [\Apideck\Client\Model\PassThroughQuery](../models/\Apideck\Client\Model\PassThroughQuery.md)| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads |
**fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
**raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
@@ -1644,14 +1652,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\GetInvoicesResponse`](../models/\Apideck\Client\Model\GetInvoicesResponse.md)
+[`\Apideck\Client\Model\GetInvoiceItemsResponse`](../models/\Apideck\Client\Model\GetInvoiceItemsResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | Invoices |
+**200** | InvoiceItems |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1675,7 +1683,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoicesAll();
+ $response = $apideck->getAccountingApi()->invoiceItemsAll();
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1686,14 +1694,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Delete Invoice
+
+# Delete Invoice Item
-Method: **invoicesDelete**
+Method: **invoiceItemsDelete**
```php
-Apideck->getAccountingApi()->invoicesDelete($data)
+Apideck->getAccountingApi()->invoiceItemsDelete($data)
```
### Parameters
@@ -1710,14 +1718,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\DeleteInvoiceResponse`](../models/\Apideck\Client\Model\DeleteInvoiceResponse.md)
+[`\Apideck\Client\Model\DeleteTaxRateResponse`](../models/\Apideck\Client\Model\DeleteTaxRateResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | Invoice deleted |
+**200** | InvoiceItems |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1741,7 +1749,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoicesDelete('id_example');
+ $response = $apideck->getAccountingApi()->invoiceItemsDelete('id_example');
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1752,14 +1760,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Get Invoice
+
+# Get Invoice Item
-Method: **invoicesOne**
+Method: **invoiceItemsOne**
```php
-Apideck->getAccountingApi()->invoicesOne($data)
+Apideck->getAccountingApi()->invoiceItemsOne($data)
```
### Parameters
@@ -1777,14 +1785,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\GetInvoiceResponse`](../models/\Apideck\Client\Model\GetInvoiceResponse.md)
+[`\Apideck\Client\Model\GetInvoiceItemResponse`](../models/\Apideck\Client\Model\GetInvoiceItemResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | Invoice |
+**200** | InvoiceItems |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1808,7 +1816,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoicesOne('id_example');
+ $response = $apideck->getAccountingApi()->invoiceItemsOne('id_example');
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1819,14 +1827,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Update Invoice
+
+# Update Invoice Item
-Method: **invoicesUpdate**
+Method: **invoiceItemsUpdate**
```php
-Apideck->getAccountingApi()->invoicesUpdate($data)
+Apideck->getAccountingApi()->invoiceItemsUpdate($data)
```
### Parameters
@@ -1834,7 +1842,7 @@ Apideck->getAccountingApi()->invoicesUpdate($data)
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **string**| ID of the record you are acting upon. |
- **invoice** | [\Apideck\Client\Model\Invoice](../models/\Apideck\Client\Model\Invoice.md)| |
+ **invoice_item** | [\Apideck\Client\Model\InvoiceItem](../models/\Apideck\Client\Model\InvoiceItem.md)| |
**x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
@@ -1844,14 +1852,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\UpdateInvoiceResponse`](../models/\Apideck\Client\Model\UpdateInvoiceResponse.md)
+[`\Apideck\Client\Model\UpdateInvoiceItemsResponse`](../models/\Apideck\Client\Model\UpdateInvoiceItemsResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | Invoice updated |
+**200** | InvoiceItems |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1875,7 +1883,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->invoicesUpdate('id_example', $invoice);
+ $response = $apideck->getAccountingApi()->invoiceItemsUpdate('id_example', $invoiceItem);
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1886,21 +1894,21 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Create Journal Entry
+
+# Create Invoice
-Method: **journalEntriesAdd**
+Method: **invoicesAdd**
```php
-Apideck->getAccountingApi()->journalEntriesAdd($data)
+Apideck->getAccountingApi()->invoicesAdd($data)
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
- **journal_entry** | [\Apideck\Client\Model\JournalEntry](../models/\Apideck\Client\Model\JournalEntry.md)| |
+ **invoice** | [\Apideck\Client\Model\Invoice](../models/\Apideck\Client\Model\Invoice.md)| |
**x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
@@ -1910,14 +1918,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\CreateJournalEntryResponse`](../models/\Apideck\Client\Model\CreateJournalEntryResponse.md)
+[`\Apideck\Client\Model\CreateInvoiceResponse`](../models/\Apideck\Client\Model\CreateInvoiceResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**201** | JournalEntries |
+**201** | Invoice created |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -1941,7 +1949,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->journalEntriesAdd($journalEntry);
+ $response = $apideck->getAccountingApi()->invoicesAdd($invoice);
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -1952,14 +1960,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# List Journal Entries
+
+# List Invoices
-Method: **journalEntriesAll**
+Method: **invoicesAll**
```php
-Apideck->getAccountingApi()->journalEntriesAll($data)
+Apideck->getAccountingApi()->invoicesAll($data)
```
### Parameters
@@ -1970,8 +1978,8 @@ Name | Type | Description | Notes
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
**cursor** | **string**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. |
- **filter** | [\Apideck\Client\Model\JournalEntriesFilter](../models/\Apideck\Client\Model\JournalEntriesFilter.md)| Apply filters |
- **sort** | [\Apideck\Client\Model\JournalEntriesSort](../models/\Apideck\Client\Model\JournalEntriesSort.md)| Apply sorting |
+ **filter** | [\Apideck\Client\Model\InvoicesFilter](../models/\Apideck\Client\Model\InvoicesFilter.md)| Apply filters |
+ **sort** | [\Apideck\Client\Model\InvoicesSort](../models/\Apideck\Client\Model\InvoicesSort.md)| Apply sorting |
**pass_through** | [\Apideck\Client\Model\PassThroughQuery](../models/\Apideck\Client\Model\PassThroughQuery.md)| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads |
**fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
**raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
@@ -1981,14 +1989,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\GetJournalEntriesResponse`](../models/\Apideck\Client\Model\GetJournalEntriesResponse.md)
+[`\Apideck\Client\Model\GetInvoicesResponse`](../models/\Apideck\Client\Model\GetInvoicesResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | JournalEntry |
+**200** | Invoices |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -2012,7 +2020,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->journalEntriesAll();
+ $response = $apideck->getAccountingApi()->invoicesAll();
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -2023,14 +2031,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Delete Journal Entry
+
+# Delete Invoice
-Method: **journalEntriesDelete**
+Method: **invoicesDelete**
```php
-Apideck->getAccountingApi()->journalEntriesDelete($data)
+Apideck->getAccountingApi()->invoicesDelete($data)
```
### Parameters
@@ -2047,14 +2055,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\DeleteJournalEntryResponse`](../models/\Apideck\Client\Model\DeleteJournalEntryResponse.md)
+[`\Apideck\Client\Model\DeleteInvoiceResponse`](../models/\Apideck\Client\Model\DeleteInvoiceResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | JournalEntries |
+**200** | Invoice deleted |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -2078,7 +2086,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->journalEntriesDelete('id_example');
+ $response = $apideck->getAccountingApi()->invoicesDelete('id_example');
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -2089,14 +2097,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Get Journal Entry
+
+# Get Invoice
-Method: **journalEntriesOne**
+Method: **invoicesOne**
```php
-Apideck->getAccountingApi()->journalEntriesOne($data)
+Apideck->getAccountingApi()->invoicesOne($data)
```
### Parameters
@@ -2114,14 +2122,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\GetJournalEntryResponse`](../models/\Apideck\Client\Model\GetJournalEntryResponse.md)
+[`\Apideck\Client\Model\GetInvoiceResponse`](../models/\Apideck\Client\Model\GetInvoiceResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | JournalEntries |
+**200** | Invoice |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -2145,7 +2153,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->journalEntriesOne('id_example');
+ $response = $apideck->getAccountingApi()->invoicesOne('id_example');
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -2156,14 +2164,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Update Journal Entry
+
+# Update Invoice
-Method: **journalEntriesUpdate**
+Method: **invoicesUpdate**
```php
-Apideck->getAccountingApi()->journalEntriesUpdate($data)
+Apideck->getAccountingApi()->invoicesUpdate($data)
```
### Parameters
@@ -2171,7 +2179,7 @@ Apideck->getAccountingApi()->journalEntriesUpdate($data)
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **string**| ID of the record you are acting upon. |
- **journal_entry** | [\Apideck\Client\Model\JournalEntry](../models/\Apideck\Client\Model\JournalEntry.md)| |
+ **invoice** | [\Apideck\Client\Model\Invoice](../models/\Apideck\Client\Model\Invoice.md)| |
**x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
@@ -2181,14 +2189,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\UpdateJournalEntryResponse`](../models/\Apideck\Client\Model\UpdateJournalEntryResponse.md)
+[`\Apideck\Client\Model\UpdateInvoiceResponse`](../models/\Apideck\Client\Model\UpdateInvoiceResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | JournalEntries |
+**200** | Invoice updated |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -2212,7 +2220,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->journalEntriesUpdate('id_example', $journalEntry);
+ $response = $apideck->getAccountingApi()->invoicesUpdate('id_example', $invoice);
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -2223,21 +2231,21 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Create Ledger Account
+
+# Create Journal Entry
-Method: **ledgerAccountsAdd**
+Method: **journalEntriesAdd**
```php
-Apideck->getAccountingApi()->ledgerAccountsAdd($data)
+Apideck->getAccountingApi()->journalEntriesAdd($data)
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
- **request_body** | [array](../models/array.md)| |
+ **journal_entry** | [\Apideck\Client\Model\JournalEntry](../models/\Apideck\Client\Model\JournalEntry.md)| |
**x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
@@ -2247,14 +2255,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\CreateLedgerAccountResponse`](../models/\Apideck\Client\Model\CreateLedgerAccountResponse.md)
+[`\Apideck\Client\Model\CreateJournalEntryResponse`](../models/\Apideck\Client\Model\CreateJournalEntryResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**201** | LedgerAccount created |
+**201** | JournalEntries |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -2278,7 +2286,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->ledgerAccountsAdd($ledgerAccount);
+ $response = $apideck->getAccountingApi()->journalEntriesAdd($journalEntry);
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -2289,14 +2297,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# List Ledger Accounts
+
+# List Journal Entries
-Method: **ledgerAccountsAll**
+Method: **journalEntriesAll**
```php
-Apideck->getAccountingApi()->ledgerAccountsAll($data)
+Apideck->getAccountingApi()->journalEntriesAll($data)
```
### Parameters
@@ -2307,8 +2315,8 @@ Name | Type | Description | Notes
**x_apideck_app_id** | **string**| The ID of your Unify application |
**x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
**cursor** | **string**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. |
- **filter** | [\Apideck\Client\Model\LedgerAccountsFilter](../models/\Apideck\Client\Model\LedgerAccountsFilter.md)| Apply filters |
- **sort** | [\Apideck\Client\Model\LedgerAccountsSort](../models/\Apideck\Client\Model\LedgerAccountsSort.md)| Apply sorting |
+ **filter** | [\Apideck\Client\Model\JournalEntriesFilter](../models/\Apideck\Client\Model\JournalEntriesFilter.md)| Apply filters |
+ **sort** | [\Apideck\Client\Model\JournalEntriesSort](../models/\Apideck\Client\Model\JournalEntriesSort.md)| Apply sorting |
**pass_through** | [\Apideck\Client\Model\PassThroughQuery](../models/\Apideck\Client\Model\PassThroughQuery.md)| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads |
**fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
**raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
@@ -2318,14 +2326,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\GetLedgerAccountsResponse`](../models/\Apideck\Client\Model\GetLedgerAccountsResponse.md)
+[`\Apideck\Client\Model\GetJournalEntriesResponse`](../models/\Apideck\Client\Model\GetJournalEntriesResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | LedgerAccounts |
+**200** | JournalEntry |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -2349,7 +2357,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->ledgerAccountsAll();
+ $response = $apideck->getAccountingApi()->journalEntriesAll();
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -2360,14 +2368,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Delete Ledger Account
+
+# Delete Journal Entry
-Method: **ledgerAccountsDelete**
+Method: **journalEntriesDelete**
```php
-Apideck->getAccountingApi()->ledgerAccountsDelete($data)
+Apideck->getAccountingApi()->journalEntriesDelete($data)
```
### Parameters
@@ -2384,14 +2392,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\DeleteLedgerAccountResponse`](../models/\Apideck\Client\Model\DeleteLedgerAccountResponse.md)
+[`\Apideck\Client\Model\DeleteJournalEntryResponse`](../models/\Apideck\Client\Model\DeleteJournalEntryResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | LedgerAccount deleted |
+**200** | JournalEntries |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -2415,7 +2423,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->ledgerAccountsDelete('id_example');
+ $response = $apideck->getAccountingApi()->journalEntriesDelete('id_example');
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -2426,14 +2434,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Get Ledger Account
+
+# Get Journal Entry
-Method: **ledgerAccountsOne**
+Method: **journalEntriesOne**
```php
-Apideck->getAccountingApi()->ledgerAccountsOne($data)
+Apideck->getAccountingApi()->journalEntriesOne($data)
```
### Parameters
@@ -2451,14 +2459,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\GetLedgerAccountResponse`](../models/\Apideck\Client\Model\GetLedgerAccountResponse.md)
+[`\Apideck\Client\Model\GetJournalEntryResponse`](../models/\Apideck\Client\Model\GetJournalEntryResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | LedgerAccount |
+**200** | JournalEntries |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -2482,7 +2490,7 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->ledgerAccountsOne('id_example');
+ $response = $apideck->getAccountingApi()->journalEntriesOne('id_example');
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
@@ -2493,14 +2501,14 @@ try {
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
-
-# Update Ledger Account
+
+# Update Journal Entry
-Method: **ledgerAccountsUpdate**
+Method: **journalEntriesUpdate**
```php
-Apideck->getAccountingApi()->ledgerAccountsUpdate($data)
+Apideck->getAccountingApi()->journalEntriesUpdate($data)
```
### Parameters
@@ -2508,6 +2516,72 @@ Apideck->getAccountingApi()->ledgerAccountsUpdate($data)
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **string**| ID of the record you are acting upon. |
+ **journal_entry** | [\Apideck\Client\Model\JournalEntry](../models/\Apideck\Client\Model\JournalEntry.md)| |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\UpdateJournalEntryResponse`](../models/\Apideck\Client\Model\UpdateJournalEntryResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | JournalEntries |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->journalEntriesUpdate('id_example', $journalEntry);
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Create Ledger Account
+
+
+Method: **ledgerAccountsAdd**
+
+```php
+Apideck->getAccountingApi()->ledgerAccountsAdd($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
**request_body** | [array](../models/array.md)| |
**x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
**x_apideck_app_id** | **string**| The ID of your Unify application |
@@ -2518,14 +2592,14 @@ Name | Type | Description | Notes
### Response Type
-[`\Apideck\Client\Model\UpdateLedgerAccountResponse`](../models/\Apideck\Client\Model\UpdateLedgerAccountResponse.md)
+[`\Apideck\Client\Model\CreateLedgerAccountResponse`](../models/\Apideck\Client\Model\CreateLedgerAccountResponse.md)
### HTTP response details
| Status code | Description |
|-------------|-------------|
-**200** | LedgerAccount updated |
+**201** | LedgerAccount created |
**400** | Bad Request |
**401** | Unauthorized |
**402** | Payment Required |
@@ -2549,7 +2623,613 @@ $config = new ApideckConfiguration('', 'getAccountingApi()->ledgerAccountsUpdate('id_example', $ledgerAccount);
+ $response = $apideck->getAccountingApi()->ledgerAccountsAdd($ledgerAccount);
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# List Ledger Accounts
+
+
+Method: **ledgerAccountsAll**
+
+```php
+Apideck->getAccountingApi()->ledgerAccountsAll($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **cursor** | **string**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. |
+ **filter** | [\Apideck\Client\Model\LedgerAccountsFilter](../models/\Apideck\Client\Model\LedgerAccountsFilter.md)| Apply filters |
+ **sort** | [\Apideck\Client\Model\LedgerAccountsSort](../models/\Apideck\Client\Model\LedgerAccountsSort.md)| Apply sorting |
+ **pass_through** | [\Apideck\Client\Model\PassThroughQuery](../models/\Apideck\Client\Model\PassThroughQuery.md)| Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads |
+ **fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+ **limit** | [**int**] | Number of results to return. Minimum 1, Maximum 200, Default 20 | (optional) defaults to 20
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\GetLedgerAccountsResponse`](../models/\Apideck\Client\Model\GetLedgerAccountsResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | LedgerAccounts |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->ledgerAccountsAll();
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Delete Ledger Account
+
+
+Method: **ledgerAccountsDelete**
+
+```php
+Apideck->getAccountingApi()->ledgerAccountsDelete($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **id** | **string**| ID of the record you are acting upon. |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\DeleteLedgerAccountResponse`](../models/\Apideck\Client\Model\DeleteLedgerAccountResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | LedgerAccount deleted |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->ledgerAccountsDelete('id_example');
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Get Ledger Account
+
+
+Method: **ledgerAccountsOne**
+
+```php
+Apideck->getAccountingApi()->ledgerAccountsOne($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **id** | **string**| ID of the record you are acting upon. |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\GetLedgerAccountResponse`](../models/\Apideck\Client\Model\GetLedgerAccountResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | LedgerAccount |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->ledgerAccountsOne('id_example');
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Update Ledger Account
+
+
+Method: **ledgerAccountsUpdate**
+
+```php
+Apideck->getAccountingApi()->ledgerAccountsUpdate($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **id** | **string**| ID of the record you are acting upon. |
+ **request_body** | [array](../models/array.md)| |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\UpdateLedgerAccountResponse`](../models/\Apideck\Client\Model\UpdateLedgerAccountResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | LedgerAccount updated |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->ledgerAccountsUpdate('id_example', $ledgerAccount);
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Create Location
+
+
+Method: **locationsAdd**
+
+```php
+Apideck->getAccountingApi()->locationsAdd($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **accounting_location** | [\Apideck\Client\Model\AccountingLocation](../models/\Apideck\Client\Model\AccountingLocation.md)| |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\CreateAccountingLocationResponse`](../models/\Apideck\Client\Model\CreateAccountingLocationResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**201** | Location |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->locationsAdd($location);
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# List Locations
+
+
+Method: **locationsAll**
+
+```php
+Apideck->getAccountingApi()->locationsAll($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **cursor** | **string**| Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. |
+ **fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
+ **filter** | [\Apideck\Client\Model\AccountingLocationsFilter](../models/\Apideck\Client\Model\AccountingLocationsFilter.md)| Apply filters |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+ **limit** | [**int**] | Number of results to return. Minimum 1, Maximum 200, Default 20 | (optional) defaults to 20
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\GetAccountingLocationsResponse`](../models/\Apideck\Client\Model\GetAccountingLocationsResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | Locations |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->locationsAll();
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Delete Location
+
+
+Method: **locationsDelete**
+
+```php
+Apideck->getAccountingApi()->locationsDelete($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **id** | **string**| ID of the record you are acting upon. |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\DeleteAccountingLocationResponse`](../models/\Apideck\Client\Model\DeleteAccountingLocationResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | Location deleted |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->locationsDelete('id_example');
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Get Location
+
+
+Method: **locationsOne**
+
+```php
+Apideck->getAccountingApi()->locationsOne($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **id** | **string**| ID of the record you are acting upon. |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **fields** | **string**| The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.
Example: `fields=name,email,addresses.city`
In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\GetAccountingLocationResponse`](../models/\Apideck\Client\Model\GetAccountingLocationResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | Location |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->locationsOne('id_example');
+ var_dump('API called successfully', $response);
+} catch(ApiException $error) {
+ var_dump('API called failed', $error);
+}
+
+```
+
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
+# Update Location
+
+
+Method: **locationsUpdate**
+
+```php
+Apideck->getAccountingApi()->locationsUpdate($data)
+```
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **id** | **string**| ID of the record you are acting upon. |
+ **accounting_location** | [\Apideck\Client\Model\AccountingLocation](../models/\Apideck\Client\Model\AccountingLocation.md)| |
+ **x_apideck_consumer_id** | **string**| ID of the consumer which you want to get or push data from |
+ **x_apideck_app_id** | **string**| The ID of your Unify application |
+ **x_apideck_service_id** | **string**| Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. |
+ **raw** | [**bool**] | Include raw response. Mostly used for debugging purposes | (optional) defaults to false
+
+
+
+### Response Type
+
+[`\Apideck\Client\Model\UpdateAccountingLocationResponse`](../models/\Apideck\Client\Model\UpdateAccountingLocationResponse.md)
+
+
+
+### HTTP response details
+| Status code | Description |
+|-------------|-------------|
+**200** | Location |
+**400** | Bad Request |
+**401** | Unauthorized |
+**402** | Payment Required |
+**404** | The specified resource was not found |
+**422** | Unprocessable |
+4/5xx | Unexpected error |
+
+
+## Example Usage
+
+```php
+', '', '', '');
+
+$apideck = new Apideck($config);
+
+try {
+ $response = $apideck->getAccountingApi()->locationsUpdate('id_example', $location);
var_dump('API called successfully', $response);
} catch(ApiException $error) {
var_dump('API called failed', $error);
diff --git a/src/gen/docs/models/AccountingDepartment.md b/src/gen/docs/models/AccountingDepartment.md
new file mode 100644
index 0000000000..3d2309b337
--- /dev/null
+++ b/src/gen/docs/models/AccountingDepartment.md
@@ -0,0 +1,52 @@
+# Apideck.AccountingDepartment
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`id` | **string** | A unique identifier for an object. | [optional]
+`parent_id` | **string** | A unique identifier for an object. | [optional]
+`name` | **string** | The name of the department. | [optional]
+`status` | **string** | Based on the status some functionality is enabled or disabled. | [optional]
+`subsidiaries` | [**\Apideck\Client\Model\SubsidiaryReference[]**](SubsidiaryReference.md) | | [optional]
+`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional]
+`row_version` | **string** | A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. | [optional]
+`updated_by` | **string** | The user who last updated the object. | [optional]
+`created_by` | **string** | The user who created the object. | [optional]
+`updated_at` | **\DateTime** | The date and time when the object was last updated. | [optional]
+`created_at` | **\DateTime** | The date and time when the object was created. | [optional]
+
+
+
+
+
+
+## Enum: AccountingDepartment.status
+
+
+* `ACTIVE` (value: `'active'`)
+
+* `INACTIVE` (value: `'inactive'`)
+
+
+
+
+## Referenced Types:
+
+
+
+
+* [`SubsidiaryReference`](SubsidiaryReference.md)
+
+
+
+
+
+
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/AccountingDepartmentsFilter.md b/src/gen/docs/models/AccountingDepartmentsFilter.md
new file mode 100644
index 0000000000..77cfd06c3a
--- /dev/null
+++ b/src/gen/docs/models/AccountingDepartmentsFilter.md
@@ -0,0 +1,18 @@
+# Apideck.AccountingDepartmentsFilter
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`subsidiary` | **string** | Id of the subsidiary to search for | [optional]
+
+
+
+
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/AccountingLocation.md b/src/gen/docs/models/AccountingLocation.md
new file mode 100644
index 0000000000..46f132f3c6
--- /dev/null
+++ b/src/gen/docs/models/AccountingLocation.md
@@ -0,0 +1,56 @@
+# Apideck.AccountingLocation
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`id` | **string** | A unique identifier for an object. | [optional]
+`parent_id` | **string** | A unique identifier for an object. | [optional]
+`company_name` | **string** | The name of the company. | [optional]
+`display_name` | **string** | The display name of the location. | [optional]
+`status` | **string** | Based on the status some functionality is enabled or disabled. | [optional]
+`addresses` | [**\Apideck\Client\Model\Address[]**](Address.md) | | [optional]
+`subsidiaries` | [**\Apideck\Client\Model\SubsidiaryReference[]**](SubsidiaryReference.md) | | [optional]
+`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional]
+`row_version` | **string** | A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. | [optional]
+`updated_by` | **string** | The user who last updated the object. | [optional]
+`created_by` | **string** | The user who created the object. | [optional]
+`updated_at` | **\DateTime** | The date and time when the object was last updated. | [optional]
+`created_at` | **\DateTime** | The date and time when the object was created. | [optional]
+
+
+
+
+
+
+## Enum: AccountingLocation.status
+
+
+* `ACTIVE` (value: `'active'`)
+
+* `INACTIVE` (value: `'inactive'`)
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`Address`](Address.md)
+* [`SubsidiaryReference`](SubsidiaryReference.md)
+
+
+
+
+
+
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/AccountingLocationsFilter.md b/src/gen/docs/models/AccountingLocationsFilter.md
new file mode 100644
index 0000000000..570e63d758
--- /dev/null
+++ b/src/gen/docs/models/AccountingLocationsFilter.md
@@ -0,0 +1,18 @@
+# Apideck.AccountingLocationsFilter
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`subsidiary` | **string** | Id of the subsidiary to search for | [optional]
+
+
+
+
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/CreateAccountingDepartmentResponse.md b/src/gen/docs/models/CreateAccountingDepartmentResponse.md
new file mode 100644
index 0000000000..f8aa5fb241
--- /dev/null
+++ b/src/gen/docs/models/CreateAccountingDepartmentResponse.md
@@ -0,0 +1,31 @@
+# Apideck.CreateAccountingDepartmentResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\UnifiedId**](UnifiedId.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`UnifiedId`](UnifiedId.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/CreateAccountingLocationResponse.md b/src/gen/docs/models/CreateAccountingLocationResponse.md
new file mode 100644
index 0000000000..ff23152845
--- /dev/null
+++ b/src/gen/docs/models/CreateAccountingLocationResponse.md
@@ -0,0 +1,31 @@
+# Apideck.CreateAccountingLocationResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\UnifiedId**](UnifiedId.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`UnifiedId`](UnifiedId.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/DeleteAccountingDepartmentResponse.md b/src/gen/docs/models/DeleteAccountingDepartmentResponse.md
new file mode 100644
index 0000000000..7162299878
--- /dev/null
+++ b/src/gen/docs/models/DeleteAccountingDepartmentResponse.md
@@ -0,0 +1,31 @@
+# Apideck.DeleteAccountingDepartmentResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\UnifiedId**](UnifiedId.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`UnifiedId`](UnifiedId.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/DeleteAccountingLocationResponse.md b/src/gen/docs/models/DeleteAccountingLocationResponse.md
new file mode 100644
index 0000000000..372c103e91
--- /dev/null
+++ b/src/gen/docs/models/DeleteAccountingLocationResponse.md
@@ -0,0 +1,31 @@
+# Apideck.DeleteAccountingLocationResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\UnifiedId**](UnifiedId.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`UnifiedId`](UnifiedId.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/GetAccountingDepartmentResponse.md b/src/gen/docs/models/GetAccountingDepartmentResponse.md
new file mode 100644
index 0000000000..c97ff15fa7
--- /dev/null
+++ b/src/gen/docs/models/GetAccountingDepartmentResponse.md
@@ -0,0 +1,31 @@
+# Apideck.GetAccountingDepartmentResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\AccountingDepartment**](AccountingDepartment.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`AccountingDepartment`](AccountingDepartment.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/GetAccountingDepartmentsResponse.md b/src/gen/docs/models/GetAccountingDepartmentsResponse.md
new file mode 100644
index 0000000000..e7c4ac0dd1
--- /dev/null
+++ b/src/gen/docs/models/GetAccountingDepartmentsResponse.md
@@ -0,0 +1,35 @@
+# Apideck.GetAccountingDepartmentsResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\AccountingDepartment[]**](AccountingDepartment.md) | |
+`meta` | [**\Apideck\Client\Model\Meta**](Meta.md) | | [optional]
+`links` | [**\Apideck\Client\Model\Links**](Links.md) | | [optional]
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`AccountingDepartment`](AccountingDepartment.md)
+* [`Meta`](Meta.md)
+* [`Links`](Links.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/GetAccountingLocationResponse.md b/src/gen/docs/models/GetAccountingLocationResponse.md
new file mode 100644
index 0000000000..ba2ec8e9a8
--- /dev/null
+++ b/src/gen/docs/models/GetAccountingLocationResponse.md
@@ -0,0 +1,31 @@
+# Apideck.GetAccountingLocationResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\AccountingLocation**](AccountingLocation.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`AccountingLocation`](AccountingLocation.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/GetAccountingLocationsResponse.md b/src/gen/docs/models/GetAccountingLocationsResponse.md
new file mode 100644
index 0000000000..aa2707c882
--- /dev/null
+++ b/src/gen/docs/models/GetAccountingLocationsResponse.md
@@ -0,0 +1,35 @@
+# Apideck.GetAccountingLocationsResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\AccountingLocation[]**](AccountingLocation.md) | |
+`meta` | [**\Apideck\Client\Model\Meta**](Meta.md) | | [optional]
+`links` | [**\Apideck\Client\Model\Links**](Links.md) | | [optional]
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`AccountingLocation`](AccountingLocation.md)
+* [`Meta`](Meta.md)
+* [`Links`](Links.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/SubsidiaryReference.md b/src/gen/docs/models/SubsidiaryReference.md
new file mode 100644
index 0000000000..f22b43b904
--- /dev/null
+++ b/src/gen/docs/models/SubsidiaryReference.md
@@ -0,0 +1,19 @@
+# Apideck.SubsidiaryReference
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`id` | **string** | A unique identifier for an object. | [optional]
+`name` | **string** | The name of the company. | [optional]
+
+
+
+
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/UpdateAccountingDepartmentResponse.md b/src/gen/docs/models/UpdateAccountingDepartmentResponse.md
new file mode 100644
index 0000000000..64f2274783
--- /dev/null
+++ b/src/gen/docs/models/UpdateAccountingDepartmentResponse.md
@@ -0,0 +1,31 @@
+# Apideck.UpdateAccountingDepartmentResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\UnifiedId**](UnifiedId.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`UnifiedId`](UnifiedId.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/docs/models/UpdateAccountingLocationResponse.md b/src/gen/docs/models/UpdateAccountingLocationResponse.md
new file mode 100644
index 0000000000..ecf95b2fff
--- /dev/null
+++ b/src/gen/docs/models/UpdateAccountingLocationResponse.md
@@ -0,0 +1,31 @@
+# Apideck.UpdateAccountingLocationResponse
+
+### Description
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+`status_code` | **int** | HTTP Response Status Code |
+`status` | **string** | HTTP Response Status |
+`service` | **string** | Apideck ID of service provider |
+`resource` | **string** | Unified API resource name |
+`operation` | **string** | Operation performed |
+`data` | [**\Apideck\Client\Model\UnifiedId**](UnifiedId.md) | |
+
+
+
+
+
+## Referenced Types:
+
+
+
+
+
+* [`UnifiedId`](UnifiedId.md)
+
+---
+
+[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
+
+
diff --git a/src/gen/lib/Api/AccountingApi.php b/src/gen/lib/Api/AccountingApi.php
index 1bfbbbe7ba..3421b4db18 100644
--- a/src/gen/lib/Api/AccountingApi.php
+++ b/src/gen/lib/Api/AccountingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -9123,11 +9123,11 @@ public function customersUpdateRequest($id, $customer, $x_apideck_consumer_id =
}
/**
- * Operation invoiceItemsAdd
+ * Operation departmentsAdd
*
- * Create Invoice Item
+ * Create Department
*
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department accounting_department (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -9135,20 +9135,20 @@ public function customersUpdateRequest($id, $customer, $x_apideck_consumer_id =
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\CreateInvoiceItemResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\CreateAccountingDepartmentResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoiceItemsAdd($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function departmentsAdd($accounting_department, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- list($response) = $this->invoiceItemsAddWithHttpInfo($invoice_item, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ list($response) = $this->departmentsAddWithHttpInfo($accounting_department, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
return $response;
}
/**
- * Operation invoiceItemsAddWithHttpInfo
+ * Operation departmentsAddWithHttpInfo
*
- * Create Invoice Item
+ * Create Department
*
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -9156,11 +9156,11 @@ public function invoiceItemsAdd($invoice_item, $raw = false, $x_apideck_consumer
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\CreateInvoiceItemResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\CreateAccountingDepartmentResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoiceItemsAddWithHttpInfo($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function departmentsAddWithHttpInfo($accounting_department, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- $request = $this->invoiceItemsAddRequest($invoice_item, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ $request = $this->departmentsAddRequest($accounting_department, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
try {
$options = $this->createHttpClientOption();
@@ -9199,14 +9199,14 @@ public function invoiceItemsAddWithHttpInfo($invoice_item, $raw = false, $x_apid
switch($statusCode) {
case 201:
- if ('\Apideck\Client\Model\CreateInvoiceItemResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\CreateAccountingDepartmentResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateInvoiceItemResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateAccountingDepartmentResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -9284,7 +9284,7 @@ public function invoiceItemsAddWithHttpInfo($invoice_item, $raw = false, $x_apid
];
}
- $returnType = '\Apideck\Client\Model\CreateInvoiceItemResponse';
+ $returnType = '\Apideck\Client\Model\CreateAccountingDepartmentResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -9302,7 +9302,7 @@ public function invoiceItemsAddWithHttpInfo($invoice_item, $raw = false, $x_apid
case 201:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\CreateInvoiceItemResponse',
+ '\Apideck\Client\Model\CreateAccountingDepartmentResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -9361,11 +9361,11 @@ public function invoiceItemsAddWithHttpInfo($invoice_item, $raw = false, $x_apid
}
/**
- * Operation invoiceItemsAddAsync
+ * Operation departmentsAddAsync
*
- * Create Invoice Item
+ * Create Department
*
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -9374,9 +9374,9 @@ public function invoiceItemsAddWithHttpInfo($invoice_item, $raw = false, $x_apid
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsAddAsync($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function departmentsAddAsync($accounting_department, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- return $this->invoiceItemsAddAsyncWithHttpInfo($invoice_item, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
+ return $this->departmentsAddAsyncWithHttpInfo($accounting_department, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
->then(
function ($response) {
return $response[0];
@@ -9385,11 +9385,11 @@ function ($response) {
}
/**
- * Operation invoiceItemsAddAsyncWithHttpInfo
+ * Operation departmentsAddAsyncWithHttpInfo
*
- * Create Invoice Item
+ * Create Department
*
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -9398,10 +9398,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsAddAsyncWithHttpInfo($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function departmentsAddAsyncWithHttpInfo($accounting_department, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- $returnType = '\Apideck\Client\Model\CreateInvoiceItemResponse';
- $request = $this->invoiceItemsAddRequest($invoice_item, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ $returnType = '\Apideck\Client\Model\CreateAccountingDepartmentResponse';
+ $request = $this->departmentsAddRequest($accounting_department, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -9437,9 +9437,9 @@ function ($exception) {
}
/**
- * Create request for operation 'invoiceItemsAdd'
+ * Create request for operation 'departmentsAdd'
*
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -9448,16 +9448,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoiceItemsAddRequest($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function departmentsAddRequest($accounting_department, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- // verify the required parameter 'invoice_item' is set
- if ($invoice_item === null || (is_array($invoice_item) && count($invoice_item) === 0)) {
+ // verify the required parameter 'accounting_department' is set
+ if ($accounting_department === null || (is_array($accounting_department) && count($accounting_department) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $invoice_item when calling invoiceItemsAdd'
+ 'Missing the required parameter $accounting_department when calling departmentsAdd'
);
}
- $resourcePath = '/accounting/invoice-items';
+ $resourcePath = '/accounting/departments';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -9532,11 +9532,11 @@ public function invoiceItemsAddRequest($invoice_item, $raw = false, $x_apideck_c
}
// for model (json/xml)
- if (isset($invoice_item)) {
+ if (isset($accounting_department)) {
if ($headers['Content-Type'] === 'application/json') {
- $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($invoice_item));
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($accounting_department));
} else {
- $httpBody = $invoice_item;
+ $httpBody = $accounting_department;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
@@ -9589,9 +9589,9 @@ public function invoiceItemsAddRequest($invoice_item, $raw = false, $x_apideck_c
}
/**
- * Operation invoiceItemsAll
+ * Operation departmentsAll
*
- * List Invoice Items
+ * List Departments
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -9599,24 +9599,23 @@ public function invoiceItemsAddRequest($invoice_item, $raw = false, $x_apideck_c
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingDepartmentsFilter $filter Apply filters (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetInvoiceItemsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\GetAccountingDepartmentsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoiceItemsAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ public function departmentsAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
- list($response) = $this->invoiceItemsAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $pass_through, $fields);
+ list($response) = $this->departmentsAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields, $filter);
return $response;
}
/**
- * Operation invoiceItemsAllWithHttpInfo
+ * Operation departmentsAllWithHttpInfo
*
- * List Invoice Items
+ * List Departments
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -9624,17 +9623,16 @@ public function invoiceItemsAll($raw = false, $x_apideck_consumer_id = null, $x_
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingDepartmentsFilter $filter Apply filters (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetInvoiceItemsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\GetAccountingDepartmentsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoiceItemsAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ public function departmentsAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
- $request = $this->invoiceItemsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $pass_through, $fields);
+ $request = $this->departmentsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields, $filter);
try {
$options = $this->createHttpClientOption();
@@ -9673,14 +9671,14 @@ public function invoiceItemsAllWithHttpInfo($raw = false, $x_apideck_consumer_id
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetInvoiceItemsResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\GetAccountingDepartmentsResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetInvoiceItemsResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetAccountingDepartmentsResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -9758,7 +9756,7 @@ public function invoiceItemsAllWithHttpInfo($raw = false, $x_apideck_consumer_id
];
}
- $returnType = '\Apideck\Client\Model\GetInvoiceItemsResponse';
+ $returnType = '\Apideck\Client\Model\GetAccountingDepartmentsResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -9776,7 +9774,7 @@ public function invoiceItemsAllWithHttpInfo($raw = false, $x_apideck_consumer_id
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetInvoiceItemsResponse',
+ '\Apideck\Client\Model\GetAccountingDepartmentsResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -9835,9 +9833,9 @@ public function invoiceItemsAllWithHttpInfo($raw = false, $x_apideck_consumer_id
}
/**
- * Operation invoiceItemsAllAsync
+ * Operation departmentsAllAsync
*
- * List Invoice Items
+ * List Departments
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -9845,16 +9843,15 @@ public function invoiceItemsAllWithHttpInfo($raw = false, $x_apideck_consumer_id
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingDepartmentsFilter $filter Apply filters (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ public function departmentsAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
- return $this->invoiceItemsAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $pass_through, $fields)
+ return $this->departmentsAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields, $filter)
->then(
function ($response) {
return $response[0];
@@ -9863,9 +9860,9 @@ function ($response) {
}
/**
- * Operation invoiceItemsAllAsyncWithHttpInfo
+ * Operation departmentsAllAsyncWithHttpInfo
*
- * List Invoice Items
+ * List Departments
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -9873,17 +9870,16 @@ function ($response) {
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingDepartmentsFilter $filter Apply filters (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ public function departmentsAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
- $returnType = '\Apideck\Client\Model\GetInvoiceItemsResponse';
- $request = $this->invoiceItemsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $pass_through, $fields);
+ $returnType = '\Apideck\Client\Model\GetAccountingDepartmentsResponse';
+ $request = $this->departmentsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields, $filter);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -9919,7 +9915,7 @@ function ($exception) {
}
/**
- * Create request for operation 'invoiceItemsAll'
+ * Create request for operation 'departmentsAll'
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -9927,24 +9923,23 @@ function ($exception) {
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingDepartmentsFilter $filter Apply filters (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoiceItemsAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ public function departmentsAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
if ($limit !== null && $limit > 200) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.invoiceItemsAll, must be smaller than or equal to 200.');
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.departmentsAll, must be smaller than or equal to 200.');
}
if ($limit !== null && $limit < 1) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.invoiceItemsAll, must be bigger than or equal to 1.');
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.departmentsAll, must be bigger than or equal to 1.');
}
- $resourcePath = '/accounting/invoice-items';
+ $resourcePath = '/accounting/departments';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -10073,60 +10068,20 @@ public function invoiceItemsAllRequest($raw = false, $x_apideck_consumer_id = nu
}
// query params
- if ('raw' === 'filter') {
- // Support for raw as true/false parameter
- if('form' === 'deepObject' && is_array($filter)) {
- foreach($filter as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['filter'] = $filter ? 'true' : 'false';
- }
- }
-
-
- if ($filter !== null && 'sort' === 'filter') {
- // Support for sort options
- $sort_data = $sort->jsonSerialize();
- foreach($sort_data as $key => $value) {
- $queryParams['sort['.$key.']'] = $value;
- }
- }
-
- if ($filter !== null && 'filter' === 'filter') {
- // Support for filter options
- $filter_data = $filter->jsonSerialize();
- foreach($filter_data as $key => $value) {
- $queryParams['filter['.$key.']'] = $value;
- }
- }
- if ($filter !== null && !('filter' === 'raw' || 'filter' === 'sort' || 'filter' === 'filter')) {
- if('form' === 'deepObject' && is_array($filter)) {
- foreach($filter as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['filter'] = $filter;
- }
- }
- // query params
-
- if ('raw' === 'pass_through') {
+ if ('raw' === 'fields') {
// Support for raw as true/false parameter
- if('form' === 'deepObject' && is_array($pass_through)) {
- foreach($pass_through as $key => $value) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
- $queryParams['pass_through'] = $pass_through ? 'true' : 'false';
+ $queryParams['fields'] = $fields ? 'true' : 'false';
}
}
- if ($pass_through !== null && 'sort' === 'pass_through') {
+ if ($fields !== null && 'sort' === 'fields') {
// Support for sort options
$sort_data = $sort->jsonSerialize();
foreach($sort_data as $key => $value) {
@@ -10134,39 +10089,39 @@ public function invoiceItemsAllRequest($raw = false, $x_apideck_consumer_id = nu
}
}
- if ($pass_through !== null && 'filter' === 'pass_through') {
+ if ($fields !== null && 'filter' === 'fields') {
// Support for filter options
$filter_data = $filter->jsonSerialize();
foreach($filter_data as $key => $value) {
$queryParams['filter['.$key.']'] = $value;
}
}
- if ($pass_through !== null && !('pass_through' === 'raw' || 'pass_through' === 'sort' || 'pass_through' === 'filter')) {
- if('form' === 'deepObject' && is_array($pass_through)) {
- foreach($pass_through as $key => $value) {
+ if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
- $queryParams['pass_through'] = $pass_through;
+ $queryParams['fields'] = $fields;
}
}
// query params
- if ('raw' === 'fields') {
+ if ('raw' === 'filter') {
// Support for raw as true/false parameter
- if('form' === 'form' && is_array($fields)) {
- foreach($fields as $key => $value) {
+ if('form' === 'deepObject' && is_array($filter)) {
+ foreach($filter as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
- $queryParams['fields'] = $fields ? 'true' : 'false';
+ $queryParams['filter'] = $filter ? 'true' : 'false';
}
}
- if ($fields !== null && 'sort' === 'fields') {
+ if ($filter !== null && 'sort' === 'filter') {
// Support for sort options
$sort_data = $sort->jsonSerialize();
foreach($sort_data as $key => $value) {
@@ -10174,21 +10129,21 @@ public function invoiceItemsAllRequest($raw = false, $x_apideck_consumer_id = nu
}
}
- if ($fields !== null && 'filter' === 'fields') {
+ if ($filter !== null && 'filter' === 'filter') {
// Support for filter options
$filter_data = $filter->jsonSerialize();
foreach($filter_data as $key => $value) {
$queryParams['filter['.$key.']'] = $value;
}
}
- if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
- if('form' === 'form' && is_array($fields)) {
- foreach($fields as $key => $value) {
+ if ($filter !== null && !('filter' === 'raw' || 'filter' === 'sort' || 'filter' === 'filter')) {
+ if('form' === 'deepObject' && is_array($filter)) {
+ foreach($filter as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
- $queryParams['fields'] = $fields;
+ $queryParams['filter'] = $filter;
}
}
@@ -10270,9 +10225,9 @@ public function invoiceItemsAllRequest($raw = false, $x_apideck_consumer_id = nu
}
/**
- * Operation invoiceItemsDelete
+ * Operation departmentsDelete
*
- * Delete Invoice Item
+ * Delete Department
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -10282,18 +10237,18 @@ public function invoiceItemsAllRequest($raw = false, $x_apideck_consumer_id = nu
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\DeleteTaxRateResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\DeleteAccountingDepartmentResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoiceItemsDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- list($response) = $this->invoiceItemsDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ list($response) = $this->departmentsDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $response;
}
/**
- * Operation invoiceItemsDeleteWithHttpInfo
+ * Operation departmentsDeleteWithHttpInfo
*
- * Delete Invoice Item
+ * Delete Department
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -10303,11 +10258,11 @@ public function invoiceItemsDelete($id, $x_apideck_consumer_id = null, $x_apidec
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\DeleteTaxRateResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\DeleteAccountingDepartmentResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoiceItemsDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $request = $this->invoiceItemsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $request = $this->departmentsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
try {
$options = $this->createHttpClientOption();
@@ -10346,14 +10301,14 @@ public function invoiceItemsDeleteWithHttpInfo($id, $x_apideck_consumer_id = nul
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\DeleteTaxRateResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\DeleteAccountingDepartmentResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteTaxRateResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteAccountingDepartmentResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -10431,7 +10386,7 @@ public function invoiceItemsDeleteWithHttpInfo($id, $x_apideck_consumer_id = nul
];
}
- $returnType = '\Apideck\Client\Model\DeleteTaxRateResponse';
+ $returnType = '\Apideck\Client\Model\DeleteAccountingDepartmentResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -10449,7 +10404,7 @@ public function invoiceItemsDeleteWithHttpInfo($id, $x_apideck_consumer_id = nul
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\DeleteTaxRateResponse',
+ '\Apideck\Client\Model\DeleteAccountingDepartmentResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -10508,9 +10463,9 @@ public function invoiceItemsDeleteWithHttpInfo($id, $x_apideck_consumer_id = nul
}
/**
- * Operation invoiceItemsDeleteAsync
+ * Operation departmentsDeleteAsync
*
- * Delete Invoice Item
+ * Delete Department
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -10521,9 +10476,9 @@ public function invoiceItemsDeleteWithHttpInfo($id, $x_apideck_consumer_id = nul
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- return $this->invoiceItemsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ return $this->departmentsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
->then(
function ($response) {
return $response[0];
@@ -10532,9 +10487,9 @@ function ($response) {
}
/**
- * Operation invoiceItemsDeleteAsyncWithHttpInfo
+ * Operation departmentsDeleteAsyncWithHttpInfo
*
- * Delete Invoice Item
+ * Delete Department
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -10545,10 +10500,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $returnType = '\Apideck\Client\Model\DeleteTaxRateResponse';
- $request = $this->invoiceItemsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $returnType = '\Apideck\Client\Model\DeleteAccountingDepartmentResponse';
+ $request = $this->departmentsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -10584,7 +10539,7 @@ function ($exception) {
}
/**
- * Create request for operation 'invoiceItemsDelete'
+ * Create request for operation 'departmentsDelete'
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -10595,16 +10550,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoiceItemsDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling invoiceItemsDelete'
+ 'Missing the required parameter $id when calling departmentsDelete'
);
}
- $resourcePath = '/accounting/invoice-items/{id}';
+ $resourcePath = '/accounting/departments/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -10738,9 +10693,9 @@ public function invoiceItemsDeleteRequest($id, $x_apideck_consumer_id = null, $x
}
/**
- * Operation invoiceItemsOne
+ * Operation departmentsOne
*
- * Get Invoice Item
+ * Get Department
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -10751,18 +10706,18 @@ public function invoiceItemsDeleteRequest($id, $x_apideck_consumer_id = null, $x
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetInvoiceItemResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\GetAccountingDepartmentResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoiceItemsOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function departmentsOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- list($response) = $this->invoiceItemsOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ list($response) = $this->departmentsOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $response;
}
/**
- * Operation invoiceItemsOneWithHttpInfo
+ * Operation departmentsOneWithHttpInfo
*
- * Get Invoice Item
+ * Get Department
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -10773,11 +10728,11 @@ public function invoiceItemsOne($id, $x_apideck_consumer_id = null, $x_apideck_a
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetInvoiceItemResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\GetAccountingDepartmentResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoiceItemsOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function departmentsOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $request = $this->invoiceItemsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $request = $this->departmentsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
try {
$options = $this->createHttpClientOption();
@@ -10816,14 +10771,14 @@ public function invoiceItemsOneWithHttpInfo($id, $x_apideck_consumer_id = null,
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetInvoiceItemResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\GetAccountingDepartmentResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetInvoiceItemResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetAccountingDepartmentResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -10901,7 +10856,7 @@ public function invoiceItemsOneWithHttpInfo($id, $x_apideck_consumer_id = null,
];
}
- $returnType = '\Apideck\Client\Model\GetInvoiceItemResponse';
+ $returnType = '\Apideck\Client\Model\GetAccountingDepartmentResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -10919,7 +10874,7 @@ public function invoiceItemsOneWithHttpInfo($id, $x_apideck_consumer_id = null,
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetInvoiceItemResponse',
+ '\Apideck\Client\Model\GetAccountingDepartmentResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -10978,9 +10933,9 @@ public function invoiceItemsOneWithHttpInfo($id, $x_apideck_consumer_id = null,
}
/**
- * Operation invoiceItemsOneAsync
+ * Operation departmentsOneAsync
*
- * Get Invoice Item
+ * Get Department
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -10992,9 +10947,9 @@ public function invoiceItemsOneWithHttpInfo($id, $x_apideck_consumer_id = null,
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function departmentsOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- return $this->invoiceItemsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
+ return $this->departmentsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
->then(
function ($response) {
return $response[0];
@@ -11003,9 +10958,9 @@ function ($response) {
}
/**
- * Operation invoiceItemsOneAsyncWithHttpInfo
+ * Operation departmentsOneAsyncWithHttpInfo
*
- * Get Invoice Item
+ * Get Department
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -11017,10 +10972,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function departmentsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $returnType = '\Apideck\Client\Model\GetInvoiceItemResponse';
- $request = $this->invoiceItemsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $returnType = '\Apideck\Client\Model\GetAccountingDepartmentResponse';
+ $request = $this->departmentsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -11056,7 +11011,7 @@ function ($exception) {
}
/**
- * Create request for operation 'invoiceItemsOne'
+ * Create request for operation 'departmentsOne'
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -11068,16 +11023,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoiceItemsOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function departmentsOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling invoiceItemsOne'
+ 'Missing the required parameter $id when calling departmentsOne'
);
}
- $resourcePath = '/accounting/invoice-items/{id}';
+ $resourcePath = '/accounting/departments/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -11251,12 +11206,12 @@ public function invoiceItemsOneRequest($id, $x_apideck_consumer_id = null, $x_ap
}
/**
- * Operation invoiceItemsUpdate
+ * Operation departmentsUpdate
*
- * Update Invoice Item
+ * Update Department
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department accounting_department (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -11264,21 +11219,21 @@ public function invoiceItemsOneRequest($id, $x_apideck_consumer_id = null, $x_ap
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\UpdateInvoiceItemsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\UpdateAccountingDepartmentResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoiceItemsUpdate($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsUpdate($id, $accounting_department, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- list($response) = $this->invoiceItemsUpdateWithHttpInfo($id, $invoice_item, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ list($response) = $this->departmentsUpdateWithHttpInfo($id, $accounting_department, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $response;
}
/**
- * Operation invoiceItemsUpdateWithHttpInfo
+ * Operation departmentsUpdateWithHttpInfo
*
- * Update Invoice Item
+ * Update Department
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -11286,11 +11241,11 @@ public function invoiceItemsUpdate($id, $invoice_item, $x_apideck_consumer_id =
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\UpdateInvoiceItemsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\UpdateAccountingDepartmentResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoiceItemsUpdateWithHttpInfo($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsUpdateWithHttpInfo($id, $accounting_department, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $request = $this->invoiceItemsUpdateRequest($id, $invoice_item, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $request = $this->departmentsUpdateRequest($id, $accounting_department, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
try {
$options = $this->createHttpClientOption();
@@ -11329,14 +11284,14 @@ public function invoiceItemsUpdateWithHttpInfo($id, $invoice_item, $x_apideck_co
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\UpdateInvoiceItemsResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\UpdateAccountingDepartmentResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateInvoiceItemsResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateAccountingDepartmentResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -11414,7 +11369,7 @@ public function invoiceItemsUpdateWithHttpInfo($id, $invoice_item, $x_apideck_co
];
}
- $returnType = '\Apideck\Client\Model\UpdateInvoiceItemsResponse';
+ $returnType = '\Apideck\Client\Model\UpdateAccountingDepartmentResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -11432,7 +11387,7 @@ public function invoiceItemsUpdateWithHttpInfo($id, $invoice_item, $x_apideck_co
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\UpdateInvoiceItemsResponse',
+ '\Apideck\Client\Model\UpdateAccountingDepartmentResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -11491,12 +11446,12 @@ public function invoiceItemsUpdateWithHttpInfo($id, $invoice_item, $x_apideck_co
}
/**
- * Operation invoiceItemsUpdateAsync
+ * Operation departmentsUpdateAsync
*
- * Update Invoice Item
+ * Update Department
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -11505,9 +11460,9 @@ public function invoiceItemsUpdateWithHttpInfo($id, $invoice_item, $x_apideck_co
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsUpdateAsync($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsUpdateAsync($id, $accounting_department, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- return $this->invoiceItemsUpdateAsyncWithHttpInfo($id, $invoice_item, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ return $this->departmentsUpdateAsyncWithHttpInfo($id, $accounting_department, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
->then(
function ($response) {
return $response[0];
@@ -11516,12 +11471,12 @@ function ($response) {
}
/**
- * Operation invoiceItemsUpdateAsyncWithHttpInfo
+ * Operation departmentsUpdateAsyncWithHttpInfo
*
- * Update Invoice Item
+ * Update Department
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -11530,10 +11485,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoiceItemsUpdateAsyncWithHttpInfo($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsUpdateAsyncWithHttpInfo($id, $accounting_department, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $returnType = '\Apideck\Client\Model\UpdateInvoiceItemsResponse';
- $request = $this->invoiceItemsUpdateRequest($id, $invoice_item, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $returnType = '\Apideck\Client\Model\UpdateAccountingDepartmentResponse';
+ $request = $this->departmentsUpdateRequest($id, $accounting_department, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -11569,10 +11524,10 @@ function ($exception) {
}
/**
- * Create request for operation 'invoiceItemsUpdate'
+ * Create request for operation 'departmentsUpdate'
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param \Apideck\Client\Model\AccountingDepartment $accounting_department (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -11581,22 +11536,22 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoiceItemsUpdateRequest($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function departmentsUpdateRequest($id, $accounting_department, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling invoiceItemsUpdate'
+ 'Missing the required parameter $id when calling departmentsUpdate'
);
}
- // verify the required parameter 'invoice_item' is set
- if ($invoice_item === null || (is_array($invoice_item) && count($invoice_item) === 0)) {
+ // verify the required parameter 'accounting_department' is set
+ if ($accounting_department === null || (is_array($accounting_department) && count($accounting_department) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $invoice_item when calling invoiceItemsUpdate'
+ 'Missing the required parameter $accounting_department when calling departmentsUpdate'
);
}
- $resourcePath = '/accounting/invoice-items/{id}';
+ $resourcePath = '/accounting/departments/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -11679,11 +11634,11 @@ public function invoiceItemsUpdateRequest($id, $invoice_item, $x_apideck_consume
}
// for model (json/xml)
- if (isset($invoice_item)) {
+ if (isset($accounting_department)) {
if ($headers['Content-Type'] === 'application/json') {
- $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($invoice_item));
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($accounting_department));
} else {
- $httpBody = $invoice_item;
+ $httpBody = $accounting_department;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
@@ -11736,11 +11691,11 @@ public function invoiceItemsUpdateRequest($id, $invoice_item, $x_apideck_consume
}
/**
- * Operation invoicesAdd
+ * Operation invoiceItemsAdd
*
- * Create Invoice
+ * Create Invoice Item
*
- * @param \Apideck\Client\Model\Invoice $invoice invoice (required)
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item invoice_item (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -11748,20 +11703,5291 @@ public function invoiceItemsUpdateRequest($id, $invoice_item, $x_apideck_consume
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\CreateInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\CreateInvoiceItemResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoicesAdd($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function invoiceItemsAdd($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ list($response) = $this->invoiceItemsAddWithHttpInfo($invoice_item, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ return $response;
+ }
+
+ /**
+ * Operation invoiceItemsAddWithHttpInfo
+ *
+ * Create Invoice Item
+ *
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\CreateInvoiceItemResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoiceItemsAddWithHttpInfo($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ $request = $this->invoiceItemsAddRequest($invoice_item, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 201:
+ if ('\Apideck\Client\Model\CreateInvoiceItemResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateInvoiceItemResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\CreateInvoiceItemResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 201:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\CreateInvoiceItemResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoiceItemsAddAsync
+ *
+ * Create Invoice Item
+ *
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsAddAsync($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ return $this->invoiceItemsAddAsyncWithHttpInfo($invoice_item, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoiceItemsAddAsyncWithHttpInfo
+ *
+ * Create Invoice Item
+ *
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsAddAsyncWithHttpInfo($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ $returnType = '\Apideck\Client\Model\CreateInvoiceItemResponse';
+ $request = $this->invoiceItemsAddRequest($invoice_item, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+
+ 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();
+ }
+
+ 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 'invoiceItemsAdd'
+ *
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoiceItemsAddRequest($invoice_item, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ // verify the required parameter 'invoice_item' is set
+ if ($invoice_item === null || (is_array($invoice_item) && count($invoice_item) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $invoice_item when calling invoiceItemsAdd'
+ );
+ }
+
+ $resourcePath = '/accounting/invoice-items';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ ['application/json']
+ );
+ }
+
+ // for model (json/xml)
+ if (isset($invoice_item)) {
+ if ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($invoice_item));
+ } else {
+ $httpBody = $invoice_item;
+ }
+ } elseif (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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'POST',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation invoiceItemsAll
+ *
+ * List Invoice Items
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\GetInvoiceItemsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function invoiceItemsAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ {
+ list($response) = $this->invoiceItemsAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $pass_through, $fields);
+ return $response;
+ }
+
+ /**
+ * Operation invoiceItemsAllWithHttpInfo
+ *
+ * List Invoice Items
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\GetInvoiceItemsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoiceItemsAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ {
+ $request = $this->invoiceItemsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $pass_through, $fields);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\GetInvoiceItemsResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetInvoiceItemsResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\GetInvoiceItemsResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\GetInvoiceItemsResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoiceItemsAllAsync
+ *
+ * List Invoice Items
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ {
+ return $this->invoiceItemsAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $pass_through, $fields)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoiceItemsAllAsyncWithHttpInfo
+ *
+ * List Invoice Items
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ {
+ $returnType = '\Apideck\Client\Model\GetInvoiceItemsResponse';
+ $request = $this->invoiceItemsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $pass_through, $fields);
+
+ 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();
+ }
+
+ 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 'invoiceItemsAll'
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoiceItemsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoiceItemsAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $pass_through = null, $fields = null)
+ {
+ if ($limit !== null && $limit > 200) {
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.invoiceItemsAll, must be smaller than or equal to 200.');
+ }
+ if ($limit !== null && $limit < 1) {
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.invoiceItemsAll, must be bigger than or equal to 1.');
+ }
+
+
+ $resourcePath = '/accounting/invoice-items';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+ // query params
+
+ if ('raw' === 'cursor') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($cursor)) {
+ foreach($cursor as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['cursor'] = $cursor ? 'true' : 'false';
+ }
+ }
+
+
+ if ($cursor !== null && 'sort' === 'cursor') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($cursor !== null && 'filter' === 'cursor') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($cursor !== null && !('cursor' === 'raw' || 'cursor' === 'sort' || 'cursor' === 'filter')) {
+ if('form' === 'form' && is_array($cursor)) {
+ foreach($cursor as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['cursor'] = $cursor;
+ }
+ }
+ // query params
+
+ if ('raw' === 'limit') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($limit)) {
+ foreach($limit as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['limit'] = $limit ? 'true' : 'false';
+ }
+ }
+
+
+ if ($limit !== null && 'sort' === 'limit') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($limit !== null && 'filter' === 'limit') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($limit !== null && !('limit' === 'raw' || 'limit' === 'sort' || 'limit' === 'filter')) {
+ if('form' === 'form' && is_array($limit)) {
+ foreach($limit as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['limit'] = $limit;
+ }
+ }
+ // query params
+
+ if ('raw' === 'filter') {
+ // Support for raw as true/false parameter
+ if('form' === 'deepObject' && is_array($filter)) {
+ foreach($filter as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['filter'] = $filter ? 'true' : 'false';
+ }
+ }
+
+
+ if ($filter !== null && 'sort' === 'filter') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($filter !== null && 'filter' === 'filter') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($filter !== null && !('filter' === 'raw' || 'filter' === 'sort' || 'filter' === 'filter')) {
+ if('form' === 'deepObject' && is_array($filter)) {
+ foreach($filter as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['filter'] = $filter;
+ }
+ }
+ // query params
+
+ if ('raw' === 'pass_through') {
+ // Support for raw as true/false parameter
+ if('form' === 'deepObject' && is_array($pass_through)) {
+ foreach($pass_through as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['pass_through'] = $pass_through ? 'true' : 'false';
+ }
+ }
+
+
+ if ($pass_through !== null && 'sort' === 'pass_through') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($pass_through !== null && 'filter' === 'pass_through') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($pass_through !== null && !('pass_through' === 'raw' || 'pass_through' === 'sort' || 'pass_through' === 'filter')) {
+ if('form' === 'deepObject' && is_array($pass_through)) {
+ foreach($pass_through as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['pass_through'] = $pass_through;
+ }
+ }
+ // query params
+
+ if ('raw' === 'fields') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields ? 'true' : 'false';
+ }
+ }
+
+
+ if ($fields !== null && 'sort' === 'fields') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($fields !== null && 'filter' === 'fields') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'GET',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation invoiceItemsDelete
+ *
+ * Delete Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\DeleteTaxRateResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function invoiceItemsDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ list($response) = $this->invoiceItemsDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ return $response;
+ }
+
+ /**
+ * Operation invoiceItemsDeleteWithHttpInfo
+ *
+ * Delete Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\DeleteTaxRateResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoiceItemsDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $request = $this->invoiceItemsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\DeleteTaxRateResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteTaxRateResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\DeleteTaxRateResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\DeleteTaxRateResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoiceItemsDeleteAsync
+ *
+ * Delete Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ return $this->invoiceItemsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoiceItemsDeleteAsyncWithHttpInfo
+ *
+ * Delete Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $returnType = '\Apideck\Client\Model\DeleteTaxRateResponse';
+ $request = $this->invoiceItemsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+ }
+
+ 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 'invoiceItemsDelete'
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoiceItemsDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ // verify the required parameter 'id' is set
+ if ($id === null || (is_array($id) && count($id) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $id when calling invoiceItemsDelete'
+ );
+ }
+
+ $resourcePath = '/accounting/invoice-items/{id}';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+ // path params
+ if ($id !== null) {
+ $resourcePath = str_replace(
+ '{' . 'id' . '}',
+ ObjectSerializer::toPathValue($id),
+ $resourcePath
+ );
+ }
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'DELETE',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation invoiceItemsOne
+ *
+ * Get Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\GetInvoiceItemResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function invoiceItemsOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ list($response) = $this->invoiceItemsOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ return $response;
+ }
+
+ /**
+ * Operation invoiceItemsOneWithHttpInfo
+ *
+ * Get Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\GetInvoiceItemResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoiceItemsOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ $request = $this->invoiceItemsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\GetInvoiceItemResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetInvoiceItemResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\GetInvoiceItemResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\GetInvoiceItemResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoiceItemsOneAsync
+ *
+ * Get Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ return $this->invoiceItemsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoiceItemsOneAsyncWithHttpInfo
+ *
+ * Get Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ $returnType = '\Apideck\Client\Model\GetInvoiceItemResponse';
+ $request = $this->invoiceItemsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+
+ 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();
+ }
+
+ 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 'invoiceItemsOne'
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoiceItemsOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ // verify the required parameter 'id' is set
+ if ($id === null || (is_array($id) && count($id) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $id when calling invoiceItemsOne'
+ );
+ }
+
+ $resourcePath = '/accounting/invoice-items/{id}';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+ // query params
+
+ if ('raw' === 'fields') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields ? 'true' : 'false';
+ }
+ }
+
+
+ if ($fields !== null && 'sort' === 'fields') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($fields !== null && 'filter' === 'fields') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+ // path params
+ if ($id !== null) {
+ $resourcePath = str_replace(
+ '{' . 'id' . '}',
+ ObjectSerializer::toPathValue($id),
+ $resourcePath
+ );
+ }
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'GET',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation invoiceItemsUpdate
+ *
+ * Update Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item invoice_item (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\UpdateInvoiceItemsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function invoiceItemsUpdate($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ list($response) = $this->invoiceItemsUpdateWithHttpInfo($id, $invoice_item, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ return $response;
+ }
+
+ /**
+ * Operation invoiceItemsUpdateWithHttpInfo
+ *
+ * Update Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\UpdateInvoiceItemsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoiceItemsUpdateWithHttpInfo($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $request = $this->invoiceItemsUpdateRequest($id, $invoice_item, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\UpdateInvoiceItemsResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateInvoiceItemsResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\UpdateInvoiceItemsResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UpdateInvoiceItemsResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoiceItemsUpdateAsync
+ *
+ * Update Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsUpdateAsync($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ return $this->invoiceItemsUpdateAsyncWithHttpInfo($id, $invoice_item, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoiceItemsUpdateAsyncWithHttpInfo
+ *
+ * Update Invoice Item
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoiceItemsUpdateAsyncWithHttpInfo($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $returnType = '\Apideck\Client\Model\UpdateInvoiceItemsResponse';
+ $request = $this->invoiceItemsUpdateRequest($id, $invoice_item, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+ }
+
+ 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 'invoiceItemsUpdate'
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\InvoiceItem $invoice_item (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoiceItemsUpdateRequest($id, $invoice_item, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ // verify the required parameter 'id' is set
+ if ($id === null || (is_array($id) && count($id) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $id when calling invoiceItemsUpdate'
+ );
+ }
+ // verify the required parameter 'invoice_item' is set
+ if ($invoice_item === null || (is_array($invoice_item) && count($invoice_item) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $invoice_item when calling invoiceItemsUpdate'
+ );
+ }
+
+ $resourcePath = '/accounting/invoice-items/{id}';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+ // path params
+ if ($id !== null) {
+ $resourcePath = str_replace(
+ '{' . 'id' . '}',
+ ObjectSerializer::toPathValue($id),
+ $resourcePath
+ );
+ }
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ ['application/json']
+ );
+ }
+
+ // for model (json/xml)
+ if (isset($invoice_item)) {
+ if ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($invoice_item));
+ } else {
+ $httpBody = $invoice_item;
+ }
+ } elseif (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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'PATCH',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation invoicesAdd
+ *
+ * Create Invoice
+ *
+ * @param \Apideck\Client\Model\Invoice $invoice invoice (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\CreateInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function invoicesAdd($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ list($response) = $this->invoicesAddWithHttpInfo($invoice, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ return $response;
+ }
+
+ /**
+ * Operation invoicesAddWithHttpInfo
+ *
+ * Create Invoice
+ *
+ * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\CreateInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoicesAddWithHttpInfo($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ $request = $this->invoicesAddRequest($invoice, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 201:
+ if ('\Apideck\Client\Model\CreateInvoiceResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateInvoiceResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\CreateInvoiceResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 201:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\CreateInvoiceResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoicesAddAsync
+ *
+ * Create Invoice
+ *
+ * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesAddAsync($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ return $this->invoicesAddAsyncWithHttpInfo($invoice, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoicesAddAsyncWithHttpInfo
+ *
+ * Create Invoice
+ *
+ * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesAddAsyncWithHttpInfo($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ $returnType = '\Apideck\Client\Model\CreateInvoiceResponse';
+ $request = $this->invoicesAddRequest($invoice, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+
+ 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();
+ }
+
+ 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 'invoicesAdd'
+ *
+ * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoicesAddRequest($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ {
+ // verify the required parameter 'invoice' is set
+ if ($invoice === null || (is_array($invoice) && count($invoice) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $invoice when calling invoicesAdd'
+ );
+ }
+
+ $resourcePath = '/accounting/invoices';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ ['application/json']
+ );
+ }
+
+ // for model (json/xml)
+ if (isset($invoice)) {
+ if ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($invoice));
+ } else {
+ $httpBody = $invoice;
+ }
+ } elseif (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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'POST',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation invoicesAll
+ *
+ * List Invoices
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\GetInvoicesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function invoicesAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ {
+ list($response) = $this->invoicesAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ return $response;
+ }
+
+ /**
+ * Operation invoicesAllWithHttpInfo
+ *
+ * List Invoices
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\GetInvoicesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoicesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ {
+ $request = $this->invoicesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\GetInvoicesResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetInvoicesResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\GetInvoicesResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\GetInvoicesResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoicesAllAsync
+ *
+ * List Invoices
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ {
+ return $this->invoicesAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoicesAllAsyncWithHttpInfo
+ *
+ * List Invoices
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ {
+ $returnType = '\Apideck\Client\Model\GetInvoicesResponse';
+ $request = $this->invoicesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+
+ 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();
+ }
+
+ 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 'invoicesAll'
+ *
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
+ * @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
+ * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoicesAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ {
+ if ($limit !== null && $limit > 200) {
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.invoicesAll, must be smaller than or equal to 200.');
+ }
+ if ($limit !== null && $limit < 1) {
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.invoicesAll, must be bigger than or equal to 1.');
+ }
+
+
+ $resourcePath = '/accounting/invoices';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+ // query params
+
+ if ('raw' === 'cursor') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($cursor)) {
+ foreach($cursor as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['cursor'] = $cursor ? 'true' : 'false';
+ }
+ }
+
+
+ if ($cursor !== null && 'sort' === 'cursor') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($cursor !== null && 'filter' === 'cursor') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($cursor !== null && !('cursor' === 'raw' || 'cursor' === 'sort' || 'cursor' === 'filter')) {
+ if('form' === 'form' && is_array($cursor)) {
+ foreach($cursor as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['cursor'] = $cursor;
+ }
+ }
+ // query params
+
+ if ('raw' === 'limit') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($limit)) {
+ foreach($limit as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['limit'] = $limit ? 'true' : 'false';
+ }
+ }
+
+
+ if ($limit !== null && 'sort' === 'limit') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($limit !== null && 'filter' === 'limit') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($limit !== null && !('limit' === 'raw' || 'limit' === 'sort' || 'limit' === 'filter')) {
+ if('form' === 'form' && is_array($limit)) {
+ foreach($limit as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['limit'] = $limit;
+ }
+ }
+ // query params
+
+ if ('raw' === 'filter') {
+ // Support for raw as true/false parameter
+ if('form' === 'deepObject' && is_array($filter)) {
+ foreach($filter as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['filter'] = $filter ? 'true' : 'false';
+ }
+ }
+
+
+ if ($filter !== null && 'sort' === 'filter') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($filter !== null && 'filter' === 'filter') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($filter !== null && !('filter' === 'raw' || 'filter' === 'sort' || 'filter' === 'filter')) {
+ if('form' === 'deepObject' && is_array($filter)) {
+ foreach($filter as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['filter'] = $filter;
+ }
+ }
+ // query params
+
+ if ('raw' === 'sort') {
+ // Support for raw as true/false parameter
+ if('form' === 'deepObject' && is_array($sort)) {
+ foreach($sort as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['sort'] = $sort ? 'true' : 'false';
+ }
+ }
+
+
+ if ($sort !== null && 'sort' === 'sort') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($sort !== null && 'filter' === 'sort') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($sort !== null && !('sort' === 'raw' || 'sort' === 'sort' || 'sort' === 'filter')) {
+ if('form' === 'deepObject' && is_array($sort)) {
+ foreach($sort as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['sort'] = $sort;
+ }
+ }
+ // query params
+
+ if ('raw' === 'pass_through') {
+ // Support for raw as true/false parameter
+ if('form' === 'deepObject' && is_array($pass_through)) {
+ foreach($pass_through as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['pass_through'] = $pass_through ? 'true' : 'false';
+ }
+ }
+
+
+ if ($pass_through !== null && 'sort' === 'pass_through') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($pass_through !== null && 'filter' === 'pass_through') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($pass_through !== null && !('pass_through' === 'raw' || 'pass_through' === 'sort' || 'pass_through' === 'filter')) {
+ if('form' === 'deepObject' && is_array($pass_through)) {
+ foreach($pass_through as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['pass_through'] = $pass_through;
+ }
+ }
+ // query params
+
+ if ('raw' === 'fields') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields ? 'true' : 'false';
+ }
+ }
+
+
+ if ($fields !== null && 'sort' === 'fields') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($fields !== null && 'filter' === 'fields') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'GET',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation invoicesDelete
+ *
+ * Delete Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\DeleteInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function invoicesDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ list($response) = $this->invoicesDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ return $response;
+ }
+
+ /**
+ * Operation invoicesDeleteWithHttpInfo
+ *
+ * Delete Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\DeleteInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoicesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $request = $this->invoicesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\DeleteInvoiceResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteInvoiceResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\DeleteInvoiceResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\DeleteInvoiceResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoicesDeleteAsync
+ *
+ * Delete Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ return $this->invoicesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoicesDeleteAsyncWithHttpInfo
+ *
+ * Delete Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $returnType = '\Apideck\Client\Model\DeleteInvoiceResponse';
+ $request = $this->invoicesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+ }
+
+ 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 'invoicesDelete'
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoicesDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ // verify the required parameter 'id' is set
+ if ($id === null || (is_array($id) && count($id) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $id when calling invoicesDelete'
+ );
+ }
+
+ $resourcePath = '/accounting/invoices/{id}';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+ // path params
+ if ($id !== null) {
+ $resourcePath = str_replace(
+ '{' . 'id' . '}',
+ ObjectSerializer::toPathValue($id),
+ $resourcePath
+ );
+ }
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'DELETE',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation invoicesOne
+ *
+ * Get Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\GetInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function invoicesOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ list($response) = $this->invoicesOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ return $response;
+ }
+
+ /**
+ * Operation invoicesOneWithHttpInfo
+ *
+ * Get Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\GetInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoicesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ $request = $this->invoicesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\GetInvoiceResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetInvoiceResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\GetInvoiceResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\GetInvoiceResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoicesOneAsync
+ *
+ * Get Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ return $this->invoicesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoicesOneAsyncWithHttpInfo
+ *
+ * Get Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ $returnType = '\Apideck\Client\Model\GetInvoiceResponse';
+ $request = $this->invoicesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+
+ 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();
+ }
+
+ 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 'invoicesOne'
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoicesOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ {
+ // verify the required parameter 'id' is set
+ if ($id === null || (is_array($id) && count($id) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $id when calling invoicesOne'
+ );
+ }
+
+ $resourcePath = '/accounting/invoices/{id}';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+ // query params
+
+ if ('raw' === 'fields') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields ? 'true' : 'false';
+ }
+ }
+
+
+ if ($fields !== null && 'sort' === 'fields') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($fields !== null && 'filter' === 'fields') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['fields'] = $fields;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+ // path params
+ if ($id !== null) {
+ $resourcePath = str_replace(
+ '{' . 'id' . '}',
+ ObjectSerializer::toPathValue($id),
+ $resourcePath
+ );
+ }
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ []
+ );
+ }
+
+ // 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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'GET',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation invoicesUpdate
+ *
+ * Update Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Invoice $invoice invoice (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\UpdateInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function invoicesUpdate($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ list($response) = $this->invoicesUpdateWithHttpInfo($id, $invoice, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ return $response;
+ }
+
+ /**
+ * Operation invoicesUpdateWithHttpInfo
+ *
+ * Update Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return array of \Apideck\Client\Model\UpdateInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ */
+ public function invoicesUpdateWithHttpInfo($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $request = $this->invoicesUpdateRequest($id, $invoice, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+
+ 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()
+ );
+ }
+
+ switch($statusCode) {
+ case 200:
+ if ('\Apideck\Client\Model\UpdateInvoiceResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateInvoiceResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 400:
+ if ('\Apideck\Client\Model\BadRequestResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\BadRequestResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 401:
+ if ('\Apideck\Client\Model\UnauthorizedResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnauthorizedResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 402:
+ if ('\Apideck\Client\Model\PaymentRequiredResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\PaymentRequiredResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 404:
+ if ('\Apideck\Client\Model\NotFoundResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\NotFoundResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ case 422:
+ if ('\Apideck\Client\Model\UnprocessableResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnprocessableResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ default:
+ if ('\Apideck\Client\Model\UnexpectedErrorResponse' === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UnexpectedErrorResponse', []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+ }
+
+ $returnType = '\Apideck\Client\Model\UpdateInvoiceResponse';
+ if ($returnType === '\SplFileObject') {
+ $content = $response->getBody(); //stream goes to serializer
+ } else {
+ $content = (string) $response->getBody();
+ }
+
+ return [
+ ObjectSerializer::deserialize($content, $returnType, []),
+ $response->getStatusCode(),
+ $response->getHeaders()
+ ];
+
+ } catch (ApiException $e) {
+ switch ($e->getCode()) {
+ case 200:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UpdateInvoiceResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 400:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\BadRequestResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 401:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnauthorizedResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 402:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\PaymentRequiredResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 404:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\NotFoundResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ case 422:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnprocessableResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ default:
+ $data = ObjectSerializer::deserialize(
+ $e->getResponseBody(),
+ '\Apideck\Client\Model\UnexpectedErrorResponse',
+ $e->getResponseHeaders()
+ );
+ $e->setResponseObject($data);
+ break;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Operation invoicesUpdateAsync
+ *
+ * Update Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesUpdateAsync($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ return $this->invoicesUpdateAsyncWithHttpInfo($id, $invoice, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ ->then(
+ function ($response) {
+ return $response[0];
+ }
+ );
+ }
+
+ /**
+ * Operation invoicesUpdateAsyncWithHttpInfo
+ *
+ * Update Invoice
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Promise\PromiseInterface
+ */
+ public function invoicesUpdateAsyncWithHttpInfo($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ $returnType = '\Apideck\Client\Model\UpdateInvoiceResponse';
+ $request = $this->invoicesUpdateRequest($id, $invoice, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+
+ 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();
+ }
+
+ 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 'invoicesUpdate'
+ *
+ * @param string $id ID of the record you are acting upon. (required)
+ * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ *
+ * @throws \InvalidArgumentException
+ * @return \GuzzleHttp\Psr7\Request
+ */
+ public function invoicesUpdateRequest($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ {
+ // verify the required parameter 'id' is set
+ if ($id === null || (is_array($id) && count($id) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $id when calling invoicesUpdate'
+ );
+ }
+ // verify the required parameter 'invoice' is set
+ if ($invoice === null || (is_array($invoice) && count($invoice) === 0)) {
+ throw new \InvalidArgumentException(
+ 'Missing the required parameter $invoice when calling invoicesUpdate'
+ );
+ }
+
+ $resourcePath = '/accounting/invoices/{id}';
+ $formParams = [];
+ $queryParams = [];
+ $headerParams = [];
+ $httpBody = '';
+ $multipart = false;
+
+ // query params
+
+ if ('raw' === 'raw') {
+ // Support for raw as true/false parameter
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw ? 'true' : 'false';
+ }
+ }
+
+
+ if ($raw !== null && 'sort' === 'raw') {
+ // Support for sort options
+ $sort_data = $sort->jsonSerialize();
+ foreach($sort_data as $key => $value) {
+ $queryParams['sort['.$key.']'] = $value;
+ }
+ }
+
+ if ($raw !== null && 'filter' === 'raw') {
+ // Support for filter options
+ $filter_data = $filter->jsonSerialize();
+ foreach($filter_data as $key => $value) {
+ $queryParams['filter['.$key.']'] = $value;
+ }
+ }
+ if ($raw !== null && !('raw' === 'raw' || 'raw' === 'sort' || 'raw' === 'filter')) {
+ if('form' === 'form' && is_array($raw)) {
+ foreach($raw as $key => $value) {
+ $queryParams[$key] = $value;
+ }
+ }
+ else {
+ $queryParams['raw'] = $raw;
+ }
+ }
+
+ // header params
+ if ($x_apideck_consumer_id !== null) {
+ $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);
+ }
+ // header params
+ if ($x_apideck_app_id !== null) {
+ $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);
+ }
+ // header params
+ if ($x_apideck_service_id !== null) {
+ $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);
+ }
+
+ // path params
+ if ($id !== null) {
+ $resourcePath = str_replace(
+ '{' . 'id' . '}',
+ ObjectSerializer::toPathValue($id),
+ $resourcePath
+ );
+ }
+
+
+ if ($multipart) {
+ $headers = $this->headerSelector->selectHeadersForMultipart(
+ ['application/json']
+ );
+ } else {
+ $headers = $this->headerSelector->selectHeaders(
+ ['application/json'],
+ ['application/json']
+ );
+ }
+
+ // for model (json/xml)
+ if (isset($invoice)) {
+ if ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($invoice));
+ } else {
+ $httpBody = $invoice;
+ }
+ } elseif (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 ($headers['Content-Type'] === 'application/json') {
+ $httpBody = \GuzzleHttp\json_encode($formParams);
+
+ } else {
+ // for HTTP post (form)
+ $httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
+ }
+ }
+
+ // this endpoint requires API key authentication
+ $apiKey = $this->config->getApiKeyWithPrefix('Authorization');
+ if ($apiKey !== null) {
+ $headers['Authorization'] = $apiKey;
+ }
+
+ $defaultHeaders = $this->config->getDefaultHeaders();
+ if ($this->config->getUserAgent()) {
+ $defaultHeaders['User-Agent'] = $this->config->getUserAgent();
+ }
+
+ $headers = array_merge(
+ $defaultHeaders,
+ $headerParams,
+ $headers
+ );
+
+ $query = \GuzzleHttp\Psr7\Query::build($queryParams);
+ return new Request(
+ 'PATCH',
+ $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
+ $headers,
+ $httpBody
+ );
+ }
+
+ /**
+ * Operation journalEntriesAdd
+ *
+ * Create Journal Entry
+ *
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry journal_entry (required)
+ * @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
+ * @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
+ * @param string $x_apideck_app_id The ID of your Unify application (optional)
+ * @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
+ *
+ * @throws \Apideck\Client\ApiException on non-2xx response
+ * @throws \InvalidArgumentException
+ * @return \Apideck\Client\Model\CreateJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ */
+ public function journalEntriesAdd($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- list($response) = $this->invoicesAddWithHttpInfo($invoice, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ list($response) = $this->journalEntriesAddWithHttpInfo($journal_entry, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
return $response;
}
/**
- * Operation invoicesAddWithHttpInfo
+ * Operation journalEntriesAddWithHttpInfo
*
- * Create Invoice
+ * Create Journal Entry
*
- * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -11769,11 +16995,11 @@ public function invoicesAdd($invoice, $raw = false, $x_apideck_consumer_id = nul
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\CreateInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\CreateJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoicesAddWithHttpInfo($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function journalEntriesAddWithHttpInfo($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- $request = $this->invoicesAddRequest($invoice, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ $request = $this->journalEntriesAddRequest($journal_entry, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
try {
$options = $this->createHttpClientOption();
@@ -11812,14 +17038,14 @@ public function invoicesAddWithHttpInfo($invoice, $raw = false, $x_apideck_consu
switch($statusCode) {
case 201:
- if ('\Apideck\Client\Model\CreateInvoiceResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\CreateJournalEntryResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateInvoiceResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateJournalEntryResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -11897,7 +17123,7 @@ public function invoicesAddWithHttpInfo($invoice, $raw = false, $x_apideck_consu
];
}
- $returnType = '\Apideck\Client\Model\CreateInvoiceResponse';
+ $returnType = '\Apideck\Client\Model\CreateJournalEntryResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -11915,7 +17141,7 @@ public function invoicesAddWithHttpInfo($invoice, $raw = false, $x_apideck_consu
case 201:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\CreateInvoiceResponse',
+ '\Apideck\Client\Model\CreateJournalEntryResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -11974,11 +17200,11 @@ public function invoicesAddWithHttpInfo($invoice, $raw = false, $x_apideck_consu
}
/**
- * Operation invoicesAddAsync
+ * Operation journalEntriesAddAsync
*
- * Create Invoice
+ * Create Journal Entry
*
- * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -11987,9 +17213,9 @@ public function invoicesAddWithHttpInfo($invoice, $raw = false, $x_apideck_consu
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesAddAsync($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function journalEntriesAddAsync($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- return $this->invoicesAddAsyncWithHttpInfo($invoice, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
+ return $this->journalEntriesAddAsyncWithHttpInfo($journal_entry, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
->then(
function ($response) {
return $response[0];
@@ -11998,11 +17224,11 @@ function ($response) {
}
/**
- * Operation invoicesAddAsyncWithHttpInfo
+ * Operation journalEntriesAddAsyncWithHttpInfo
*
- * Create Invoice
+ * Create Journal Entry
*
- * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -12011,10 +17237,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesAddAsyncWithHttpInfo($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function journalEntriesAddAsyncWithHttpInfo($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- $returnType = '\Apideck\Client\Model\CreateInvoiceResponse';
- $request = $this->invoicesAddRequest($invoice, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ $returnType = '\Apideck\Client\Model\CreateJournalEntryResponse';
+ $request = $this->journalEntriesAddRequest($journal_entry, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -12050,9 +17276,9 @@ function ($exception) {
}
/**
- * Create request for operation 'invoicesAdd'
+ * Create request for operation 'journalEntriesAdd'
*
- * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -12061,16 +17287,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoicesAddRequest($invoice, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function journalEntriesAddRequest($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- // verify the required parameter 'invoice' is set
- if ($invoice === null || (is_array($invoice) && count($invoice) === 0)) {
+ // verify the required parameter 'journal_entry' is set
+ if ($journal_entry === null || (is_array($journal_entry) && count($journal_entry) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $invoice when calling invoicesAdd'
+ 'Missing the required parameter $journal_entry when calling journalEntriesAdd'
);
}
- $resourcePath = '/accounting/invoices';
+ $resourcePath = '/accounting/journal-entries';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -12145,11 +17371,11 @@ public function invoicesAddRequest($invoice, $raw = false, $x_apideck_consumer_i
}
// for model (json/xml)
- if (isset($invoice)) {
+ if (isset($journal_entry)) {
if ($headers['Content-Type'] === 'application/json') {
- $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($invoice));
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($journal_entry));
} else {
- $httpBody = $invoice;
+ $httpBody = $journal_entry;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
@@ -12202,9 +17428,9 @@ public function invoicesAddRequest($invoice, $raw = false, $x_apideck_consumer_i
}
/**
- * Operation invoicesAll
+ * Operation journalEntriesAll
*
- * List Invoices
+ * List Journal Entries
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -12212,25 +17438,25 @@ public function invoicesAddRequest($invoice, $raw = false, $x_apideck_consumer_i
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetInvoicesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\GetJournalEntriesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoicesAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function journalEntriesAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
- list($response) = $this->invoicesAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ list($response) = $this->journalEntriesAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
return $response;
}
/**
- * Operation invoicesAllWithHttpInfo
+ * Operation journalEntriesAllWithHttpInfo
*
- * List Invoices
+ * List Journal Entries
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -12238,18 +17464,18 @@ public function invoicesAll($raw = false, $x_apideck_consumer_id = null, $x_apid
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetInvoicesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\GetJournalEntriesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoicesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function journalEntriesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
- $request = $this->invoicesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ $request = $this->journalEntriesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
try {
$options = $this->createHttpClientOption();
@@ -12288,14 +17514,14 @@ public function invoicesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = n
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetInvoicesResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\GetJournalEntriesResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetInvoicesResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetJournalEntriesResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -12373,7 +17599,7 @@ public function invoicesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = n
];
}
- $returnType = '\Apideck\Client\Model\GetInvoicesResponse';
+ $returnType = '\Apideck\Client\Model\GetJournalEntriesResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -12391,7 +17617,7 @@ public function invoicesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = n
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetInvoicesResponse',
+ '\Apideck\Client\Model\GetJournalEntriesResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -12450,9 +17676,9 @@ public function invoicesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = n
}
/**
- * Operation invoicesAllAsync
+ * Operation journalEntriesAllAsync
*
- * List Invoices
+ * List Journal Entries
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -12460,17 +17686,17 @@ public function invoicesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = n
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function journalEntriesAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
- return $this->invoicesAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields)
+ return $this->journalEntriesAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields)
->then(
function ($response) {
return $response[0];
@@ -12479,9 +17705,9 @@ function ($response) {
}
/**
- * Operation invoicesAllAsyncWithHttpInfo
+ * Operation journalEntriesAllAsyncWithHttpInfo
*
- * List Invoices
+ * List Journal Entries
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -12489,18 +17715,18 @@ function ($response) {
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function journalEntriesAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
- $returnType = '\Apideck\Client\Model\GetInvoicesResponse';
- $request = $this->invoicesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ $returnType = '\Apideck\Client\Model\GetJournalEntriesResponse';
+ $request = $this->journalEntriesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -12536,7 +17762,7 @@ function ($exception) {
}
/**
- * Create request for operation 'invoicesAll'
+ * Create request for operation 'journalEntriesAll'
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -12544,25 +17770,25 @@ function ($exception) {
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\InvoicesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\InvoicesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoicesAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function journalEntriesAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
if ($limit !== null && $limit > 200) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.invoicesAll, must be smaller than or equal to 200.');
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.journalEntriesAll, must be smaller than or equal to 200.');
}
if ($limit !== null && $limit < 1) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.invoicesAll, must be bigger than or equal to 1.');
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.journalEntriesAll, must be bigger than or equal to 1.');
}
- $resourcePath = '/accounting/invoices';
+ $resourcePath = '/accounting/journal-entries';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -12928,9 +18154,9 @@ public function invoicesAllRequest($raw = false, $x_apideck_consumer_id = null,
}
/**
- * Operation invoicesDelete
+ * Operation journalEntriesDelete
*
- * Delete Invoice
+ * Delete Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -12940,18 +18166,18 @@ public function invoicesAllRequest($raw = false, $x_apideck_consumer_id = null,
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\DeleteInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\DeleteJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoicesDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- list($response) = $this->invoicesDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ list($response) = $this->journalEntriesDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $response;
}
/**
- * Operation invoicesDeleteWithHttpInfo
+ * Operation journalEntriesDeleteWithHttpInfo
*
- * Delete Invoice
+ * Delete Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -12961,11 +18187,11 @@ public function invoicesDelete($id, $x_apideck_consumer_id = null, $x_apideck_ap
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\DeleteInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\DeleteJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoicesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $request = $this->invoicesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $request = $this->journalEntriesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
try {
$options = $this->createHttpClientOption();
@@ -13004,14 +18230,14 @@ public function invoicesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\DeleteInvoiceResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\DeleteJournalEntryResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteInvoiceResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteJournalEntryResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -13089,7 +18315,7 @@ public function invoicesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $
];
}
- $returnType = '\Apideck\Client\Model\DeleteInvoiceResponse';
+ $returnType = '\Apideck\Client\Model\DeleteJournalEntryResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -13107,7 +18333,7 @@ public function invoicesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\DeleteInvoiceResponse',
+ '\Apideck\Client\Model\DeleteJournalEntryResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -13166,9 +18392,9 @@ public function invoicesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $
}
/**
- * Operation invoicesDeleteAsync
+ * Operation journalEntriesDeleteAsync
*
- * Delete Invoice
+ * Delete Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -13179,9 +18405,9 @@ public function invoicesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- return $this->invoicesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ return $this->journalEntriesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
->then(
function ($response) {
return $response[0];
@@ -13190,9 +18416,9 @@ function ($response) {
}
/**
- * Operation invoicesDeleteAsyncWithHttpInfo
+ * Operation journalEntriesDeleteAsyncWithHttpInfo
*
- * Delete Invoice
+ * Delete Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -13203,10 +18429,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $returnType = '\Apideck\Client\Model\DeleteInvoiceResponse';
- $request = $this->invoicesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $returnType = '\Apideck\Client\Model\DeleteJournalEntryResponse';
+ $request = $this->journalEntriesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -13242,7 +18468,7 @@ function ($exception) {
}
/**
- * Create request for operation 'invoicesDelete'
+ * Create request for operation 'journalEntriesDelete'
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -13253,16 +18479,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoicesDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling invoicesDelete'
+ 'Missing the required parameter $id when calling journalEntriesDelete'
);
}
- $resourcePath = '/accounting/invoices/{id}';
+ $resourcePath = '/accounting/journal-entries/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -13396,9 +18622,9 @@ public function invoicesDeleteRequest($id, $x_apideck_consumer_id = null, $x_api
}
/**
- * Operation invoicesOne
+ * Operation journalEntriesOne
*
- * Get Invoice
+ * Get Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -13409,18 +18635,18 @@ public function invoicesDeleteRequest($id, $x_apideck_consumer_id = null, $x_api
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\GetJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoicesOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function journalEntriesOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- list($response) = $this->invoicesOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ list($response) = $this->journalEntriesOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $response;
}
/**
- * Operation invoicesOneWithHttpInfo
+ * Operation journalEntriesOneWithHttpInfo
*
- * Get Invoice
+ * Get Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -13431,11 +18657,11 @@ public function invoicesOne($id, $x_apideck_consumer_id = null, $x_apideck_app_i
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\GetJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoicesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function journalEntriesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $request = $this->invoicesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $request = $this->journalEntriesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
try {
$options = $this->createHttpClientOption();
@@ -13474,14 +18700,14 @@ public function invoicesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_a
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetInvoiceResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\GetJournalEntryResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetInvoiceResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetJournalEntryResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -13559,7 +18785,7 @@ public function invoicesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_a
];
}
- $returnType = '\Apideck\Client\Model\GetInvoiceResponse';
+ $returnType = '\Apideck\Client\Model\GetJournalEntryResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -13577,7 +18803,7 @@ public function invoicesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_a
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetInvoiceResponse',
+ '\Apideck\Client\Model\GetJournalEntryResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -13636,9 +18862,9 @@ public function invoicesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_a
}
/**
- * Operation invoicesOneAsync
+ * Operation journalEntriesOneAsync
*
- * Get Invoice
+ * Get Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -13650,9 +18876,9 @@ public function invoicesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_a
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function journalEntriesOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- return $this->invoicesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
+ return $this->journalEntriesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
->then(
function ($response) {
return $response[0];
@@ -13661,9 +18887,9 @@ function ($response) {
}
/**
- * Operation invoicesOneAsyncWithHttpInfo
+ * Operation journalEntriesOneAsyncWithHttpInfo
*
- * Get Invoice
+ * Get Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -13675,10 +18901,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function journalEntriesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $returnType = '\Apideck\Client\Model\GetInvoiceResponse';
- $request = $this->invoicesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $returnType = '\Apideck\Client\Model\GetJournalEntryResponse';
+ $request = $this->journalEntriesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -13714,7 +18940,7 @@ function ($exception) {
}
/**
- * Create request for operation 'invoicesOne'
+ * Create request for operation 'journalEntriesOne'
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -13726,16 +18952,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoicesOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function journalEntriesOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling invoicesOne'
+ 'Missing the required parameter $id when calling journalEntriesOne'
);
}
- $resourcePath = '/accounting/invoices/{id}';
+ $resourcePath = '/accounting/journal-entries/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -13909,12 +19135,12 @@ public function invoicesOneRequest($id, $x_apideck_consumer_id = null, $x_apidec
}
/**
- * Operation invoicesUpdate
+ * Operation journalEntriesUpdate
*
- * Update Invoice
+ * Update Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\Invoice $invoice invoice (required)
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry journal_entry (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -13922,21 +19148,21 @@ public function invoicesOneRequest($id, $x_apideck_consumer_id = null, $x_apidec
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\UpdateInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\UpdateJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function invoicesUpdate($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesUpdate($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- list($response) = $this->invoicesUpdateWithHttpInfo($id, $invoice, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ list($response) = $this->journalEntriesUpdateWithHttpInfo($id, $journal_entry, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $response;
}
/**
- * Operation invoicesUpdateWithHttpInfo
+ * Operation journalEntriesUpdateWithHttpInfo
*
- * Update Invoice
+ * Update Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -13944,11 +19170,11 @@ public function invoicesUpdate($id, $invoice, $x_apideck_consumer_id = null, $x_
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\UpdateInvoiceResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\UpdateJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function invoicesUpdateWithHttpInfo($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesUpdateWithHttpInfo($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $request = $this->invoicesUpdateRequest($id, $invoice, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $request = $this->journalEntriesUpdateRequest($id, $journal_entry, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
try {
$options = $this->createHttpClientOption();
@@ -13987,14 +19213,14 @@ public function invoicesUpdateWithHttpInfo($id, $invoice, $x_apideck_consumer_id
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\UpdateInvoiceResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\UpdateJournalEntryResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateInvoiceResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateJournalEntryResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -14072,7 +19298,7 @@ public function invoicesUpdateWithHttpInfo($id, $invoice, $x_apideck_consumer_id
];
}
- $returnType = '\Apideck\Client\Model\UpdateInvoiceResponse';
+ $returnType = '\Apideck\Client\Model\UpdateJournalEntryResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -14090,7 +19316,7 @@ public function invoicesUpdateWithHttpInfo($id, $invoice, $x_apideck_consumer_id
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\UpdateInvoiceResponse',
+ '\Apideck\Client\Model\UpdateJournalEntryResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -14149,12 +19375,12 @@ public function invoicesUpdateWithHttpInfo($id, $invoice, $x_apideck_consumer_id
}
/**
- * Operation invoicesUpdateAsync
+ * Operation journalEntriesUpdateAsync
*
- * Update Invoice
+ * Update Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -14163,9 +19389,9 @@ public function invoicesUpdateWithHttpInfo($id, $invoice, $x_apideck_consumer_id
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesUpdateAsync($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesUpdateAsync($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- return $this->invoicesUpdateAsyncWithHttpInfo($id, $invoice, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ return $this->journalEntriesUpdateAsyncWithHttpInfo($id, $journal_entry, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
->then(
function ($response) {
return $response[0];
@@ -14174,12 +19400,12 @@ function ($response) {
}
/**
- * Operation invoicesUpdateAsyncWithHttpInfo
+ * Operation journalEntriesUpdateAsyncWithHttpInfo
*
- * Update Invoice
+ * Update Journal Entry
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -14188,10 +19414,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function invoicesUpdateAsyncWithHttpInfo($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesUpdateAsyncWithHttpInfo($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $returnType = '\Apideck\Client\Model\UpdateInvoiceResponse';
- $request = $this->invoicesUpdateRequest($id, $invoice, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $returnType = '\Apideck\Client\Model\UpdateJournalEntryResponse';
+ $request = $this->journalEntriesUpdateRequest($id, $journal_entry, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -14227,10 +19453,10 @@ function ($exception) {
}
/**
- * Create request for operation 'invoicesUpdate'
+ * Create request for operation 'journalEntriesUpdate'
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\Invoice $invoice (required)
+ * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -14239,22 +19465,22 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function invoicesUpdateRequest($id, $invoice, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function journalEntriesUpdateRequest($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling invoicesUpdate'
+ 'Missing the required parameter $id when calling journalEntriesUpdate'
);
}
- // verify the required parameter 'invoice' is set
- if ($invoice === null || (is_array($invoice) && count($invoice) === 0)) {
+ // verify the required parameter 'journal_entry' is set
+ if ($journal_entry === null || (is_array($journal_entry) && count($journal_entry) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $invoice when calling invoicesUpdate'
+ 'Missing the required parameter $journal_entry when calling journalEntriesUpdate'
);
}
- $resourcePath = '/accounting/invoices/{id}';
+ $resourcePath = '/accounting/journal-entries/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -14337,11 +19563,11 @@ public function invoicesUpdateRequest($id, $invoice, $x_apideck_consumer_id = nu
}
// for model (json/xml)
- if (isset($invoice)) {
+ if (isset($journal_entry)) {
if ($headers['Content-Type'] === 'application/json') {
- $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($invoice));
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($journal_entry));
} else {
- $httpBody = $invoice;
+ $httpBody = $journal_entry;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
@@ -14394,11 +19620,11 @@ public function invoicesUpdateRequest($id, $invoice, $x_apideck_consumer_id = nu
}
/**
- * Operation journalEntriesAdd
+ * Operation ledgerAccountsAdd
*
- * Create Journal Entry
+ * Create Ledger Account
*
- * @param \Apideck\Client\Model\JournalEntry $journal_entry journal_entry (required)
+ * @param array $request_body request_body (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -14406,20 +19632,20 @@ public function invoicesUpdateRequest($id, $invoice, $x_apideck_consumer_id = nu
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\CreateJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\CreateLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function journalEntriesAdd($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function ledgerAccountsAdd($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- list($response) = $this->journalEntriesAddWithHttpInfo($journal_entry, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ list($response) = $this->ledgerAccountsAddWithHttpInfo($request_body, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
return $response;
}
/**
- * Operation journalEntriesAddWithHttpInfo
+ * Operation ledgerAccountsAddWithHttpInfo
*
- * Create Journal Entry
+ * Create Ledger Account
*
- * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
+ * @param array $request_body (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -14427,11 +19653,11 @@ public function journalEntriesAdd($journal_entry, $raw = false, $x_apideck_consu
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\CreateJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\CreateLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function journalEntriesAddWithHttpInfo($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function ledgerAccountsAddWithHttpInfo($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- $request = $this->journalEntriesAddRequest($journal_entry, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ $request = $this->ledgerAccountsAddRequest($request_body, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
try {
$options = $this->createHttpClientOption();
@@ -14470,14 +19696,14 @@ public function journalEntriesAddWithHttpInfo($journal_entry, $raw = false, $x_a
switch($statusCode) {
case 201:
- if ('\Apideck\Client\Model\CreateJournalEntryResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\CreateLedgerAccountResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateJournalEntryResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateLedgerAccountResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -14555,7 +19781,7 @@ public function journalEntriesAddWithHttpInfo($journal_entry, $raw = false, $x_a
];
}
- $returnType = '\Apideck\Client\Model\CreateJournalEntryResponse';
+ $returnType = '\Apideck\Client\Model\CreateLedgerAccountResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -14573,7 +19799,7 @@ public function journalEntriesAddWithHttpInfo($journal_entry, $raw = false, $x_a
case 201:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\CreateJournalEntryResponse',
+ '\Apideck\Client\Model\CreateLedgerAccountResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -14632,11 +19858,11 @@ public function journalEntriesAddWithHttpInfo($journal_entry, $raw = false, $x_a
}
/**
- * Operation journalEntriesAddAsync
+ * Operation ledgerAccountsAddAsync
*
- * Create Journal Entry
+ * Create Ledger Account
*
- * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
+ * @param array $request_body (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -14645,9 +19871,9 @@ public function journalEntriesAddWithHttpInfo($journal_entry, $raw = false, $x_a
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesAddAsync($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function ledgerAccountsAddAsync($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- return $this->journalEntriesAddAsyncWithHttpInfo($journal_entry, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
+ return $this->ledgerAccountsAddAsyncWithHttpInfo($request_body, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
->then(
function ($response) {
return $response[0];
@@ -14656,11 +19882,11 @@ function ($response) {
}
/**
- * Operation journalEntriesAddAsyncWithHttpInfo
+ * Operation ledgerAccountsAddAsyncWithHttpInfo
*
- * Create Journal Entry
+ * Create Ledger Account
*
- * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
+ * @param array $request_body (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -14669,10 +19895,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesAddAsyncWithHttpInfo($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function ledgerAccountsAddAsyncWithHttpInfo($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- $returnType = '\Apideck\Client\Model\CreateJournalEntryResponse';
- $request = $this->journalEntriesAddRequest($journal_entry, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ $returnType = '\Apideck\Client\Model\CreateLedgerAccountResponse';
+ $request = $this->ledgerAccountsAddRequest($request_body, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -14708,9 +19934,9 @@ function ($exception) {
}
/**
- * Create request for operation 'journalEntriesAdd'
+ * Create request for operation 'ledgerAccountsAdd'
*
- * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
+ * @param array $request_body (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -14719,16 +19945,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function journalEntriesAddRequest($journal_entry, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function ledgerAccountsAddRequest($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- // verify the required parameter 'journal_entry' is set
- if ($journal_entry === null || (is_array($journal_entry) && count($journal_entry) === 0)) {
+ // verify the required parameter 'request_body' is set
+ if ($request_body === null || (is_array($request_body) && count($request_body) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $journal_entry when calling journalEntriesAdd'
+ 'Missing the required parameter $request_body when calling ledgerAccountsAdd'
);
}
- $resourcePath = '/accounting/journal-entries';
+ $resourcePath = '/accounting/ledger-accounts';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -14803,11 +20029,11 @@ public function journalEntriesAddRequest($journal_entry, $raw = false, $x_apidec
}
// for model (json/xml)
- if (isset($journal_entry)) {
+ if (isset($request_body)) {
if ($headers['Content-Type'] === 'application/json') {
- $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($journal_entry));
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($request_body));
} else {
- $httpBody = $journal_entry;
+ $httpBody = $request_body;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
@@ -14860,9 +20086,9 @@ public function journalEntriesAddRequest($journal_entry, $raw = false, $x_apidec
}
/**
- * Operation journalEntriesAll
+ * Operation ledgerAccountsAll
*
- * List Journal Entries
+ * List Ledger Accounts
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -14870,25 +20096,25 @@ public function journalEntriesAddRequest($journal_entry, $raw = false, $x_apidec
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetJournalEntriesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\GetLedgerAccountsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function journalEntriesAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function ledgerAccountsAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
- list($response) = $this->journalEntriesAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ list($response) = $this->ledgerAccountsAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
return $response;
}
/**
- * Operation journalEntriesAllWithHttpInfo
+ * Operation ledgerAccountsAllWithHttpInfo
*
- * List Journal Entries
+ * List Ledger Accounts
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -14896,18 +20122,18 @@ public function journalEntriesAll($raw = false, $x_apideck_consumer_id = null, $
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetJournalEntriesResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\GetLedgerAccountsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function journalEntriesAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function ledgerAccountsAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
- $request = $this->journalEntriesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ $request = $this->ledgerAccountsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
try {
$options = $this->createHttpClientOption();
@@ -14946,14 +20172,14 @@ public function journalEntriesAllWithHttpInfo($raw = false, $x_apideck_consumer_
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetJournalEntriesResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\GetLedgerAccountsResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetJournalEntriesResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetLedgerAccountsResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -15031,7 +20257,7 @@ public function journalEntriesAllWithHttpInfo($raw = false, $x_apideck_consumer_
];
}
- $returnType = '\Apideck\Client\Model\GetJournalEntriesResponse';
+ $returnType = '\Apideck\Client\Model\GetLedgerAccountsResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -15049,7 +20275,7 @@ public function journalEntriesAllWithHttpInfo($raw = false, $x_apideck_consumer_
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetJournalEntriesResponse',
+ '\Apideck\Client\Model\GetLedgerAccountsResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -15108,9 +20334,9 @@ public function journalEntriesAllWithHttpInfo($raw = false, $x_apideck_consumer_
}
/**
- * Operation journalEntriesAllAsync
+ * Operation ledgerAccountsAllAsync
*
- * List Journal Entries
+ * List Ledger Accounts
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -15118,17 +20344,17 @@ public function journalEntriesAllWithHttpInfo($raw = false, $x_apideck_consumer_
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function ledgerAccountsAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
- return $this->journalEntriesAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields)
+ return $this->ledgerAccountsAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields)
->then(
function ($response) {
return $response[0];
@@ -15137,9 +20363,9 @@ function ($response) {
}
/**
- * Operation journalEntriesAllAsyncWithHttpInfo
+ * Operation ledgerAccountsAllAsyncWithHttpInfo
*
- * List Journal Entries
+ * List Ledger Accounts
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -15147,18 +20373,18 @@ function ($response) {
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function ledgerAccountsAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
- $returnType = '\Apideck\Client\Model\GetJournalEntriesResponse';
- $request = $this->journalEntriesAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ $returnType = '\Apideck\Client\Model\GetLedgerAccountsResponse';
+ $request = $this->ledgerAccountsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -15194,7 +20420,7 @@ function ($exception) {
}
/**
- * Create request for operation 'journalEntriesAll'
+ * Create request for operation 'ledgerAccountsAll'
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -15202,25 +20428,25 @@ function ($exception) {
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\JournalEntriesFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\JournalEntriesSort $sort Apply sorting (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
+ * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
* @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function journalEntriesAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function ledgerAccountsAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
{
if ($limit !== null && $limit > 200) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.journalEntriesAll, must be smaller than or equal to 200.');
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.ledgerAccountsAll, must be smaller than or equal to 200.');
}
if ($limit !== null && $limit < 1) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.journalEntriesAll, must be bigger than or equal to 1.');
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.ledgerAccountsAll, must be bigger than or equal to 1.');
}
- $resourcePath = '/accounting/journal-entries';
+ $resourcePath = '/accounting/ledger-accounts';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -15586,9 +20812,9 @@ public function journalEntriesAllRequest($raw = false, $x_apideck_consumer_id =
}
/**
- * Operation journalEntriesDelete
+ * Operation ledgerAccountsDelete
*
- * Delete Journal Entry
+ * Delete Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -15598,18 +20824,18 @@ public function journalEntriesAllRequest($raw = false, $x_apideck_consumer_id =
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\DeleteJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\DeleteLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function journalEntriesDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- list($response) = $this->journalEntriesDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ list($response) = $this->ledgerAccountsDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $response;
}
/**
- * Operation journalEntriesDeleteWithHttpInfo
+ * Operation ledgerAccountsDeleteWithHttpInfo
*
- * Delete Journal Entry
+ * Delete Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -15619,11 +20845,11 @@ public function journalEntriesDelete($id, $x_apideck_consumer_id = null, $x_apid
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\DeleteJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\DeleteLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function journalEntriesDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $request = $this->journalEntriesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $request = $this->ledgerAccountsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
try {
$options = $this->createHttpClientOption();
@@ -15662,14 +20888,14 @@ public function journalEntriesDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\DeleteJournalEntryResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\DeleteLedgerAccountResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteJournalEntryResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteLedgerAccountResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -15747,7 +20973,7 @@ public function journalEntriesDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
];
}
- $returnType = '\Apideck\Client\Model\DeleteJournalEntryResponse';
+ $returnType = '\Apideck\Client\Model\DeleteLedgerAccountResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -15765,7 +20991,7 @@ public function journalEntriesDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\DeleteJournalEntryResponse',
+ '\Apideck\Client\Model\DeleteLedgerAccountResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -15824,9 +21050,9 @@ public function journalEntriesDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
}
/**
- * Operation journalEntriesDeleteAsync
+ * Operation ledgerAccountsDeleteAsync
*
- * Delete Journal Entry
+ * Delete Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -15837,9 +21063,9 @@ public function journalEntriesDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- return $this->journalEntriesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ return $this->ledgerAccountsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
->then(
function ($response) {
return $response[0];
@@ -15848,9 +21074,9 @@ function ($response) {
}
/**
- * Operation journalEntriesDeleteAsyncWithHttpInfo
+ * Operation ledgerAccountsDeleteAsyncWithHttpInfo
*
- * Delete Journal Entry
+ * Delete Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -15861,10 +21087,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $returnType = '\Apideck\Client\Model\DeleteJournalEntryResponse';
- $request = $this->journalEntriesDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $returnType = '\Apideck\Client\Model\DeleteLedgerAccountResponse';
+ $request = $this->ledgerAccountsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -15900,7 +21126,7 @@ function ($exception) {
}
/**
- * Create request for operation 'journalEntriesDelete'
+ * Create request for operation 'ledgerAccountsDelete'
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -15911,16 +21137,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function journalEntriesDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling journalEntriesDelete'
+ 'Missing the required parameter $id when calling ledgerAccountsDelete'
);
}
- $resourcePath = '/accounting/journal-entries/{id}';
+ $resourcePath = '/accounting/ledger-accounts/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -16054,9 +21280,9 @@ public function journalEntriesDeleteRequest($id, $x_apideck_consumer_id = null,
}
/**
- * Operation journalEntriesOne
+ * Operation ledgerAccountsOne
*
- * Get Journal Entry
+ * Get Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -16067,18 +21293,18 @@ public function journalEntriesDeleteRequest($id, $x_apideck_consumer_id = null,
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\GetLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function journalEntriesOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function ledgerAccountsOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- list($response) = $this->journalEntriesOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ list($response) = $this->ledgerAccountsOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $response;
}
/**
- * Operation journalEntriesOneWithHttpInfo
+ * Operation ledgerAccountsOneWithHttpInfo
*
- * Get Journal Entry
+ * Get Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -16089,11 +21315,11 @@ public function journalEntriesOne($id, $x_apideck_consumer_id = null, $x_apideck
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\GetLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function journalEntriesOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function ledgerAccountsOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $request = $this->journalEntriesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $request = $this->ledgerAccountsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
try {
$options = $this->createHttpClientOption();
@@ -16132,14 +21358,14 @@ public function journalEntriesOneWithHttpInfo($id, $x_apideck_consumer_id = null
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetJournalEntryResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\GetLedgerAccountResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetJournalEntryResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetLedgerAccountResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -16217,7 +21443,7 @@ public function journalEntriesOneWithHttpInfo($id, $x_apideck_consumer_id = null
];
}
- $returnType = '\Apideck\Client\Model\GetJournalEntryResponse';
+ $returnType = '\Apideck\Client\Model\GetLedgerAccountResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -16235,7 +21461,7 @@ public function journalEntriesOneWithHttpInfo($id, $x_apideck_consumer_id = null
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetJournalEntryResponse',
+ '\Apideck\Client\Model\GetLedgerAccountResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -16294,9 +21520,9 @@ public function journalEntriesOneWithHttpInfo($id, $x_apideck_consumer_id = null
}
/**
- * Operation journalEntriesOneAsync
+ * Operation ledgerAccountsOneAsync
*
- * Get Journal Entry
+ * Get Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -16308,9 +21534,9 @@ public function journalEntriesOneWithHttpInfo($id, $x_apideck_consumer_id = null
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function ledgerAccountsOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- return $this->journalEntriesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
+ return $this->ledgerAccountsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
->then(
function ($response) {
return $response[0];
@@ -16319,9 +21545,9 @@ function ($response) {
}
/**
- * Operation journalEntriesOneAsyncWithHttpInfo
+ * Operation ledgerAccountsOneAsyncWithHttpInfo
*
- * Get Journal Entry
+ * Get Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -16333,10 +21559,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function ledgerAccountsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $returnType = '\Apideck\Client\Model\GetJournalEntryResponse';
- $request = $this->journalEntriesOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $returnType = '\Apideck\Client\Model\GetLedgerAccountResponse';
+ $request = $this->ledgerAccountsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -16372,7 +21598,7 @@ function ($exception) {
}
/**
- * Create request for operation 'journalEntriesOne'
+ * Create request for operation 'ledgerAccountsOne'
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -16384,16 +21610,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function journalEntriesOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function ledgerAccountsOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling journalEntriesOne'
+ 'Missing the required parameter $id when calling ledgerAccountsOne'
);
}
- $resourcePath = '/accounting/journal-entries/{id}';
+ $resourcePath = '/accounting/ledger-accounts/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -16567,12 +21793,12 @@ public function journalEntriesOneRequest($id, $x_apideck_consumer_id = null, $x_
}
/**
- * Operation journalEntriesUpdate
+ * Operation ledgerAccountsUpdate
*
- * Update Journal Entry
+ * Update Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\JournalEntry $journal_entry journal_entry (required)
+ * @param array $request_body request_body (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -16580,21 +21806,21 @@ public function journalEntriesOneRequest($id, $x_apideck_consumer_id = null, $x_
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\UpdateJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\UpdateLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function journalEntriesUpdate($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsUpdate($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- list($response) = $this->journalEntriesUpdateWithHttpInfo($id, $journal_entry, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ list($response) = $this->ledgerAccountsUpdateWithHttpInfo($id, $request_body, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $response;
}
/**
- * Operation journalEntriesUpdateWithHttpInfo
+ * Operation ledgerAccountsUpdateWithHttpInfo
*
- * Update Journal Entry
+ * Update Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
+ * @param array $request_body (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -16602,11 +21828,11 @@ public function journalEntriesUpdate($id, $journal_entry, $x_apideck_consumer_id
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\UpdateJournalEntryResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\UpdateLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function journalEntriesUpdateWithHttpInfo($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsUpdateWithHttpInfo($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $request = $this->journalEntriesUpdateRequest($id, $journal_entry, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $request = $this->ledgerAccountsUpdateRequest($id, $request_body, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
try {
$options = $this->createHttpClientOption();
@@ -16645,14 +21871,14 @@ public function journalEntriesUpdateWithHttpInfo($id, $journal_entry, $x_apideck
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\UpdateJournalEntryResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\UpdateLedgerAccountResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateJournalEntryResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateLedgerAccountResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -16730,7 +21956,7 @@ public function journalEntriesUpdateWithHttpInfo($id, $journal_entry, $x_apideck
];
}
- $returnType = '\Apideck\Client\Model\UpdateJournalEntryResponse';
+ $returnType = '\Apideck\Client\Model\UpdateLedgerAccountResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -16748,7 +21974,7 @@ public function journalEntriesUpdateWithHttpInfo($id, $journal_entry, $x_apideck
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\UpdateJournalEntryResponse',
+ '\Apideck\Client\Model\UpdateLedgerAccountResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -16807,12 +22033,12 @@ public function journalEntriesUpdateWithHttpInfo($id, $journal_entry, $x_apideck
}
/**
- * Operation journalEntriesUpdateAsync
+ * Operation ledgerAccountsUpdateAsync
*
- * Update Journal Entry
+ * Update Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
+ * @param array $request_body (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -16821,9 +22047,9 @@ public function journalEntriesUpdateWithHttpInfo($id, $journal_entry, $x_apideck
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesUpdateAsync($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsUpdateAsync($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- return $this->journalEntriesUpdateAsyncWithHttpInfo($id, $journal_entry, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ return $this->ledgerAccountsUpdateAsyncWithHttpInfo($id, $request_body, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
->then(
function ($response) {
return $response[0];
@@ -16832,12 +22058,12 @@ function ($response) {
}
/**
- * Operation journalEntriesUpdateAsyncWithHttpInfo
+ * Operation ledgerAccountsUpdateAsyncWithHttpInfo
*
- * Update Journal Entry
+ * Update Ledger Account
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
+ * @param array $request_body (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -16846,10 +22072,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function journalEntriesUpdateAsyncWithHttpInfo($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsUpdateAsyncWithHttpInfo($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $returnType = '\Apideck\Client\Model\UpdateJournalEntryResponse';
- $request = $this->journalEntriesUpdateRequest($id, $journal_entry, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $returnType = '\Apideck\Client\Model\UpdateLedgerAccountResponse';
+ $request = $this->ledgerAccountsUpdateRequest($id, $request_body, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -16885,10 +22111,10 @@ function ($exception) {
}
/**
- * Create request for operation 'journalEntriesUpdate'
+ * Create request for operation 'ledgerAccountsUpdate'
*
* @param string $id ID of the record you are acting upon. (required)
- * @param \Apideck\Client\Model\JournalEntry $journal_entry (required)
+ * @param array $request_body (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -16897,22 +22123,22 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function journalEntriesUpdateRequest($id, $journal_entry, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function ledgerAccountsUpdateRequest($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling journalEntriesUpdate'
+ 'Missing the required parameter $id when calling ledgerAccountsUpdate'
);
}
- // verify the required parameter 'journal_entry' is set
- if ($journal_entry === null || (is_array($journal_entry) && count($journal_entry) === 0)) {
+ // verify the required parameter 'request_body' is set
+ if ($request_body === null || (is_array($request_body) && count($request_body) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $journal_entry when calling journalEntriesUpdate'
+ 'Missing the required parameter $request_body when calling ledgerAccountsUpdate'
);
}
- $resourcePath = '/accounting/journal-entries/{id}';
+ $resourcePath = '/accounting/ledger-accounts/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -16995,11 +22221,11 @@ public function journalEntriesUpdateRequest($id, $journal_entry, $x_apideck_cons
}
// for model (json/xml)
- if (isset($journal_entry)) {
+ if (isset($request_body)) {
if ($headers['Content-Type'] === 'application/json') {
- $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($journal_entry));
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($request_body));
} else {
- $httpBody = $journal_entry;
+ $httpBody = $request_body;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
@@ -17052,11 +22278,11 @@ public function journalEntriesUpdateRequest($id, $journal_entry, $x_apideck_cons
}
/**
- * Operation ledgerAccountsAdd
+ * Operation locationsAdd
*
- * Create Ledger Account
+ * Create Location
*
- * @param array $request_body request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location accounting_location (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -17064,20 +22290,20 @@ public function journalEntriesUpdateRequest($id, $journal_entry, $x_apideck_cons
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\CreateLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\CreateAccountingLocationResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function ledgerAccountsAdd($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function locationsAdd($accounting_location, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- list($response) = $this->ledgerAccountsAddWithHttpInfo($request_body, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ list($response) = $this->locationsAddWithHttpInfo($accounting_location, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
return $response;
}
/**
- * Operation ledgerAccountsAddWithHttpInfo
+ * Operation locationsAddWithHttpInfo
*
- * Create Ledger Account
+ * Create Location
*
- * @param array $request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -17085,11 +22311,11 @@ public function ledgerAccountsAdd($request_body, $raw = false, $x_apideck_consum
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\CreateLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\CreateAccountingLocationResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function ledgerAccountsAddWithHttpInfo($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function locationsAddWithHttpInfo($accounting_location, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- $request = $this->ledgerAccountsAddRequest($request_body, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ $request = $this->locationsAddRequest($accounting_location, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
try {
$options = $this->createHttpClientOption();
@@ -17128,14 +22354,14 @@ public function ledgerAccountsAddWithHttpInfo($request_body, $raw = false, $x_ap
switch($statusCode) {
case 201:
- if ('\Apideck\Client\Model\CreateLedgerAccountResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\CreateAccountingLocationResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateLedgerAccountResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\CreateAccountingLocationResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -17213,7 +22439,7 @@ public function ledgerAccountsAddWithHttpInfo($request_body, $raw = false, $x_ap
];
}
- $returnType = '\Apideck\Client\Model\CreateLedgerAccountResponse';
+ $returnType = '\Apideck\Client\Model\CreateAccountingLocationResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -17231,7 +22457,7 @@ public function ledgerAccountsAddWithHttpInfo($request_body, $raw = false, $x_ap
case 201:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\CreateLedgerAccountResponse',
+ '\Apideck\Client\Model\CreateAccountingLocationResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -17290,11 +22516,11 @@ public function ledgerAccountsAddWithHttpInfo($request_body, $raw = false, $x_ap
}
/**
- * Operation ledgerAccountsAddAsync
+ * Operation locationsAddAsync
*
- * Create Ledger Account
+ * Create Location
*
- * @param array $request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -17303,9 +22529,9 @@ public function ledgerAccountsAddWithHttpInfo($request_body, $raw = false, $x_ap
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsAddAsync($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function locationsAddAsync($accounting_location, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- return $this->ledgerAccountsAddAsyncWithHttpInfo($request_body, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
+ return $this->locationsAddAsyncWithHttpInfo($accounting_location, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id)
->then(
function ($response) {
return $response[0];
@@ -17314,11 +22540,11 @@ function ($response) {
}
/**
- * Operation ledgerAccountsAddAsyncWithHttpInfo
+ * Operation locationsAddAsyncWithHttpInfo
*
- * Create Ledger Account
+ * Create Location
*
- * @param array $request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -17327,10 +22553,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsAddAsyncWithHttpInfo($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function locationsAddAsyncWithHttpInfo($accounting_location, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- $returnType = '\Apideck\Client\Model\CreateLedgerAccountResponse';
- $request = $this->ledgerAccountsAddRequest($request_body, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
+ $returnType = '\Apideck\Client\Model\CreateAccountingLocationResponse';
+ $request = $this->locationsAddRequest($accounting_location, $raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -17366,9 +22592,9 @@ function ($exception) {
}
/**
- * Create request for operation 'ledgerAccountsAdd'
+ * Create request for operation 'locationsAdd'
*
- * @param array $request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location (required)
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
@@ -17377,16 +22603,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function ledgerAccountsAddRequest($request_body, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
+ public function locationsAddRequest($accounting_location, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)
{
- // verify the required parameter 'request_body' is set
- if ($request_body === null || (is_array($request_body) && count($request_body) === 0)) {
+ // verify the required parameter 'accounting_location' is set
+ if ($accounting_location === null || (is_array($accounting_location) && count($accounting_location) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $request_body when calling ledgerAccountsAdd'
+ 'Missing the required parameter $accounting_location when calling locationsAdd'
);
}
- $resourcePath = '/accounting/ledger-accounts';
+ $resourcePath = '/accounting/locations';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -17461,11 +22687,11 @@ public function ledgerAccountsAddRequest($request_body, $raw = false, $x_apideck
}
// for model (json/xml)
- if (isset($request_body)) {
+ if (isset($accounting_location)) {
if ($headers['Content-Type'] === 'application/json') {
- $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($request_body));
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($accounting_location));
} else {
- $httpBody = $request_body;
+ $httpBody = $accounting_location;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
@@ -17518,9 +22744,9 @@ public function ledgerAccountsAddRequest($request_body, $raw = false, $x_apideck
}
/**
- * Operation ledgerAccountsAll
+ * Operation locationsAll
*
- * List Ledger Accounts
+ * List Locations
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -17528,25 +22754,23 @@ public function ledgerAccountsAddRequest($request_body, $raw = false, $x_apideck
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingLocationsFilter $filter Apply filters (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetLedgerAccountsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\GetAccountingLocationsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function ledgerAccountsAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function locationsAll($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
- list($response) = $this->ledgerAccountsAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ list($response) = $this->locationsAllWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields, $filter);
return $response;
}
/**
- * Operation ledgerAccountsAllWithHttpInfo
+ * Operation locationsAllWithHttpInfo
*
- * List Ledger Accounts
+ * List Locations
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -17554,18 +22778,16 @@ public function ledgerAccountsAll($raw = false, $x_apideck_consumer_id = null, $
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingLocationsFilter $filter Apply filters (optional)
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetLedgerAccountsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\GetAccountingLocationsResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function ledgerAccountsAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function locationsAllWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
- $request = $this->ledgerAccountsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ $request = $this->locationsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields, $filter);
try {
$options = $this->createHttpClientOption();
@@ -17604,14 +22826,14 @@ public function ledgerAccountsAllWithHttpInfo($raw = false, $x_apideck_consumer_
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetLedgerAccountsResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\GetAccountingLocationsResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetLedgerAccountsResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetAccountingLocationsResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -17689,7 +22911,7 @@ public function ledgerAccountsAllWithHttpInfo($raw = false, $x_apideck_consumer_
];
}
- $returnType = '\Apideck\Client\Model\GetLedgerAccountsResponse';
+ $returnType = '\Apideck\Client\Model\GetAccountingLocationsResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -17707,7 +22929,7 @@ public function ledgerAccountsAllWithHttpInfo($raw = false, $x_apideck_consumer_
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetLedgerAccountsResponse',
+ '\Apideck\Client\Model\GetAccountingLocationsResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -17766,9 +22988,9 @@ public function ledgerAccountsAllWithHttpInfo($raw = false, $x_apideck_consumer_
}
/**
- * Operation ledgerAccountsAllAsync
+ * Operation locationsAllAsync
*
- * List Ledger Accounts
+ * List Locations
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -17776,17 +22998,15 @@ public function ledgerAccountsAllWithHttpInfo($raw = false, $x_apideck_consumer_
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingLocationsFilter $filter Apply filters (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function locationsAllAsync($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
- return $this->ledgerAccountsAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields)
+ return $this->locationsAllAsyncWithHttpInfo($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields, $filter)
->then(
function ($response) {
return $response[0];
@@ -17795,9 +23015,9 @@ function ($response) {
}
/**
- * Operation ledgerAccountsAllAsyncWithHttpInfo
+ * Operation locationsAllAsyncWithHttpInfo
*
- * List Ledger Accounts
+ * List Locations
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -17805,18 +23025,16 @@ function ($response) {
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingLocationsFilter $filter Apply filters (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function locationsAllAsyncWithHttpInfo($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
- $returnType = '\Apideck\Client\Model\GetLedgerAccountsResponse';
- $request = $this->ledgerAccountsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $filter, $sort, $pass_through, $fields);
+ $returnType = '\Apideck\Client\Model\GetAccountingLocationsResponse';
+ $request = $this->locationsAllRequest($raw, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $cursor, $limit, $fields, $filter);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -17852,7 +23070,7 @@ function ($exception) {
}
/**
- * Create request for operation 'ledgerAccountsAll'
+ * Create request for operation 'locationsAll'
*
* @param bool $raw Include raw response. Mostly used for debugging purposes (optional, default to false)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -17860,25 +23078,23 @@ function ($exception) {
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
* @param string $cursor Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. (optional)
* @param int $limit Number of results to return. Minimum 1, Maximum 200, Default 20 (optional, default to 20)
- * @param \Apideck\Client\Model\LedgerAccountsFilter $filter Apply filters (optional)
- * @param \Apideck\Client\Model\LedgerAccountsSort $sort Apply sorting (optional)
- * @param \Apideck\Client\Model\PassThroughQuery $pass_through Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads (optional)
* @param string $fields The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields \"name\", \"email\" and \"addresses.city\". If any other fields are available, they will be excluded. (optional)
+ * @param \Apideck\Client\Model\AccountingLocationsFilter $filter Apply filters (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function ledgerAccountsAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $filter = null, $sort = null, $pass_through = null, $fields = null)
+ public function locationsAllRequest($raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $cursor = null, $limit = 20, $fields = null, $filter = null)
{
if ($limit !== null && $limit > 200) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.ledgerAccountsAll, must be smaller than or equal to 200.');
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.locationsAll, must be smaller than or equal to 200.');
}
if ($limit !== null && $limit < 1) {
- throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.ledgerAccountsAll, must be bigger than or equal to 1.');
+ throw new \InvalidArgumentException('invalid value for "$limit" when calling AccountingApi.locationsAll, must be bigger than or equal to 1.');
}
- $resourcePath = '/accounting/ledger-accounts';
+ $resourcePath = '/accounting/locations';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -18007,100 +23223,20 @@ public function ledgerAccountsAllRequest($raw = false, $x_apideck_consumer_id =
}
// query params
- if ('raw' === 'filter') {
- // Support for raw as true/false parameter
- if('form' === 'deepObject' && is_array($filter)) {
- foreach($filter as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['filter'] = $filter ? 'true' : 'false';
- }
- }
-
-
- if ($filter !== null && 'sort' === 'filter') {
- // Support for sort options
- $sort_data = $sort->jsonSerialize();
- foreach($sort_data as $key => $value) {
- $queryParams['sort['.$key.']'] = $value;
- }
- }
-
- if ($filter !== null && 'filter' === 'filter') {
- // Support for filter options
- $filter_data = $filter->jsonSerialize();
- foreach($filter_data as $key => $value) {
- $queryParams['filter['.$key.']'] = $value;
- }
- }
- if ($filter !== null && !('filter' === 'raw' || 'filter' === 'sort' || 'filter' === 'filter')) {
- if('form' === 'deepObject' && is_array($filter)) {
- foreach($filter as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['filter'] = $filter;
- }
- }
- // query params
-
- if ('raw' === 'sort') {
- // Support for raw as true/false parameter
- if('form' === 'deepObject' && is_array($sort)) {
- foreach($sort as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['sort'] = $sort ? 'true' : 'false';
- }
- }
-
-
- if ($sort !== null && 'sort' === 'sort') {
- // Support for sort options
- $sort_data = $sort->jsonSerialize();
- foreach($sort_data as $key => $value) {
- $queryParams['sort['.$key.']'] = $value;
- }
- }
-
- if ($sort !== null && 'filter' === 'sort') {
- // Support for filter options
- $filter_data = $filter->jsonSerialize();
- foreach($filter_data as $key => $value) {
- $queryParams['filter['.$key.']'] = $value;
- }
- }
- if ($sort !== null && !('sort' === 'raw' || 'sort' === 'sort' || 'sort' === 'filter')) {
- if('form' === 'deepObject' && is_array($sort)) {
- foreach($sort as $key => $value) {
- $queryParams[$key] = $value;
- }
- }
- else {
- $queryParams['sort'] = $sort;
- }
- }
- // query params
-
- if ('raw' === 'pass_through') {
+ if ('raw' === 'fields') {
// Support for raw as true/false parameter
- if('form' === 'deepObject' && is_array($pass_through)) {
- foreach($pass_through as $key => $value) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
- $queryParams['pass_through'] = $pass_through ? 'true' : 'false';
+ $queryParams['fields'] = $fields ? 'true' : 'false';
}
}
- if ($pass_through !== null && 'sort' === 'pass_through') {
+ if ($fields !== null && 'sort' === 'fields') {
// Support for sort options
$sort_data = $sort->jsonSerialize();
foreach($sort_data as $key => $value) {
@@ -18108,39 +23244,39 @@ public function ledgerAccountsAllRequest($raw = false, $x_apideck_consumer_id =
}
}
- if ($pass_through !== null && 'filter' === 'pass_through') {
+ if ($fields !== null && 'filter' === 'fields') {
// Support for filter options
$filter_data = $filter->jsonSerialize();
foreach($filter_data as $key => $value) {
$queryParams['filter['.$key.']'] = $value;
}
}
- if ($pass_through !== null && !('pass_through' === 'raw' || 'pass_through' === 'sort' || 'pass_through' === 'filter')) {
- if('form' === 'deepObject' && is_array($pass_through)) {
- foreach($pass_through as $key => $value) {
+ if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
+ if('form' === 'form' && is_array($fields)) {
+ foreach($fields as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
- $queryParams['pass_through'] = $pass_through;
+ $queryParams['fields'] = $fields;
}
}
// query params
- if ('raw' === 'fields') {
+ if ('raw' === 'filter') {
// Support for raw as true/false parameter
- if('form' === 'form' && is_array($fields)) {
- foreach($fields as $key => $value) {
+ if('form' === 'deepObject' && is_array($filter)) {
+ foreach($filter as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
- $queryParams['fields'] = $fields ? 'true' : 'false';
+ $queryParams['filter'] = $filter ? 'true' : 'false';
}
}
- if ($fields !== null && 'sort' === 'fields') {
+ if ($filter !== null && 'sort' === 'filter') {
// Support for sort options
$sort_data = $sort->jsonSerialize();
foreach($sort_data as $key => $value) {
@@ -18148,21 +23284,21 @@ public function ledgerAccountsAllRequest($raw = false, $x_apideck_consumer_id =
}
}
- if ($fields !== null && 'filter' === 'fields') {
+ if ($filter !== null && 'filter' === 'filter') {
// Support for filter options
$filter_data = $filter->jsonSerialize();
foreach($filter_data as $key => $value) {
$queryParams['filter['.$key.']'] = $value;
}
}
- if ($fields !== null && !('fields' === 'raw' || 'fields' === 'sort' || 'fields' === 'filter')) {
- if('form' === 'form' && is_array($fields)) {
- foreach($fields as $key => $value) {
+ if ($filter !== null && !('filter' === 'raw' || 'filter' === 'sort' || 'filter' === 'filter')) {
+ if('form' === 'deepObject' && is_array($filter)) {
+ foreach($filter as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
- $queryParams['fields'] = $fields;
+ $queryParams['filter'] = $filter;
}
}
@@ -18244,9 +23380,9 @@ public function ledgerAccountsAllRequest($raw = false, $x_apideck_consumer_id =
}
/**
- * Operation ledgerAccountsDelete
+ * Operation locationsDelete
*
- * Delete Ledger Account
+ * Delete Location
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -18256,18 +23392,18 @@ public function ledgerAccountsAllRequest($raw = false, $x_apideck_consumer_id =
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\DeleteLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\DeleteAccountingLocationResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function ledgerAccountsDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsDelete($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- list($response) = $this->ledgerAccountsDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ list($response) = $this->locationsDeleteWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $response;
}
/**
- * Operation ledgerAccountsDeleteWithHttpInfo
+ * Operation locationsDeleteWithHttpInfo
*
- * Delete Ledger Account
+ * Delete Location
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -18277,11 +23413,11 @@ public function ledgerAccountsDelete($id, $x_apideck_consumer_id = null, $x_apid
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\DeleteLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\DeleteAccountingLocationResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function ledgerAccountsDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsDeleteWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $request = $this->ledgerAccountsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $request = $this->locationsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
try {
$options = $this->createHttpClientOption();
@@ -18320,14 +23456,14 @@ public function ledgerAccountsDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\DeleteLedgerAccountResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\DeleteAccountingLocationResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteLedgerAccountResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\DeleteAccountingLocationResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -18405,7 +23541,7 @@ public function ledgerAccountsDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
];
}
- $returnType = '\Apideck\Client\Model\DeleteLedgerAccountResponse';
+ $returnType = '\Apideck\Client\Model\DeleteAccountingLocationResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -18423,7 +23559,7 @@ public function ledgerAccountsDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\DeleteLedgerAccountResponse',
+ '\Apideck\Client\Model\DeleteAccountingLocationResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -18482,9 +23618,9 @@ public function ledgerAccountsDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
}
/**
- * Operation ledgerAccountsDeleteAsync
+ * Operation locationsDeleteAsync
*
- * Delete Ledger Account
+ * Delete Location
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -18495,9 +23631,9 @@ public function ledgerAccountsDeleteWithHttpInfo($id, $x_apideck_consumer_id = n
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsDeleteAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- return $this->ledgerAccountsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ return $this->locationsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
->then(
function ($response) {
return $response[0];
@@ -18506,9 +23642,9 @@ function ($response) {
}
/**
- * Operation ledgerAccountsDeleteAsyncWithHttpInfo
+ * Operation locationsDeleteAsyncWithHttpInfo
*
- * Delete Ledger Account
+ * Delete Location
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -18519,10 +23655,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsDeleteAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $returnType = '\Apideck\Client\Model\DeleteLedgerAccountResponse';
- $request = $this->ledgerAccountsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $returnType = '\Apideck\Client\Model\DeleteAccountingLocationResponse';
+ $request = $this->locationsDeleteRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -18558,7 +23694,7 @@ function ($exception) {
}
/**
- * Create request for operation 'ledgerAccountsDelete'
+ * Create request for operation 'locationsDelete'
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -18569,16 +23705,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function ledgerAccountsDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsDeleteRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling ledgerAccountsDelete'
+ 'Missing the required parameter $id when calling locationsDelete'
);
}
- $resourcePath = '/accounting/ledger-accounts/{id}';
+ $resourcePath = '/accounting/locations/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -18712,9 +23848,9 @@ public function ledgerAccountsDeleteRequest($id, $x_apideck_consumer_id = null,
}
/**
- * Operation ledgerAccountsOne
+ * Operation locationsOne
*
- * Get Ledger Account
+ * Get Location
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -18725,18 +23861,18 @@ public function ledgerAccountsDeleteRequest($id, $x_apideck_consumer_id = null,
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\GetLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\GetAccountingLocationResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function ledgerAccountsOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function locationsOne($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- list($response) = $this->ledgerAccountsOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ list($response) = $this->locationsOneWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $response;
}
/**
- * Operation ledgerAccountsOneWithHttpInfo
+ * Operation locationsOneWithHttpInfo
*
- * Get Ledger Account
+ * Get Location
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -18747,11 +23883,11 @@ public function ledgerAccountsOne($id, $x_apideck_consumer_id = null, $x_apideck
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\GetLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\GetAccountingLocationResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function ledgerAccountsOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function locationsOneWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $request = $this->ledgerAccountsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $request = $this->locationsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
try {
$options = $this->createHttpClientOption();
@@ -18790,14 +23926,14 @@ public function ledgerAccountsOneWithHttpInfo($id, $x_apideck_consumer_id = null
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\GetLedgerAccountResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\GetAccountingLocationResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetLedgerAccountResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\GetAccountingLocationResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -18875,7 +24011,7 @@ public function ledgerAccountsOneWithHttpInfo($id, $x_apideck_consumer_id = null
];
}
- $returnType = '\Apideck\Client\Model\GetLedgerAccountResponse';
+ $returnType = '\Apideck\Client\Model\GetAccountingLocationResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -18893,7 +24029,7 @@ public function ledgerAccountsOneWithHttpInfo($id, $x_apideck_consumer_id = null
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\GetLedgerAccountResponse',
+ '\Apideck\Client\Model\GetAccountingLocationResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -18952,9 +24088,9 @@ public function ledgerAccountsOneWithHttpInfo($id, $x_apideck_consumer_id = null
}
/**
- * Operation ledgerAccountsOneAsync
+ * Operation locationsOneAsync
*
- * Get Ledger Account
+ * Get Location
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -18966,9 +24102,9 @@ public function ledgerAccountsOneWithHttpInfo($id, $x_apideck_consumer_id = null
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function locationsOneAsync($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- return $this->ledgerAccountsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
+ return $this->locationsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields)
->then(
function ($response) {
return $response[0];
@@ -18977,9 +24113,9 @@ function ($response) {
}
/**
- * Operation ledgerAccountsOneAsyncWithHttpInfo
+ * Operation locationsOneAsyncWithHttpInfo
*
- * Get Ledger Account
+ * Get Location
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -18991,10 +24127,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function locationsOneAsyncWithHttpInfo($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
- $returnType = '\Apideck\Client\Model\GetLedgerAccountResponse';
- $request = $this->ledgerAccountsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
+ $returnType = '\Apideck\Client\Model\GetAccountingLocationResponse';
+ $request = $this->locationsOneRequest($id, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw, $fields);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -19030,7 +24166,7 @@ function ($exception) {
}
/**
- * Create request for operation 'ledgerAccountsOne'
+ * Create request for operation 'locationsOne'
*
* @param string $id ID of the record you are acting upon. (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
@@ -19042,16 +24178,16 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function ledgerAccountsOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
+ public function locationsOneRequest($id, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false, $fields = null)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling ledgerAccountsOne'
+ 'Missing the required parameter $id when calling locationsOne'
);
}
- $resourcePath = '/accounting/ledger-accounts/{id}';
+ $resourcePath = '/accounting/locations/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -19225,12 +24361,12 @@ public function ledgerAccountsOneRequest($id, $x_apideck_consumer_id = null, $x_
}
/**
- * Operation ledgerAccountsUpdate
+ * Operation locationsUpdate
*
- * Update Ledger Account
+ * Update Location
*
* @param string $id ID of the record you are acting upon. (required)
- * @param array $request_body request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location accounting_location (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -19238,21 +24374,21 @@ public function ledgerAccountsOneRequest($id, $x_apideck_consumer_id = null, $x_
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return \Apideck\Client\Model\UpdateLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
+ * @return \Apideck\Client\Model\UpdateAccountingLocationResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse
*/
- public function ledgerAccountsUpdate($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsUpdate($id, $accounting_location, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- list($response) = $this->ledgerAccountsUpdateWithHttpInfo($id, $request_body, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ list($response) = $this->locationsUpdateWithHttpInfo($id, $accounting_location, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $response;
}
/**
- * Operation ledgerAccountsUpdateWithHttpInfo
+ * Operation locationsUpdateWithHttpInfo
*
- * Update Ledger Account
+ * Update Location
*
* @param string $id ID of the record you are acting upon. (required)
- * @param array $request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -19260,11 +24396,11 @@ public function ledgerAccountsUpdate($id, $request_body, $x_apideck_consumer_id
*
* @throws \Apideck\Client\ApiException on non-2xx response
* @throws \InvalidArgumentException
- * @return array of \Apideck\Client\Model\UpdateLedgerAccountResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
+ * @return array of \Apideck\Client\Model\UpdateAccountingLocationResponse|\Apideck\Client\Model\BadRequestResponse|\Apideck\Client\Model\UnauthorizedResponse|\Apideck\Client\Model\PaymentRequiredResponse|\Apideck\Client\Model\NotFoundResponse|\Apideck\Client\Model\UnprocessableResponse|\Apideck\Client\Model\UnexpectedErrorResponse, HTTP status code, HTTP response headers (array of strings)
*/
- public function ledgerAccountsUpdateWithHttpInfo($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsUpdateWithHttpInfo($id, $accounting_location, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $request = $this->ledgerAccountsUpdateRequest($id, $request_body, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $request = $this->locationsUpdateRequest($id, $accounting_location, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
try {
$options = $this->createHttpClientOption();
@@ -19303,14 +24439,14 @@ public function ledgerAccountsUpdateWithHttpInfo($id, $request_body, $x_apideck_
switch($statusCode) {
case 200:
- if ('\Apideck\Client\Model\UpdateLedgerAccountResponse' === '\SplFileObject') {
+ if ('\Apideck\Client\Model\UpdateAccountingLocationResponse' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
- ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateLedgerAccountResponse', []),
+ ObjectSerializer::deserialize($content, '\Apideck\Client\Model\UpdateAccountingLocationResponse', []),
$response->getStatusCode(),
$response->getHeaders()
];
@@ -19388,7 +24524,7 @@ public function ledgerAccountsUpdateWithHttpInfo($id, $request_body, $x_apideck_
];
}
- $returnType = '\Apideck\Client\Model\UpdateLedgerAccountResponse';
+ $returnType = '\Apideck\Client\Model\UpdateAccountingLocationResponse';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
@@ -19406,7 +24542,7 @@ public function ledgerAccountsUpdateWithHttpInfo($id, $request_body, $x_apideck_
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
- '\Apideck\Client\Model\UpdateLedgerAccountResponse',
+ '\Apideck\Client\Model\UpdateAccountingLocationResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
@@ -19465,12 +24601,12 @@ public function ledgerAccountsUpdateWithHttpInfo($id, $request_body, $x_apideck_
}
/**
- * Operation ledgerAccountsUpdateAsync
+ * Operation locationsUpdateAsync
*
- * Update Ledger Account
+ * Update Location
*
* @param string $id ID of the record you are acting upon. (required)
- * @param array $request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -19479,9 +24615,9 @@ public function ledgerAccountsUpdateWithHttpInfo($id, $request_body, $x_apideck_
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsUpdateAsync($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsUpdateAsync($id, $accounting_location, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- return $this->ledgerAccountsUpdateAsyncWithHttpInfo($id, $request_body, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
+ return $this->locationsUpdateAsyncWithHttpInfo($id, $accounting_location, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw)
->then(
function ($response) {
return $response[0];
@@ -19490,12 +24626,12 @@ function ($response) {
}
/**
- * Operation ledgerAccountsUpdateAsyncWithHttpInfo
+ * Operation locationsUpdateAsyncWithHttpInfo
*
- * Update Ledger Account
+ * Update Location
*
* @param string $id ID of the record you are acting upon. (required)
- * @param array $request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -19504,10 +24640,10 @@ function ($response) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
- public function ledgerAccountsUpdateAsyncWithHttpInfo($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsUpdateAsyncWithHttpInfo($id, $accounting_location, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
- $returnType = '\Apideck\Client\Model\UpdateLedgerAccountResponse';
- $request = $this->ledgerAccountsUpdateRequest($id, $request_body, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
+ $returnType = '\Apideck\Client\Model\UpdateAccountingLocationResponse';
+ $request = $this->locationsUpdateRequest($id, $accounting_location, $x_apideck_consumer_id, $x_apideck_app_id, $x_apideck_service_id, $raw);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
@@ -19543,10 +24679,10 @@ function ($exception) {
}
/**
- * Create request for operation 'ledgerAccountsUpdate'
+ * Create request for operation 'locationsUpdate'
*
* @param string $id ID of the record you are acting upon. (required)
- * @param array $request_body (required)
+ * @param \Apideck\Client\Model\AccountingLocation $accounting_location (required)
* @param string $x_apideck_consumer_id ID of the consumer which you want to get or push data from (optional)
* @param string $x_apideck_app_id The ID of your Unify application (optional)
* @param string $x_apideck_service_id Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. (optional)
@@ -19555,22 +24691,22 @@ function ($exception) {
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
- public function ledgerAccountsUpdateRequest($id, $request_body, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
+ public function locationsUpdateRequest($id, $accounting_location, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null, $raw = false)
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $id when calling ledgerAccountsUpdate'
+ 'Missing the required parameter $id when calling locationsUpdate'
);
}
- // verify the required parameter 'request_body' is set
- if ($request_body === null || (is_array($request_body) && count($request_body) === 0)) {
+ // verify the required parameter 'accounting_location' is set
+ if ($accounting_location === null || (is_array($accounting_location) && count($accounting_location) === 0)) {
throw new \InvalidArgumentException(
- 'Missing the required parameter $request_body when calling ledgerAccountsUpdate'
+ 'Missing the required parameter $accounting_location when calling locationsUpdate'
);
}
- $resourcePath = '/accounting/ledger-accounts/{id}';
+ $resourcePath = '/accounting/locations/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
@@ -19653,11 +24789,11 @@ public function ledgerAccountsUpdateRequest($id, $request_body, $x_apideck_consu
}
// for model (json/xml)
- if (isset($request_body)) {
+ if (isset($accounting_location)) {
if ($headers['Content-Type'] === 'application/json') {
- $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($request_body));
+ $httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($accounting_location));
} else {
- $httpBody = $request_body;
+ $httpBody = $accounting_location;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
diff --git a/src/gen/lib/Api/AtsApi.php b/src/gen/lib/Api/AtsApi.php
index 180465ba54..07cb88e845 100644
--- a/src/gen/lib/Api/AtsApi.php
+++ b/src/gen/lib/Api/AtsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/ConnectorApi.php b/src/gen/lib/Api/ConnectorApi.php
index 4440525fc8..bd4cf1c2b4 100644
--- a/src/gen/lib/Api/ConnectorApi.php
+++ b/src/gen/lib/Api/ConnectorApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/CrmApi.php b/src/gen/lib/Api/CrmApi.php
index 02db5ac521..93aa1b4fb8 100644
--- a/src/gen/lib/Api/CrmApi.php
+++ b/src/gen/lib/Api/CrmApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/EcommerceApi.php b/src/gen/lib/Api/EcommerceApi.php
index 431bd32575..d73397cf14 100644
--- a/src/gen/lib/Api/EcommerceApi.php
+++ b/src/gen/lib/Api/EcommerceApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/FileStorageApi.php b/src/gen/lib/Api/FileStorageApi.php
index 1a928f413d..ef0472836a 100644
--- a/src/gen/lib/Api/FileStorageApi.php
+++ b/src/gen/lib/Api/FileStorageApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/HrisApi.php b/src/gen/lib/Api/HrisApi.php
index 27b8ab87fd..0baf78294c 100644
--- a/src/gen/lib/Api/HrisApi.php
+++ b/src/gen/lib/Api/HrisApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/IssueTrackingApi.php b/src/gen/lib/Api/IssueTrackingApi.php
index 163bb6acc6..0ab1a354c1 100644
--- a/src/gen/lib/Api/IssueTrackingApi.php
+++ b/src/gen/lib/Api/IssueTrackingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/LeadApi.php b/src/gen/lib/Api/LeadApi.php
index a3c14eb403..a84dcb1cd4 100644
--- a/src/gen/lib/Api/LeadApi.php
+++ b/src/gen/lib/Api/LeadApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/PosApi.php b/src/gen/lib/Api/PosApi.php
index c071cd5c0b..19e1101fea 100644
--- a/src/gen/lib/Api/PosApi.php
+++ b/src/gen/lib/Api/PosApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/SmsApi.php b/src/gen/lib/Api/SmsApi.php
index f754393f94..1939842a40 100644
--- a/src/gen/lib/Api/SmsApi.php
+++ b/src/gen/lib/Api/SmsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/VaultApi.php b/src/gen/lib/Api/VaultApi.php
index 3b06823efd..a03bd5b6c7 100644
--- a/src/gen/lib/Api/VaultApi.php
+++ b/src/gen/lib/Api/VaultApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/WebhookApi.php b/src/gen/lib/Api/WebhookApi.php
index e9fcf90f4a..23dcbd5117 100644
--- a/src/gen/lib/Api/WebhookApi.php
+++ b/src/gen/lib/Api/WebhookApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ApiException.php b/src/gen/lib/ApiException.php
index 4a4efc8f38..3c1ea9a648 100644
--- a/src/gen/lib/ApiException.php
+++ b/src/gen/lib/ApiException.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Configuration.php b/src/gen/lib/Configuration.php
index 46c846af18..61e7357305 100644
--- a/src/gen/lib/Configuration.php
+++ b/src/gen/lib/Configuration.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -447,7 +447,7 @@ public static function toDebugReport()
$report = 'PHP SDK (Apideck\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: 10.2.2' . PHP_EOL;
+ $report .= ' The version of the OpenAPI document: 10.3.0' . PHP_EOL;
$report .= ' SDK Package Version: 3.2.0' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
diff --git a/src/gen/lib/HeaderSelector.php b/src/gen/lib/HeaderSelector.php
index ce0c3a2702..07e4060f4e 100644
--- a/src/gen/lib/HeaderSelector.php
+++ b/src/gen/lib/HeaderSelector.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingDepartment.php b/src/gen/lib/Model/AccountingDepartment.php
new file mode 100644
index 0000000000..784bea1ae2
--- /dev/null
+++ b/src/gen/lib/Model/AccountingDepartment.php
@@ -0,0 +1,654 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class AccountingDepartment implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'AccountingDepartment';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'id' => 'string',
+ 'parent_id' => 'string',
+ 'name' => 'string',
+ 'status' => 'string',
+ 'subsidiaries' => '\Apideck\Client\Model\SubsidiaryReference[]',
+ 'custom_mappings' => 'object',
+ 'row_version' => 'string',
+ 'updated_by' => 'string',
+ 'created_by' => 'string',
+ 'updated_at' => '\DateTime',
+ 'created_at' => '\DateTime'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'id' => null,
+ 'parent_id' => null,
+ 'name' => null,
+ 'status' => null,
+ 'subsidiaries' => null,
+ 'custom_mappings' => null,
+ 'row_version' => null,
+ 'updated_by' => null,
+ 'created_by' => null,
+ 'updated_at' => 'date-time',
+ 'created_at' => 'date-time'
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'id' => 'id',
+ 'parent_id' => 'parent_id',
+ 'name' => 'name',
+ 'status' => 'status',
+ 'subsidiaries' => 'subsidiaries',
+ 'custom_mappings' => 'custom_mappings',
+ 'row_version' => 'row_version',
+ 'updated_by' => 'updated_by',
+ 'created_by' => 'created_by',
+ 'updated_at' => 'updated_at',
+ 'created_at' => 'created_at'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'id' => 'setId',
+ 'parent_id' => 'setParentId',
+ 'name' => 'setName',
+ 'status' => 'setStatus',
+ 'subsidiaries' => 'setSubsidiaries',
+ 'custom_mappings' => 'setCustomMappings',
+ 'row_version' => 'setRowVersion',
+ 'updated_by' => 'setUpdatedBy',
+ 'created_by' => 'setCreatedBy',
+ 'updated_at' => 'setUpdatedAt',
+ 'created_at' => 'setCreatedAt'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'id' => 'getId',
+ 'parent_id' => 'getParentId',
+ 'name' => 'getName',
+ 'status' => 'getStatus',
+ 'subsidiaries' => 'getSubsidiaries',
+ 'custom_mappings' => 'getCustomMappings',
+ 'row_version' => 'getRowVersion',
+ 'updated_by' => 'getUpdatedBy',
+ 'created_by' => 'getCreatedBy',
+ 'updated_at' => 'getUpdatedAt',
+ 'created_at' => 'getCreatedAt'
+ ];
+
+ /**
+ * 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;
+ }
+
+ const STATUS_ACTIVE = 'active';
+ const STATUS_INACTIVE = 'inactive';
+
+ /**
+ * Gets allowable values of the enum
+ *
+ * @return string[]
+ */
+ public function getStatusAllowableValues()
+ {
+ return [
+ self::STATUS_ACTIVE,
+ self::STATUS_INACTIVE,
+ ];
+ }
+
+ /**
+ * Associative array for storing property values
+ *
+ * @var mixed[]
+ */
+ protected $container = [];
+
+ /**
+ * Constructor
+ *
+ * @param mixed[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['id'] = $data['id'] ?? null;
+ $this->container['parent_id'] = $data['parent_id'] ?? null;
+ $this->container['name'] = $data['name'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['subsidiaries'] = $data['subsidiaries'] ?? null;
+ $this->container['custom_mappings'] = $data['custom_mappings'] ?? null;
+ $this->container['row_version'] = $data['row_version'] ?? null;
+ $this->container['updated_by'] = $data['updated_by'] ?? null;
+ $this->container['created_by'] = $data['created_by'] ?? null;
+ $this->container['updated_at'] = $data['updated_at'] ?? null;
+ $this->container['created_at'] = $data['created_at'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ $allowedValues = $this->getStatusAllowableValues();
+ if (!is_null($this->container['status']) && !in_array($this->container['status'], $allowedValues, true)) {
+ $invalidProperties[] = sprintf(
+ "invalid value '%s' for 'status', must be one of '%s'",
+ $this->container['status'],
+ implode("', '", $allowedValues)
+ );
+ }
+
+ 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 id
+ *
+ * @return string|null
+ */
+ public function getId()
+ {
+ return $this->container['id'];
+ }
+
+ /**
+ * Sets id
+ *
+ * @param string|null $id A unique identifier for an object.
+ *
+ * @return self
+ */
+ public function setId($id)
+ {
+ $this->container['id'] = $id;
+
+ return $this;
+ }
+
+ /**
+ * Gets parent_id
+ *
+ * @return string|null
+ */
+ public function getParentId()
+ {
+ return $this->container['parent_id'];
+ }
+
+ /**
+ * Sets parent_id
+ *
+ * @param string|null $parent_id A unique identifier for an object.
+ *
+ * @return self
+ */
+ public function setParentId($parent_id)
+ {
+ $this->container['parent_id'] = $parent_id;
+
+ return $this;
+ }
+
+ /**
+ * Gets name
+ *
+ * @return string|null
+ */
+ public function getName()
+ {
+ return $this->container['name'];
+ }
+
+ /**
+ * Sets name
+ *
+ * @param string|null $name The name of the department.
+ *
+ * @return self
+ */
+ public function setName($name)
+ {
+ $this->container['name'] = $name;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string|null
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string|null $status Based on the status some functionality is enabled or disabled.
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $allowedValues = $this->getStatusAllowableValues();
+ if (!is_null($status) && !in_array($status, $allowedValues, true)) {
+ throw new \InvalidArgumentException(
+ sprintf(
+ "Invalid value '%s' for 'status', must be one of '%s'",
+ $status,
+ implode("', '", $allowedValues)
+ )
+ );
+ }
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets subsidiaries
+ *
+ * @return \Apideck\Client\Model\SubsidiaryReference[]|null
+ */
+ public function getSubsidiaries()
+ {
+ return $this->container['subsidiaries'];
+ }
+
+ /**
+ * Sets subsidiaries
+ *
+ * @param \Apideck\Client\Model\SubsidiaryReference[]|null $subsidiaries subsidiaries
+ *
+ * @return self
+ */
+ public function setSubsidiaries($subsidiaries)
+ {
+ $this->container['subsidiaries'] = $subsidiaries;
+
+ return $this;
+ }
+
+ /**
+ * Gets custom_mappings
+ *
+ * @return object|null
+ */
+ public function getCustomMappings()
+ {
+ return $this->container['custom_mappings'];
+ }
+
+ /**
+ * Sets custom_mappings
+ *
+ * @param object|null $custom_mappings When custom mappings are configured on the resource, the result is included here.
+ *
+ * @return self
+ */
+ public function setCustomMappings($custom_mappings)
+ {
+ $this->container['custom_mappings'] = $custom_mappings;
+
+ return $this;
+ }
+
+ /**
+ * Gets row_version
+ *
+ * @return string|null
+ */
+ public function getRowVersion()
+ {
+ return $this->container['row_version'];
+ }
+
+ /**
+ * Sets row_version
+ *
+ * @param string|null $row_version A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.
+ *
+ * @return self
+ */
+ public function setRowVersion($row_version)
+ {
+ $this->container['row_version'] = $row_version;
+
+ return $this;
+ }
+
+ /**
+ * Gets updated_by
+ *
+ * @return string|null
+ */
+ public function getUpdatedBy()
+ {
+ return $this->container['updated_by'];
+ }
+
+ /**
+ * Sets updated_by
+ *
+ * @param string|null $updated_by The user who last updated the object.
+ *
+ * @return self
+ */
+ public function setUpdatedBy($updated_by)
+ {
+ $this->container['updated_by'] = $updated_by;
+
+ return $this;
+ }
+
+ /**
+ * Gets created_by
+ *
+ * @return string|null
+ */
+ public function getCreatedBy()
+ {
+ return $this->container['created_by'];
+ }
+
+ /**
+ * Sets created_by
+ *
+ * @param string|null $created_by The user who created the object.
+ *
+ * @return self
+ */
+ public function setCreatedBy($created_by)
+ {
+ $this->container['created_by'] = $created_by;
+
+ return $this;
+ }
+
+ /**
+ * Gets updated_at
+ *
+ * @return \DateTime|null
+ */
+ public function getUpdatedAt()
+ {
+ return $this->container['updated_at'];
+ }
+
+ /**
+ * Sets updated_at
+ *
+ * @param \DateTime|null $updated_at The date and time when the object was last updated.
+ *
+ * @return self
+ */
+ public function setUpdatedAt($updated_at)
+ {
+ $this->container['updated_at'] = $updated_at;
+
+ return $this;
+ }
+
+ /**
+ * Gets created_at
+ *
+ * @return \DateTime|null
+ */
+ public function getCreatedAt()
+ {
+ return $this->container['created_at'];
+ }
+
+ /**
+ * Sets created_at
+ *
+ * @param \DateTime|null $created_at The date and time when the object was created.
+ *
+ * @return self
+ */
+ public function setCreatedAt($created_at)
+ {
+ $this->container['created_at'] = $created_at;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/AccountingDepartmentsFilter.php b/src/gen/lib/Model/AccountingDepartmentsFilter.php
new file mode 100644
index 0000000000..7a774bbc9e
--- /dev/null
+++ b/src/gen/lib/Model/AccountingDepartmentsFilter.php
@@ -0,0 +1,320 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class AccountingDepartmentsFilter implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'AccountingDepartmentsFilter';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'subsidiary' => 'string'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'subsidiary' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'subsidiary' => 'subsidiary'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'subsidiary' => 'setSubsidiary'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'subsidiary' => 'getSubsidiary'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['subsidiary'] = $data['subsidiary'] ?? null;
+ }
+
+ /**
+ * 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 subsidiary
+ *
+ * @return string|null
+ */
+ public function getSubsidiary()
+ {
+ return $this->container['subsidiary'];
+ }
+
+ /**
+ * Sets subsidiary
+ *
+ * @param string|null $subsidiary Id of the subsidiary to search for
+ *
+ * @return self
+ */
+ public function setSubsidiary($subsidiary)
+ {
+ $this->container['subsidiary'] = $subsidiary;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/AccountingEventType.php b/src/gen/lib/Model/AccountingEventType.php
index 9cf9b83b5d..a94721a42b 100644
--- a/src/gen/lib/Model/AccountingEventType.php
+++ b/src/gen/lib/Model/AccountingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingLocation.php b/src/gen/lib/Model/AccountingLocation.php
new file mode 100644
index 0000000000..9e9a1c1235
--- /dev/null
+++ b/src/gen/lib/Model/AccountingLocation.php
@@ -0,0 +1,714 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class AccountingLocation implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'AccountingLocation';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'id' => 'string',
+ 'parent_id' => 'string',
+ 'company_name' => 'string',
+ 'display_name' => 'string',
+ 'status' => 'string',
+ 'addresses' => '\Apideck\Client\Model\Address[]',
+ 'subsidiaries' => '\Apideck\Client\Model\SubsidiaryReference[]',
+ 'custom_mappings' => 'object',
+ 'row_version' => 'string',
+ 'updated_by' => 'string',
+ 'created_by' => 'string',
+ 'updated_at' => '\DateTime',
+ 'created_at' => '\DateTime'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'id' => null,
+ 'parent_id' => null,
+ 'company_name' => null,
+ 'display_name' => null,
+ 'status' => null,
+ 'addresses' => null,
+ 'subsidiaries' => null,
+ 'custom_mappings' => null,
+ 'row_version' => null,
+ 'updated_by' => null,
+ 'created_by' => null,
+ 'updated_at' => 'date-time',
+ 'created_at' => 'date-time'
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'id' => 'id',
+ 'parent_id' => 'parent_id',
+ 'company_name' => 'company_name',
+ 'display_name' => 'display_name',
+ 'status' => 'status',
+ 'addresses' => 'addresses',
+ 'subsidiaries' => 'subsidiaries',
+ 'custom_mappings' => 'custom_mappings',
+ 'row_version' => 'row_version',
+ 'updated_by' => 'updated_by',
+ 'created_by' => 'created_by',
+ 'updated_at' => 'updated_at',
+ 'created_at' => 'created_at'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'id' => 'setId',
+ 'parent_id' => 'setParentId',
+ 'company_name' => 'setCompanyName',
+ 'display_name' => 'setDisplayName',
+ 'status' => 'setStatus',
+ 'addresses' => 'setAddresses',
+ 'subsidiaries' => 'setSubsidiaries',
+ 'custom_mappings' => 'setCustomMappings',
+ 'row_version' => 'setRowVersion',
+ 'updated_by' => 'setUpdatedBy',
+ 'created_by' => 'setCreatedBy',
+ 'updated_at' => 'setUpdatedAt',
+ 'created_at' => 'setCreatedAt'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'id' => 'getId',
+ 'parent_id' => 'getParentId',
+ 'company_name' => 'getCompanyName',
+ 'display_name' => 'getDisplayName',
+ 'status' => 'getStatus',
+ 'addresses' => 'getAddresses',
+ 'subsidiaries' => 'getSubsidiaries',
+ 'custom_mappings' => 'getCustomMappings',
+ 'row_version' => 'getRowVersion',
+ 'updated_by' => 'getUpdatedBy',
+ 'created_by' => 'getCreatedBy',
+ 'updated_at' => 'getUpdatedAt',
+ 'created_at' => 'getCreatedAt'
+ ];
+
+ /**
+ * 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;
+ }
+
+ const STATUS_ACTIVE = 'active';
+ const STATUS_INACTIVE = 'inactive';
+
+ /**
+ * Gets allowable values of the enum
+ *
+ * @return string[]
+ */
+ public function getStatusAllowableValues()
+ {
+ return [
+ self::STATUS_ACTIVE,
+ self::STATUS_INACTIVE,
+ ];
+ }
+
+ /**
+ * Associative array for storing property values
+ *
+ * @var mixed[]
+ */
+ protected $container = [];
+
+ /**
+ * Constructor
+ *
+ * @param mixed[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['id'] = $data['id'] ?? null;
+ $this->container['parent_id'] = $data['parent_id'] ?? null;
+ $this->container['company_name'] = $data['company_name'] ?? null;
+ $this->container['display_name'] = $data['display_name'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['addresses'] = $data['addresses'] ?? null;
+ $this->container['subsidiaries'] = $data['subsidiaries'] ?? null;
+ $this->container['custom_mappings'] = $data['custom_mappings'] ?? null;
+ $this->container['row_version'] = $data['row_version'] ?? null;
+ $this->container['updated_by'] = $data['updated_by'] ?? null;
+ $this->container['created_by'] = $data['created_by'] ?? null;
+ $this->container['updated_at'] = $data['updated_at'] ?? null;
+ $this->container['created_at'] = $data['created_at'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ $allowedValues = $this->getStatusAllowableValues();
+ if (!is_null($this->container['status']) && !in_array($this->container['status'], $allowedValues, true)) {
+ $invalidProperties[] = sprintf(
+ "invalid value '%s' for 'status', must be one of '%s'",
+ $this->container['status'],
+ implode("', '", $allowedValues)
+ );
+ }
+
+ 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 id
+ *
+ * @return string|null
+ */
+ public function getId()
+ {
+ return $this->container['id'];
+ }
+
+ /**
+ * Sets id
+ *
+ * @param string|null $id A unique identifier for an object.
+ *
+ * @return self
+ */
+ public function setId($id)
+ {
+ $this->container['id'] = $id;
+
+ return $this;
+ }
+
+ /**
+ * Gets parent_id
+ *
+ * @return string|null
+ */
+ public function getParentId()
+ {
+ return $this->container['parent_id'];
+ }
+
+ /**
+ * Sets parent_id
+ *
+ * @param string|null $parent_id A unique identifier for an object.
+ *
+ * @return self
+ */
+ public function setParentId($parent_id)
+ {
+ $this->container['parent_id'] = $parent_id;
+
+ return $this;
+ }
+
+ /**
+ * Gets company_name
+ *
+ * @return string|null
+ */
+ public function getCompanyName()
+ {
+ return $this->container['company_name'];
+ }
+
+ /**
+ * Sets company_name
+ *
+ * @param string|null $company_name The name of the company.
+ *
+ * @return self
+ */
+ public function setCompanyName($company_name)
+ {
+ $this->container['company_name'] = $company_name;
+
+ return $this;
+ }
+
+ /**
+ * Gets display_name
+ *
+ * @return string|null
+ */
+ public function getDisplayName()
+ {
+ return $this->container['display_name'];
+ }
+
+ /**
+ * Sets display_name
+ *
+ * @param string|null $display_name The display name of the location.
+ *
+ * @return self
+ */
+ public function setDisplayName($display_name)
+ {
+ $this->container['display_name'] = $display_name;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string|null
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string|null $status Based on the status some functionality is enabled or disabled.
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $allowedValues = $this->getStatusAllowableValues();
+ if (!is_null($status) && !in_array($status, $allowedValues, true)) {
+ throw new \InvalidArgumentException(
+ sprintf(
+ "Invalid value '%s' for 'status', must be one of '%s'",
+ $status,
+ implode("', '", $allowedValues)
+ )
+ );
+ }
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets addresses
+ *
+ * @return \Apideck\Client\Model\Address[]|null
+ */
+ public function getAddresses()
+ {
+ return $this->container['addresses'];
+ }
+
+ /**
+ * Sets addresses
+ *
+ * @param \Apideck\Client\Model\Address[]|null $addresses addresses
+ *
+ * @return self
+ */
+ public function setAddresses($addresses)
+ {
+ $this->container['addresses'] = $addresses;
+
+ return $this;
+ }
+
+ /**
+ * Gets subsidiaries
+ *
+ * @return \Apideck\Client\Model\SubsidiaryReference[]|null
+ */
+ public function getSubsidiaries()
+ {
+ return $this->container['subsidiaries'];
+ }
+
+ /**
+ * Sets subsidiaries
+ *
+ * @param \Apideck\Client\Model\SubsidiaryReference[]|null $subsidiaries subsidiaries
+ *
+ * @return self
+ */
+ public function setSubsidiaries($subsidiaries)
+ {
+ $this->container['subsidiaries'] = $subsidiaries;
+
+ return $this;
+ }
+
+ /**
+ * Gets custom_mappings
+ *
+ * @return object|null
+ */
+ public function getCustomMappings()
+ {
+ return $this->container['custom_mappings'];
+ }
+
+ /**
+ * Sets custom_mappings
+ *
+ * @param object|null $custom_mappings When custom mappings are configured on the resource, the result is included here.
+ *
+ * @return self
+ */
+ public function setCustomMappings($custom_mappings)
+ {
+ $this->container['custom_mappings'] = $custom_mappings;
+
+ return $this;
+ }
+
+ /**
+ * Gets row_version
+ *
+ * @return string|null
+ */
+ public function getRowVersion()
+ {
+ return $this->container['row_version'];
+ }
+
+ /**
+ * Sets row_version
+ *
+ * @param string|null $row_version A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.
+ *
+ * @return self
+ */
+ public function setRowVersion($row_version)
+ {
+ $this->container['row_version'] = $row_version;
+
+ return $this;
+ }
+
+ /**
+ * Gets updated_by
+ *
+ * @return string|null
+ */
+ public function getUpdatedBy()
+ {
+ return $this->container['updated_by'];
+ }
+
+ /**
+ * Sets updated_by
+ *
+ * @param string|null $updated_by The user who last updated the object.
+ *
+ * @return self
+ */
+ public function setUpdatedBy($updated_by)
+ {
+ $this->container['updated_by'] = $updated_by;
+
+ return $this;
+ }
+
+ /**
+ * Gets created_by
+ *
+ * @return string|null
+ */
+ public function getCreatedBy()
+ {
+ return $this->container['created_by'];
+ }
+
+ /**
+ * Sets created_by
+ *
+ * @param string|null $created_by The user who created the object.
+ *
+ * @return self
+ */
+ public function setCreatedBy($created_by)
+ {
+ $this->container['created_by'] = $created_by;
+
+ return $this;
+ }
+
+ /**
+ * Gets updated_at
+ *
+ * @return \DateTime|null
+ */
+ public function getUpdatedAt()
+ {
+ return $this->container['updated_at'];
+ }
+
+ /**
+ * Sets updated_at
+ *
+ * @param \DateTime|null $updated_at The date and time when the object was last updated.
+ *
+ * @return self
+ */
+ public function setUpdatedAt($updated_at)
+ {
+ $this->container['updated_at'] = $updated_at;
+
+ return $this;
+ }
+
+ /**
+ * Gets created_at
+ *
+ * @return \DateTime|null
+ */
+ public function getCreatedAt()
+ {
+ return $this->container['created_at'];
+ }
+
+ /**
+ * Sets created_at
+ *
+ * @param \DateTime|null $created_at The date and time when the object was created.
+ *
+ * @return self
+ */
+ public function setCreatedAt($created_at)
+ {
+ $this->container['created_at'] = $created_at;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/AccountingLocationsFilter.php b/src/gen/lib/Model/AccountingLocationsFilter.php
new file mode 100644
index 0000000000..2100b82771
--- /dev/null
+++ b/src/gen/lib/Model/AccountingLocationsFilter.php
@@ -0,0 +1,320 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class AccountingLocationsFilter implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'AccountingLocationsFilter';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'subsidiary' => 'string'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'subsidiary' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'subsidiary' => 'subsidiary'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'subsidiary' => 'setSubsidiary'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'subsidiary' => 'getSubsidiary'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['subsidiary'] = $data['subsidiary'] ?? null;
+ }
+
+ /**
+ * 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 subsidiary
+ *
+ * @return string|null
+ */
+ public function getSubsidiary()
+ {
+ return $this->container['subsidiary'];
+ }
+
+ /**
+ * Sets subsidiary
+ *
+ * @param string|null $subsidiary Id of the subsidiary to search for
+ *
+ * @return self
+ */
+ public function setSubsidiary($subsidiary)
+ {
+ $this->container['subsidiary'] = $subsidiary;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/ActivitiesFilter.php b/src/gen/lib/Model/ActivitiesFilter.php
index 88e6a1ff6f..37b123ce53 100644
--- a/src/gen/lib/Model/ActivitiesFilter.php
+++ b/src/gen/lib/Model/ActivitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivitiesSort.php b/src/gen/lib/Model/ActivitiesSort.php
index 4bdf2ac5ad..f8ae66b52a 100644
--- a/src/gen/lib/Model/ActivitiesSort.php
+++ b/src/gen/lib/Model/ActivitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Activity.php b/src/gen/lib/Model/Activity.php
index f7539ff180..781a71e690 100644
--- a/src/gen/lib/Model/Activity.php
+++ b/src/gen/lib/Model/Activity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivityAttendee.php b/src/gen/lib/Model/ActivityAttendee.php
index d1cb779087..77ec862a63 100644
--- a/src/gen/lib/Model/ActivityAttendee.php
+++ b/src/gen/lib/Model/ActivityAttendee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Address.php b/src/gen/lib/Model/Address.php
index e943d38cfc..d3ecce4e5f 100644
--- a/src/gen/lib/Model/Address.php
+++ b/src/gen/lib/Model/Address.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Api.php b/src/gen/lib/Model/Api.php
index b52a7bb787..a6cdba9341 100644
--- a/src/gen/lib/Model/Api.php
+++ b/src/gen/lib/Model/Api.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResource.php b/src/gen/lib/Model/ApiResource.php
index 592912025b..d9d77882bd 100644
--- a/src/gen/lib/Model/ApiResource.php
+++ b/src/gen/lib/Model/ApiResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverage.php b/src/gen/lib/Model/ApiResourceCoverage.php
index 970af10464..ba988379b0 100644
--- a/src/gen/lib/Model/ApiResourceCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverageCoverage.php b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
index 0cbea7beb6..d392222c43 100644
--- a/src/gen/lib/Model/ApiResourceCoverageCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceLinkedResources.php b/src/gen/lib/Model/ApiResourceLinkedResources.php
index 55c293a66e..6d72e5dae3 100644
--- a/src/gen/lib/Model/ApiResourceLinkedResources.php
+++ b/src/gen/lib/Model/ApiResourceLinkedResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResources.php b/src/gen/lib/Model/ApiResources.php
index 20da7f9021..e0b2d81fe0 100644
--- a/src/gen/lib/Model/ApiResources.php
+++ b/src/gen/lib/Model/ApiResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiStatus.php b/src/gen/lib/Model/ApiStatus.php
index e787face01..0f7574005c 100644
--- a/src/gen/lib/Model/ApiStatus.php
+++ b/src/gen/lib/Model/ApiStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApisFilter.php b/src/gen/lib/Model/ApisFilter.php
index 9e0898aebe..3eaf50db21 100644
--- a/src/gen/lib/Model/ApisFilter.php
+++ b/src/gen/lib/Model/ApisFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Applicant.php b/src/gen/lib/Model/Applicant.php
index d3e39c508a..fd628f2c1f 100644
--- a/src/gen/lib/Model/Applicant.php
+++ b/src/gen/lib/Model/Applicant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantSocialLinks.php b/src/gen/lib/Model/ApplicantSocialLinks.php
index 6b4a6dbcbe..830a1cc056 100644
--- a/src/gen/lib/Model/ApplicantSocialLinks.php
+++ b/src/gen/lib/Model/ApplicantSocialLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantWebsites.php b/src/gen/lib/Model/ApplicantWebsites.php
index ea4acb55da..79deea58c6 100644
--- a/src/gen/lib/Model/ApplicantWebsites.php
+++ b/src/gen/lib/Model/ApplicantWebsites.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantsFilter.php b/src/gen/lib/Model/ApplicantsFilter.php
index 21a5f4e7c6..ce3a619e5e 100644
--- a/src/gen/lib/Model/ApplicantsFilter.php
+++ b/src/gen/lib/Model/ApplicantsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Application.php b/src/gen/lib/Model/Application.php
index 9a59c7505d..8841abe8f2 100644
--- a/src/gen/lib/Model/Application.php
+++ b/src/gen/lib/Model/Application.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicationStage.php b/src/gen/lib/Model/ApplicationStage.php
index 21723108ee..8ffe285c61 100644
--- a/src/gen/lib/Model/ApplicationStage.php
+++ b/src/gen/lib/Model/ApplicationStage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Assignee.php b/src/gen/lib/Model/Assignee.php
index a64131212b..9597404d2b 100644
--- a/src/gen/lib/Model/Assignee.php
+++ b/src/gen/lib/Model/Assignee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsActivity.php b/src/gen/lib/Model/AtsActivity.php
index 008a96b2b2..f195b1b206 100644
--- a/src/gen/lib/Model/AtsActivity.php
+++ b/src/gen/lib/Model/AtsActivity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsEventType.php b/src/gen/lib/Model/AtsEventType.php
index fc94840c0e..218bd9ac46 100644
--- a/src/gen/lib/Model/AtsEventType.php
+++ b/src/gen/lib/Model/AtsEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AuthType.php b/src/gen/lib/Model/AuthType.php
index b94ea59366..98709a3787 100644
--- a/src/gen/lib/Model/AuthType.php
+++ b/src/gen/lib/Model/AuthType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BadRequestResponse.php b/src/gen/lib/Model/BadRequestResponse.php
index 65cce5dd14..ca66591230 100644
--- a/src/gen/lib/Model/BadRequestResponse.php
+++ b/src/gen/lib/Model/BadRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheet.php b/src/gen/lib/Model/BalanceSheet.php
index c1a7f019de..b1c0b67ef1 100644
--- a/src/gen/lib/Model/BalanceSheet.php
+++ b/src/gen/lib/Model/BalanceSheet.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssets.php b/src/gen/lib/Model/BalanceSheetAssets.php
index 9a30e8df60..bcb50b900a 100644
--- a/src/gen/lib/Model/BalanceSheetAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
index 7964a16e3d..96bca01563 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
index 2b863fbc67..51243bb286 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
index ef0fdcb9a8..8cf18f5dcb 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
index 80f59b4a87..19a75ccae4 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquity.php b/src/gen/lib/Model/BalanceSheetEquity.php
index b47f8d178b..65a81982f6 100644
--- a/src/gen/lib/Model/BalanceSheetEquity.php
+++ b/src/gen/lib/Model/BalanceSheetEquity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquityItems.php b/src/gen/lib/Model/BalanceSheetEquityItems.php
index 85aa484d38..19bbe98277 100644
--- a/src/gen/lib/Model/BalanceSheetEquityItems.php
+++ b/src/gen/lib/Model/BalanceSheetEquityItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetFilter.php b/src/gen/lib/Model/BalanceSheetFilter.php
index bb61560cb5..9dac0c8c4f 100644
--- a/src/gen/lib/Model/BalanceSheetFilter.php
+++ b/src/gen/lib/Model/BalanceSheetFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilities.php b/src/gen/lib/Model/BalanceSheetLiabilities.php
index 50aa1861c1..355771a4d8 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilities.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilities.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
index 720348fb22..59b92a9de2 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BankAccount.php b/src/gen/lib/Model/BankAccount.php
index 483fb93f33..71462e9270 100644
--- a/src/gen/lib/Model/BankAccount.php
+++ b/src/gen/lib/Model/BankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Benefit.php b/src/gen/lib/Model/Benefit.php
index 5d56bdbe51..0b66fc99bf 100644
--- a/src/gen/lib/Model/Benefit.php
+++ b/src/gen/lib/Model/Benefit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Bill.php b/src/gen/lib/Model/Bill.php
index 7bf1c2a4c5..90d2d9a2ea 100644
--- a/src/gen/lib/Model/Bill.php
+++ b/src/gen/lib/Model/Bill.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillLineItem.php b/src/gen/lib/Model/BillLineItem.php
index 076a9b85c2..b7f6e5112d 100644
--- a/src/gen/lib/Model/BillLineItem.php
+++ b/src/gen/lib/Model/BillLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsFilter.php b/src/gen/lib/Model/BillsFilter.php
index cca8967e9c..8c1d804e15 100644
--- a/src/gen/lib/Model/BillsFilter.php
+++ b/src/gen/lib/Model/BillsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsSort.php b/src/gen/lib/Model/BillsSort.php
index a8a583c6b8..1a3fd8205e 100644
--- a/src/gen/lib/Model/BillsSort.php
+++ b/src/gen/lib/Model/BillsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Branch.php b/src/gen/lib/Model/Branch.php
index 5ae725bcd3..2aee971a51 100644
--- a/src/gen/lib/Model/Branch.php
+++ b/src/gen/lib/Model/Branch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CashDetails.php b/src/gen/lib/Model/CashDetails.php
index db6b1bba2c..5b69d97009 100644
--- a/src/gen/lib/Model/CashDetails.php
+++ b/src/gen/lib/Model/CashDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Collection.php b/src/gen/lib/Model/Collection.php
index 5e895541b8..a259f01886 100644
--- a/src/gen/lib/Model/Collection.php
+++ b/src/gen/lib/Model/Collection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTag.php b/src/gen/lib/Model/CollectionTag.php
index 2c23483c9d..a191cb1574 100644
--- a/src/gen/lib/Model/CollectionTag.php
+++ b/src/gen/lib/Model/CollectionTag.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTicketComment.php b/src/gen/lib/Model/CollectionTicketComment.php
index c5666310c5..e37be50a56 100644
--- a/src/gen/lib/Model/CollectionTicketComment.php
+++ b/src/gen/lib/Model/CollectionTicketComment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionUser.php b/src/gen/lib/Model/CollectionUser.php
index 71ec4a7307..6faa803e45 100644
--- a/src/gen/lib/Model/CollectionUser.php
+++ b/src/gen/lib/Model/CollectionUser.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionsSort.php b/src/gen/lib/Model/CollectionsSort.php
index 24b63aecd5..ac130dc371 100644
--- a/src/gen/lib/Model/CollectionsSort.php
+++ b/src/gen/lib/Model/CollectionsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CommentsSort.php b/src/gen/lib/Model/CommentsSort.php
index 4a85fe8e44..7d94fd85a3 100644
--- a/src/gen/lib/Model/CommentsSort.php
+++ b/src/gen/lib/Model/CommentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesFilter.php b/src/gen/lib/Model/CompaniesFilter.php
index f67801c156..46f3dd28e8 100644
--- a/src/gen/lib/Model/CompaniesFilter.php
+++ b/src/gen/lib/Model/CompaniesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesSort.php b/src/gen/lib/Model/CompaniesSort.php
index 2f6017d4bd..f040a8b298 100644
--- a/src/gen/lib/Model/CompaniesSort.php
+++ b/src/gen/lib/Model/CompaniesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Company.php b/src/gen/lib/Model/Company.php
index 69acda5a98..be17f3483c 100644
--- a/src/gen/lib/Model/Company.php
+++ b/src/gen/lib/Model/Company.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyInfo.php b/src/gen/lib/Model/CompanyInfo.php
index 733f15d8fd..a7437d38f4 100644
--- a/src/gen/lib/Model/CompanyInfo.php
+++ b/src/gen/lib/Model/CompanyInfo.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyRowType.php b/src/gen/lib/Model/CompanyRowType.php
index aa49b690b5..4bd7026724 100644
--- a/src/gen/lib/Model/CompanyRowType.php
+++ b/src/gen/lib/Model/CompanyRowType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Compensation.php b/src/gen/lib/Model/Compensation.php
index dee3292c70..f4ea86268d 100644
--- a/src/gen/lib/Model/Compensation.php
+++ b/src/gen/lib/Model/Compensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connection.php b/src/gen/lib/Model/Connection.php
index 6be138ff17..23b45c0a90 100644
--- a/src/gen/lib/Model/Connection.php
+++ b/src/gen/lib/Model/Connection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionConfiguration.php b/src/gen/lib/Model/ConnectionConfiguration.php
index 0b7cc27a69..2b75044805 100644
--- a/src/gen/lib/Model/ConnectionConfiguration.php
+++ b/src/gen/lib/Model/ConnectionConfiguration.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionDefaults.php b/src/gen/lib/Model/ConnectionDefaults.php
index 3b2b8c2f47..24d105ae70 100644
--- a/src/gen/lib/Model/ConnectionDefaults.php
+++ b/src/gen/lib/Model/ConnectionDefaults.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportData.php b/src/gen/lib/Model/ConnectionImportData.php
index 7682c889b9..382006065d 100644
--- a/src/gen/lib/Model/ConnectionImportData.php
+++ b/src/gen/lib/Model/ConnectionImportData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportDataCredentials.php b/src/gen/lib/Model/ConnectionImportDataCredentials.php
index e41905d382..70583da80f 100644
--- a/src/gen/lib/Model/ConnectionImportDataCredentials.php
+++ b/src/gen/lib/Model/ConnectionImportDataCredentials.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionMetadata.php b/src/gen/lib/Model/ConnectionMetadata.php
index 664033ee61..fa96ad66fb 100644
--- a/src/gen/lib/Model/ConnectionMetadata.php
+++ b/src/gen/lib/Model/ConnectionMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionState.php b/src/gen/lib/Model/ConnectionState.php
index daed406303..04c2cbc1e8 100644
--- a/src/gen/lib/Model/ConnectionState.php
+++ b/src/gen/lib/Model/ConnectionState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionWebhook.php b/src/gen/lib/Model/ConnectionWebhook.php
index bd5b17e118..19334ec301 100644
--- a/src/gen/lib/Model/ConnectionWebhook.php
+++ b/src/gen/lib/Model/ConnectionWebhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connector.php b/src/gen/lib/Model/Connector.php
index 9e618fa585..0428de6644 100644
--- a/src/gen/lib/Model/Connector.php
+++ b/src/gen/lib/Model/Connector.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorDoc.php b/src/gen/lib/Model/ConnectorDoc.php
index d66b367089..3c16378f53 100644
--- a/src/gen/lib/Model/ConnectorDoc.php
+++ b/src/gen/lib/Model/ConnectorDoc.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorEvent.php b/src/gen/lib/Model/ConnectorEvent.php
index 5fc13a5702..f8a47ebfac 100644
--- a/src/gen/lib/Model/ConnectorEvent.php
+++ b/src/gen/lib/Model/ConnectorEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes.php b/src/gen/lib/Model/ConnectorOauthScopes.php
index e62e8bef38..cb4990ba72 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes1.php b/src/gen/lib/Model/ConnectorOauthScopes1.php
index 798443f6f9..02dbdd9c81 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes1.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorResource.php b/src/gen/lib/Model/ConnectorResource.php
index 4006739083..fc151c0ef9 100644
--- a/src/gen/lib/Model/ConnectorResource.php
+++ b/src/gen/lib/Model/ConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorSetting.php b/src/gen/lib/Model/ConnectorSetting.php
index 3ca0f0051e..90b6adde9e 100644
--- a/src/gen/lib/Model/ConnectorSetting.php
+++ b/src/gen/lib/Model/ConnectorSetting.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorStatus.php b/src/gen/lib/Model/ConnectorStatus.php
index 89784c1488..bd2633cb97 100644
--- a/src/gen/lib/Model/ConnectorStatus.php
+++ b/src/gen/lib/Model/ConnectorStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorTlsSupport.php b/src/gen/lib/Model/ConnectorTlsSupport.php
index fd3ac59815..b02c118cf7 100644
--- a/src/gen/lib/Model/ConnectorTlsSupport.php
+++ b/src/gen/lib/Model/ConnectorTlsSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorUnifiedApis.php b/src/gen/lib/Model/ConnectorUnifiedApis.php
index 8c856697e5..05949661ff 100644
--- a/src/gen/lib/Model/ConnectorUnifiedApis.php
+++ b/src/gen/lib/Model/ConnectorUnifiedApis.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorsFilter.php b/src/gen/lib/Model/ConnectorsFilter.php
index b2b243fc52..0925849d8b 100644
--- a/src/gen/lib/Model/ConnectorsFilter.php
+++ b/src/gen/lib/Model/ConnectorsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Consumer.php b/src/gen/lib/Model/Consumer.php
index d3b602d71f..92f90e10d1 100644
--- a/src/gen/lib/Model/Consumer.php
+++ b/src/gen/lib/Model/Consumer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerConnection.php b/src/gen/lib/Model/ConsumerConnection.php
index 76891dd5bd..53f645a66a 100644
--- a/src/gen/lib/Model/ConsumerConnection.php
+++ b/src/gen/lib/Model/ConsumerConnection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerMetadata.php b/src/gen/lib/Model/ConsumerMetadata.php
index 7d4c0d3154..26ebbb0d70 100644
--- a/src/gen/lib/Model/ConsumerMetadata.php
+++ b/src/gen/lib/Model/ConsumerMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
index 255f8b124e..b07db6f552 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
index 5cc700baa9..c514a7bfc3 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Contact.php b/src/gen/lib/Model/Contact.php
index 5d6aa55f13..ec23b9fabc 100644
--- a/src/gen/lib/Model/Contact.php
+++ b/src/gen/lib/Model/Contact.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsFilter.php b/src/gen/lib/Model/ContactsFilter.php
index b6ea6d0cb2..ce4bc1bec9 100644
--- a/src/gen/lib/Model/ContactsFilter.php
+++ b/src/gen/lib/Model/ContactsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsSort.php b/src/gen/lib/Model/ContactsSort.php
index d02e0e4040..825eea9021 100644
--- a/src/gen/lib/Model/ContactsSort.php
+++ b/src/gen/lib/Model/ContactsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CopyFolderRequest.php b/src/gen/lib/Model/CopyFolderRequest.php
index 9b79fe89d5..24a30a20f3 100644
--- a/src/gen/lib/Model/CopyFolderRequest.php
+++ b/src/gen/lib/Model/CopyFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateAccountingDepartmentResponse.php b/src/gen/lib/Model/CreateAccountingDepartmentResponse.php
new file mode 100644
index 0000000000..a4fdaa9de6
--- /dev/null
+++ b/src/gen/lib/Model/CreateAccountingDepartmentResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class CreateAccountingDepartmentResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'CreateAccountingDepartmentResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\UnifiedId'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\UnifiedId
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\UnifiedId $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/CreateAccountingLocationResponse.php b/src/gen/lib/Model/CreateAccountingLocationResponse.php
new file mode 100644
index 0000000000..a0f2d444e9
--- /dev/null
+++ b/src/gen/lib/Model/CreateAccountingLocationResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class CreateAccountingLocationResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'CreateAccountingLocationResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\UnifiedId'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\UnifiedId
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\UnifiedId $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/CreateActivityResponse.php b/src/gen/lib/Model/CreateActivityResponse.php
index 6aac924087..abdea7f9c0 100644
--- a/src/gen/lib/Model/CreateActivityResponse.php
+++ b/src/gen/lib/Model/CreateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicantResponse.php b/src/gen/lib/Model/CreateApplicantResponse.php
index 8833553536..983abcce8b 100644
--- a/src/gen/lib/Model/CreateApplicantResponse.php
+++ b/src/gen/lib/Model/CreateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicationResponse.php b/src/gen/lib/Model/CreateApplicationResponse.php
index c9a749c4e4..b8c8673512 100644
--- a/src/gen/lib/Model/CreateApplicationResponse.php
+++ b/src/gen/lib/Model/CreateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateBillResponse.php b/src/gen/lib/Model/CreateBillResponse.php
index a0a42e2239..06c3e8a436 100644
--- a/src/gen/lib/Model/CreateBillResponse.php
+++ b/src/gen/lib/Model/CreateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCommentResponse.php b/src/gen/lib/Model/CreateCommentResponse.php
index 54a582019a..45d10b2139 100644
--- a/src/gen/lib/Model/CreateCommentResponse.php
+++ b/src/gen/lib/Model/CreateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCompanyResponse.php b/src/gen/lib/Model/CreateCompanyResponse.php
index 67e2fb399f..8759724372 100644
--- a/src/gen/lib/Model/CreateCompanyResponse.php
+++ b/src/gen/lib/Model/CreateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConnectionResponse.php b/src/gen/lib/Model/CreateConnectionResponse.php
index 9e67a78fc5..e5050f4901 100644
--- a/src/gen/lib/Model/CreateConnectionResponse.php
+++ b/src/gen/lib/Model/CreateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConsumerResponse.php b/src/gen/lib/Model/CreateConsumerResponse.php
index f1285acdcd..48e8d0fccf 100644
--- a/src/gen/lib/Model/CreateConsumerResponse.php
+++ b/src/gen/lib/Model/CreateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateContactResponse.php b/src/gen/lib/Model/CreateContactResponse.php
index f35d3ca555..76bacdc4b8 100644
--- a/src/gen/lib/Model/CreateContactResponse.php
+++ b/src/gen/lib/Model/CreateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCreditNoteResponse.php b/src/gen/lib/Model/CreateCreditNoteResponse.php
index a1006327e8..7ef11e8e92 100644
--- a/src/gen/lib/Model/CreateCreditNoteResponse.php
+++ b/src/gen/lib/Model/CreateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingRequest.php b/src/gen/lib/Model/CreateCustomMappingRequest.php
index 272031766d..3919803846 100644
--- a/src/gen/lib/Model/CreateCustomMappingRequest.php
+++ b/src/gen/lib/Model/CreateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingResponse.php b/src/gen/lib/Model/CreateCustomMappingResponse.php
index 43b6075909..6c8937b4ff 100644
--- a/src/gen/lib/Model/CreateCustomMappingResponse.php
+++ b/src/gen/lib/Model/CreateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomerResponse.php b/src/gen/lib/Model/CreateCustomerResponse.php
index 55321e43f5..7fe28aa7de 100644
--- a/src/gen/lib/Model/CreateCustomerResponse.php
+++ b/src/gen/lib/Model/CreateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDepartmentResponse.php b/src/gen/lib/Model/CreateDepartmentResponse.php
index 3a4a7757b9..586bacbd81 100644
--- a/src/gen/lib/Model/CreateDepartmentResponse.php
+++ b/src/gen/lib/Model/CreateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveGroupResponse.php b/src/gen/lib/Model/CreateDriveGroupResponse.php
index ffb5a94fe3..124020bc48 100644
--- a/src/gen/lib/Model/CreateDriveGroupResponse.php
+++ b/src/gen/lib/Model/CreateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveResponse.php b/src/gen/lib/Model/CreateDriveResponse.php
index bc41f38d3c..fa09cc9835 100644
--- a/src/gen/lib/Model/CreateDriveResponse.php
+++ b/src/gen/lib/Model/CreateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
index bfdb2c63b6..b7b2f3a95e 100644
--- a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceOrderResponse.php b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
index 555805d0e0..298532d4e5 100644
--- a/src/gen/lib/Model/CreateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEmployeeResponse.php b/src/gen/lib/Model/CreateEmployeeResponse.php
index 160412c721..fc14a137cf 100644
--- a/src/gen/lib/Model/CreateEmployeeResponse.php
+++ b/src/gen/lib/Model/CreateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileRequest.php b/src/gen/lib/Model/CreateFileRequest.php
index 7fc889c35b..97bcc879db 100644
--- a/src/gen/lib/Model/CreateFileRequest.php
+++ b/src/gen/lib/Model/CreateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileResponse.php b/src/gen/lib/Model/CreateFileResponse.php
index 7d837d67d5..2a56e39164 100644
--- a/src/gen/lib/Model/CreateFileResponse.php
+++ b/src/gen/lib/Model/CreateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderRequest.php b/src/gen/lib/Model/CreateFolderRequest.php
index cc650def0b..6df004cd4e 100644
--- a/src/gen/lib/Model/CreateFolderRequest.php
+++ b/src/gen/lib/Model/CreateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderResponse.php b/src/gen/lib/Model/CreateFolderResponse.php
index fca45ade69..1533de8952 100644
--- a/src/gen/lib/Model/CreateFolderResponse.php
+++ b/src/gen/lib/Model/CreateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateHrisCompanyResponse.php b/src/gen/lib/Model/CreateHrisCompanyResponse.php
index 5ac1544004..923e7d0de3 100644
--- a/src/gen/lib/Model/CreateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/CreateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceItemResponse.php b/src/gen/lib/Model/CreateInvoiceItemResponse.php
index b65ce9de26..debb4b5809 100644
--- a/src/gen/lib/Model/CreateInvoiceItemResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceResponse.php b/src/gen/lib/Model/CreateInvoiceResponse.php
index c639d7dbd5..6e1341965f 100644
--- a/src/gen/lib/Model/CreateInvoiceResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateItemResponse.php b/src/gen/lib/Model/CreateItemResponse.php
index 825f01bf9d..4aa7631130 100644
--- a/src/gen/lib/Model/CreateItemResponse.php
+++ b/src/gen/lib/Model/CreateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJobResponse.php b/src/gen/lib/Model/CreateJobResponse.php
index d8c52e3c8d..2f796528a2 100644
--- a/src/gen/lib/Model/CreateJobResponse.php
+++ b/src/gen/lib/Model/CreateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJournalEntryResponse.php b/src/gen/lib/Model/CreateJournalEntryResponse.php
index 2e0eb90ba7..6e3cd8e6b4 100644
--- a/src/gen/lib/Model/CreateJournalEntryResponse.php
+++ b/src/gen/lib/Model/CreateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLeadResponse.php b/src/gen/lib/Model/CreateLeadResponse.php
index 194a7b7b49..b509163e87 100644
--- a/src/gen/lib/Model/CreateLeadResponse.php
+++ b/src/gen/lib/Model/CreateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLedgerAccountResponse.php b/src/gen/lib/Model/CreateLedgerAccountResponse.php
index 408a0186b1..54144d8cb5 100644
--- a/src/gen/lib/Model/CreateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/CreateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLocationResponse.php b/src/gen/lib/Model/CreateLocationResponse.php
index 9f4fb1cd96..fde200b0ec 100644
--- a/src/gen/lib/Model/CreateLocationResponse.php
+++ b/src/gen/lib/Model/CreateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMerchantResponse.php b/src/gen/lib/Model/CreateMerchantResponse.php
index ffa932979b..2841c5a8b7 100644
--- a/src/gen/lib/Model/CreateMerchantResponse.php
+++ b/src/gen/lib/Model/CreateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMessageResponse.php b/src/gen/lib/Model/CreateMessageResponse.php
index aee9453db0..04fef1873b 100644
--- a/src/gen/lib/Model/CreateMessageResponse.php
+++ b/src/gen/lib/Model/CreateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierGroupResponse.php b/src/gen/lib/Model/CreateModifierGroupResponse.php
index 9831255882..286b88d009 100644
--- a/src/gen/lib/Model/CreateModifierGroupResponse.php
+++ b/src/gen/lib/Model/CreateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierResponse.php b/src/gen/lib/Model/CreateModifierResponse.php
index ab1c4e488a..33d9ccde23 100644
--- a/src/gen/lib/Model/CreateModifierResponse.php
+++ b/src/gen/lib/Model/CreateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateNoteResponse.php b/src/gen/lib/Model/CreateNoteResponse.php
index b557b010fa..df0836af22 100644
--- a/src/gen/lib/Model/CreateNoteResponse.php
+++ b/src/gen/lib/Model/CreateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOpportunityResponse.php b/src/gen/lib/Model/CreateOpportunityResponse.php
index fbe2d192d6..5643a23875 100644
--- a/src/gen/lib/Model/CreateOpportunityResponse.php
+++ b/src/gen/lib/Model/CreateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderResponse.php b/src/gen/lib/Model/CreateOrderResponse.php
index 2fdc58eba3..a7223e165c 100644
--- a/src/gen/lib/Model/CreateOrderResponse.php
+++ b/src/gen/lib/Model/CreateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderTypeResponse.php b/src/gen/lib/Model/CreateOrderTypeResponse.php
index 76d675042b..bd5da8de92 100644
--- a/src/gen/lib/Model/CreateOrderTypeResponse.php
+++ b/src/gen/lib/Model/CreateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePaymentResponse.php b/src/gen/lib/Model/CreatePaymentResponse.php
index da07af93db..a31fb36d02 100644
--- a/src/gen/lib/Model/CreatePaymentResponse.php
+++ b/src/gen/lib/Model/CreatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePipelineResponse.php b/src/gen/lib/Model/CreatePipelineResponse.php
index be78fd37af..c23a0c58ac 100644
--- a/src/gen/lib/Model/CreatePipelineResponse.php
+++ b/src/gen/lib/Model/CreatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePosPaymentResponse.php b/src/gen/lib/Model/CreatePosPaymentResponse.php
index 40b49f68e6..f42e9fef8d 100644
--- a/src/gen/lib/Model/CreatePosPaymentResponse.php
+++ b/src/gen/lib/Model/CreatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateProductResponse.php b/src/gen/lib/Model/CreateProductResponse.php
index d304e4cc84..c6ee1b1463 100644
--- a/src/gen/lib/Model/CreateProductResponse.php
+++ b/src/gen/lib/Model/CreateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePurchaseOrderResponse.php b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
index 10e51b5707..8fc7776cb1 100644
--- a/src/gen/lib/Model/CreatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponse.php b/src/gen/lib/Model/CreateSessionResponse.php
index a9a8fc513f..0a2f2e2f61 100644
--- a/src/gen/lib/Model/CreateSessionResponse.php
+++ b/src/gen/lib/Model/CreateSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponseData.php b/src/gen/lib/Model/CreateSessionResponseData.php
index cb6da9aa40..430dbc862b 100644
--- a/src/gen/lib/Model/CreateSessionResponseData.php
+++ b/src/gen/lib/Model/CreateSessionResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSharedLinkResponse.php b/src/gen/lib/Model/CreateSharedLinkResponse.php
index dbc9743766..1b678657a2 100644
--- a/src/gen/lib/Model/CreateSharedLinkResponse.php
+++ b/src/gen/lib/Model/CreateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSubsidiaryResponse.php b/src/gen/lib/Model/CreateSubsidiaryResponse.php
index aeb0cd99fe..573a18ebb1 100644
--- a/src/gen/lib/Model/CreateSubsidiaryResponse.php
+++ b/src/gen/lib/Model/CreateSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSupplierResponse.php b/src/gen/lib/Model/CreateSupplierResponse.php
index bc191965a8..c50fe8731d 100644
--- a/src/gen/lib/Model/CreateSupplierResponse.php
+++ b/src/gen/lib/Model/CreateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTaxRateResponse.php b/src/gen/lib/Model/CreateTaxRateResponse.php
index 3af9768de3..8569c4029f 100644
--- a/src/gen/lib/Model/CreateTaxRateResponse.php
+++ b/src/gen/lib/Model/CreateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTenderResponse.php b/src/gen/lib/Model/CreateTenderResponse.php
index b327cebd2e..f1f31ad79d 100644
--- a/src/gen/lib/Model/CreateTenderResponse.php
+++ b/src/gen/lib/Model/CreateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTicketResponse.php b/src/gen/lib/Model/CreateTicketResponse.php
index d039ca2537..12f89f08eb 100644
--- a/src/gen/lib/Model/CreateTicketResponse.php
+++ b/src/gen/lib/Model/CreateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTimeOffRequestResponse.php b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
index cd2f12704c..4a018865e0 100644
--- a/src/gen/lib/Model/CreateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionRequest.php b/src/gen/lib/Model/CreateUploadSessionRequest.php
index 6d215d1518..37b5d0dd26 100644
--- a/src/gen/lib/Model/CreateUploadSessionRequest.php
+++ b/src/gen/lib/Model/CreateUploadSessionRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionResponse.php b/src/gen/lib/Model/CreateUploadSessionResponse.php
index e867c3396f..aee4626a73 100644
--- a/src/gen/lib/Model/CreateUploadSessionResponse.php
+++ b/src/gen/lib/Model/CreateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUserResponse.php b/src/gen/lib/Model/CreateUserResponse.php
index 2b94bede51..45fa16c5cd 100644
--- a/src/gen/lib/Model/CreateUserResponse.php
+++ b/src/gen/lib/Model/CreateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookRequest.php b/src/gen/lib/Model/CreateWebhookRequest.php
index ded6c5f325..32487bd22e 100644
--- a/src/gen/lib/Model/CreateWebhookRequest.php
+++ b/src/gen/lib/Model/CreateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookResponse.php b/src/gen/lib/Model/CreateWebhookResponse.php
index 11a298162e..4d27aaed8b 100644
--- a/src/gen/lib/Model/CreateWebhookResponse.php
+++ b/src/gen/lib/Model/CreateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNote.php b/src/gen/lib/Model/CreditNote.php
index 48c256a839..cd649191e3 100644
--- a/src/gen/lib/Model/CreditNote.php
+++ b/src/gen/lib/Model/CreditNote.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesFilter.php b/src/gen/lib/Model/CreditNotesFilter.php
index b6d7aae27a..5f26e3a683 100644
--- a/src/gen/lib/Model/CreditNotesFilter.php
+++ b/src/gen/lib/Model/CreditNotesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesSort.php b/src/gen/lib/Model/CreditNotesSort.php
index 124c57dd19..adff87f9a8 100644
--- a/src/gen/lib/Model/CreditNotesSort.php
+++ b/src/gen/lib/Model/CreditNotesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CrmEventType.php b/src/gen/lib/Model/CrmEventType.php
index 3a794e5f5e..276d58bd83 100644
--- a/src/gen/lib/Model/CrmEventType.php
+++ b/src/gen/lib/Model/CrmEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Currency.php b/src/gen/lib/Model/Currency.php
index 7a560ee37c..e8d1a71e01 100644
--- a/src/gen/lib/Model/Currency.php
+++ b/src/gen/lib/Model/Currency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomField.php b/src/gen/lib/Model/CustomField.php
index dfdbcdc0bb..6291158ce4 100644
--- a/src/gen/lib/Model/CustomField.php
+++ b/src/gen/lib/Model/CustomField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomFieldFinder.php b/src/gen/lib/Model/CustomFieldFinder.php
index e6ea75763c..8d9ad11d48 100644
--- a/src/gen/lib/Model/CustomFieldFinder.php
+++ b/src/gen/lib/Model/CustomFieldFinder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomMapping.php b/src/gen/lib/Model/CustomMapping.php
index 4741572842..9b72acf56b 100644
--- a/src/gen/lib/Model/CustomMapping.php
+++ b/src/gen/lib/Model/CustomMapping.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Customer.php b/src/gen/lib/Model/Customer.php
index 88aac2ef90..c222056a55 100644
--- a/src/gen/lib/Model/Customer.php
+++ b/src/gen/lib/Model/Customer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersFilter.php b/src/gen/lib/Model/CustomersFilter.php
index 7b4b0665d6..b094cf439a 100644
--- a/src/gen/lib/Model/CustomersFilter.php
+++ b/src/gen/lib/Model/CustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersSort.php b/src/gen/lib/Model/CustomersSort.php
index ffcc295864..a1e2d5beec 100644
--- a/src/gen/lib/Model/CustomersSort.php
+++ b/src/gen/lib/Model/CustomersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Deduction.php b/src/gen/lib/Model/Deduction.php
index cda9e577c9..22a7907716 100644
--- a/src/gen/lib/Model/Deduction.php
+++ b/src/gen/lib/Model/Deduction.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteAccountingDepartmentResponse.php b/src/gen/lib/Model/DeleteAccountingDepartmentResponse.php
new file mode 100644
index 0000000000..fbd0d5589e
--- /dev/null
+++ b/src/gen/lib/Model/DeleteAccountingDepartmentResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class DeleteAccountingDepartmentResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'DeleteAccountingDepartmentResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\UnifiedId'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\UnifiedId
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\UnifiedId $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/DeleteAccountingLocationResponse.php b/src/gen/lib/Model/DeleteAccountingLocationResponse.php
new file mode 100644
index 0000000000..d8fa1633f0
--- /dev/null
+++ b/src/gen/lib/Model/DeleteAccountingLocationResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class DeleteAccountingLocationResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'DeleteAccountingLocationResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\UnifiedId'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\UnifiedId
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\UnifiedId $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/DeleteActivityResponse.php b/src/gen/lib/Model/DeleteActivityResponse.php
index c6fcc54f0c..15e8df100d 100644
--- a/src/gen/lib/Model/DeleteActivityResponse.php
+++ b/src/gen/lib/Model/DeleteActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicantResponse.php b/src/gen/lib/Model/DeleteApplicantResponse.php
index d2e8b30fae..7e99dd5be5 100644
--- a/src/gen/lib/Model/DeleteApplicantResponse.php
+++ b/src/gen/lib/Model/DeleteApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicationResponse.php b/src/gen/lib/Model/DeleteApplicationResponse.php
index 104869e581..65c00eb177 100644
--- a/src/gen/lib/Model/DeleteApplicationResponse.php
+++ b/src/gen/lib/Model/DeleteApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteBillResponse.php b/src/gen/lib/Model/DeleteBillResponse.php
index 320a91e3b4..b453356a1a 100644
--- a/src/gen/lib/Model/DeleteBillResponse.php
+++ b/src/gen/lib/Model/DeleteBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCommentResponse.php b/src/gen/lib/Model/DeleteCommentResponse.php
index 9c5f4fb651..28d157d3e7 100644
--- a/src/gen/lib/Model/DeleteCommentResponse.php
+++ b/src/gen/lib/Model/DeleteCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCompanyResponse.php b/src/gen/lib/Model/DeleteCompanyResponse.php
index 0c33408e25..a40d14eb45 100644
--- a/src/gen/lib/Model/DeleteCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteConsumerResponse.php b/src/gen/lib/Model/DeleteConsumerResponse.php
index 70eac6a438..7a173819f3 100644
--- a/src/gen/lib/Model/DeleteConsumerResponse.php
+++ b/src/gen/lib/Model/DeleteConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteContactResponse.php b/src/gen/lib/Model/DeleteContactResponse.php
index 2cf005eb2b..32f22d6a1b 100644
--- a/src/gen/lib/Model/DeleteContactResponse.php
+++ b/src/gen/lib/Model/DeleteContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCreditNoteResponse.php b/src/gen/lib/Model/DeleteCreditNoteResponse.php
index 92f588e49e..1db274d6e3 100644
--- a/src/gen/lib/Model/DeleteCreditNoteResponse.php
+++ b/src/gen/lib/Model/DeleteCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCustomerResponse.php b/src/gen/lib/Model/DeleteCustomerResponse.php
index 298eb2d381..6dc1a8407d 100644
--- a/src/gen/lib/Model/DeleteCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDepartmentResponse.php b/src/gen/lib/Model/DeleteDepartmentResponse.php
index 940138d211..e3965b8b83 100644
--- a/src/gen/lib/Model/DeleteDepartmentResponse.php
+++ b/src/gen/lib/Model/DeleteDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveGroupResponse.php b/src/gen/lib/Model/DeleteDriveGroupResponse.php
index 950c8ad231..c0af41181a 100644
--- a/src/gen/lib/Model/DeleteDriveGroupResponse.php
+++ b/src/gen/lib/Model/DeleteDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveResponse.php b/src/gen/lib/Model/DeleteDriveResponse.php
index 4a7c6e2b6f..715d2f7022 100644
--- a/src/gen/lib/Model/DeleteDriveResponse.php
+++ b/src/gen/lib/Model/DeleteDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
index 04fc7cfe38..6230672fc9 100644
--- a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
index a26d62948c..37ba589b88 100644
--- a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEmployeeResponse.php b/src/gen/lib/Model/DeleteEmployeeResponse.php
index 6e333707f9..7592dbd16a 100644
--- a/src/gen/lib/Model/DeleteEmployeeResponse.php
+++ b/src/gen/lib/Model/DeleteEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFileResponse.php b/src/gen/lib/Model/DeleteFileResponse.php
index 46d8cdba23..a3254e1e19 100644
--- a/src/gen/lib/Model/DeleteFileResponse.php
+++ b/src/gen/lib/Model/DeleteFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFolderResponse.php b/src/gen/lib/Model/DeleteFolderResponse.php
index b1fd70ba31..84c9515c68 100644
--- a/src/gen/lib/Model/DeleteFolderResponse.php
+++ b/src/gen/lib/Model/DeleteFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteHrisCompanyResponse.php b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
index 71bc7beb9a..ee27939a83 100644
--- a/src/gen/lib/Model/DeleteHrisCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteInvoiceResponse.php b/src/gen/lib/Model/DeleteInvoiceResponse.php
index 9bfe723636..df42b2919f 100644
--- a/src/gen/lib/Model/DeleteInvoiceResponse.php
+++ b/src/gen/lib/Model/DeleteInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteItemResponse.php b/src/gen/lib/Model/DeleteItemResponse.php
index e8d69908c1..31da84d05b 100644
--- a/src/gen/lib/Model/DeleteItemResponse.php
+++ b/src/gen/lib/Model/DeleteItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJobResponse.php b/src/gen/lib/Model/DeleteJobResponse.php
index bae14d84c3..6a727a327a 100644
--- a/src/gen/lib/Model/DeleteJobResponse.php
+++ b/src/gen/lib/Model/DeleteJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJournalEntryResponse.php b/src/gen/lib/Model/DeleteJournalEntryResponse.php
index 79682862d9..ab570b3cb8 100644
--- a/src/gen/lib/Model/DeleteJournalEntryResponse.php
+++ b/src/gen/lib/Model/DeleteJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLeadResponse.php b/src/gen/lib/Model/DeleteLeadResponse.php
index d2324ed209..82d7956670 100644
--- a/src/gen/lib/Model/DeleteLeadResponse.php
+++ b/src/gen/lib/Model/DeleteLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLedgerAccountResponse.php b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
index 183ca9bd58..b2d2958448 100644
--- a/src/gen/lib/Model/DeleteLedgerAccountResponse.php
+++ b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLocationResponse.php b/src/gen/lib/Model/DeleteLocationResponse.php
index 9707d41bf3..8dfe141a8e 100644
--- a/src/gen/lib/Model/DeleteLocationResponse.php
+++ b/src/gen/lib/Model/DeleteLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMerchantResponse.php b/src/gen/lib/Model/DeleteMerchantResponse.php
index a9ec269bed..6a7a8118c2 100644
--- a/src/gen/lib/Model/DeleteMerchantResponse.php
+++ b/src/gen/lib/Model/DeleteMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMessageResponse.php b/src/gen/lib/Model/DeleteMessageResponse.php
index c29af6f455..bed01fa2bd 100644
--- a/src/gen/lib/Model/DeleteMessageResponse.php
+++ b/src/gen/lib/Model/DeleteMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierGroupResponse.php b/src/gen/lib/Model/DeleteModifierGroupResponse.php
index 1dad924219..6421c80655 100644
--- a/src/gen/lib/Model/DeleteModifierGroupResponse.php
+++ b/src/gen/lib/Model/DeleteModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierResponse.php b/src/gen/lib/Model/DeleteModifierResponse.php
index c97d067147..e6f1792137 100644
--- a/src/gen/lib/Model/DeleteModifierResponse.php
+++ b/src/gen/lib/Model/DeleteModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteNoteResponse.php b/src/gen/lib/Model/DeleteNoteResponse.php
index 7df23d7aad..487e23568d 100644
--- a/src/gen/lib/Model/DeleteNoteResponse.php
+++ b/src/gen/lib/Model/DeleteNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOpportunityResponse.php b/src/gen/lib/Model/DeleteOpportunityResponse.php
index 5dab63af84..272dc46421 100644
--- a/src/gen/lib/Model/DeleteOpportunityResponse.php
+++ b/src/gen/lib/Model/DeleteOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderResponse.php b/src/gen/lib/Model/DeleteOrderResponse.php
index 712b9f5a6e..106362c3c6 100644
--- a/src/gen/lib/Model/DeleteOrderResponse.php
+++ b/src/gen/lib/Model/DeleteOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderTypeResponse.php b/src/gen/lib/Model/DeleteOrderTypeResponse.php
index d416065235..af51caf040 100644
--- a/src/gen/lib/Model/DeleteOrderTypeResponse.php
+++ b/src/gen/lib/Model/DeleteOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePaymentResponse.php b/src/gen/lib/Model/DeletePaymentResponse.php
index 4429d8965c..b66d30b12b 100644
--- a/src/gen/lib/Model/DeletePaymentResponse.php
+++ b/src/gen/lib/Model/DeletePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePipelineResponse.php b/src/gen/lib/Model/DeletePipelineResponse.php
index 7988041d74..b0fcbc27ef 100644
--- a/src/gen/lib/Model/DeletePipelineResponse.php
+++ b/src/gen/lib/Model/DeletePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePosPaymentResponse.php b/src/gen/lib/Model/DeletePosPaymentResponse.php
index 241b3a6ce4..ee9022f2cf 100644
--- a/src/gen/lib/Model/DeletePosPaymentResponse.php
+++ b/src/gen/lib/Model/DeletePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteProductResponse.php b/src/gen/lib/Model/DeleteProductResponse.php
index ccea254a21..fce705f991 100644
--- a/src/gen/lib/Model/DeleteProductResponse.php
+++ b/src/gen/lib/Model/DeleteProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePurchaseOrderResponse.php b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
index 3afc31af21..7de290f950 100644
--- a/src/gen/lib/Model/DeletePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSharedLinkResponse.php b/src/gen/lib/Model/DeleteSharedLinkResponse.php
index a261526f0b..191fdca7ca 100644
--- a/src/gen/lib/Model/DeleteSharedLinkResponse.php
+++ b/src/gen/lib/Model/DeleteSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSubsidiaryResponse.php b/src/gen/lib/Model/DeleteSubsidiaryResponse.php
index 53f7f78951..4d238038f0 100644
--- a/src/gen/lib/Model/DeleteSubsidiaryResponse.php
+++ b/src/gen/lib/Model/DeleteSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSupplierResponse.php b/src/gen/lib/Model/DeleteSupplierResponse.php
index 077542953a..1e76f41a77 100644
--- a/src/gen/lib/Model/DeleteSupplierResponse.php
+++ b/src/gen/lib/Model/DeleteSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTaxRateResponse.php b/src/gen/lib/Model/DeleteTaxRateResponse.php
index 55a2cb4171..a03af0b3f0 100644
--- a/src/gen/lib/Model/DeleteTaxRateResponse.php
+++ b/src/gen/lib/Model/DeleteTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTenderResponse.php b/src/gen/lib/Model/DeleteTenderResponse.php
index d212a3245e..d2b61e01fe 100644
--- a/src/gen/lib/Model/DeleteTenderResponse.php
+++ b/src/gen/lib/Model/DeleteTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTicketResponse.php b/src/gen/lib/Model/DeleteTicketResponse.php
index 753c383a1e..c5d2aea7b9 100644
--- a/src/gen/lib/Model/DeleteTicketResponse.php
+++ b/src/gen/lib/Model/DeleteTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
index 46c511ada2..5b67f17ffc 100644
--- a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUploadSessionResponse.php b/src/gen/lib/Model/DeleteUploadSessionResponse.php
index 46ff6dcacb..c4ac4f4ccc 100644
--- a/src/gen/lib/Model/DeleteUploadSessionResponse.php
+++ b/src/gen/lib/Model/DeleteUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUserResponse.php b/src/gen/lib/Model/DeleteUserResponse.php
index 3eb823bb30..e3679a605c 100644
--- a/src/gen/lib/Model/DeleteUserResponse.php
+++ b/src/gen/lib/Model/DeleteUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteWebhookResponse.php b/src/gen/lib/Model/DeleteWebhookResponse.php
index 01e6a85703..2da4530c85 100644
--- a/src/gen/lib/Model/DeleteWebhookResponse.php
+++ b/src/gen/lib/Model/DeleteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Department.php b/src/gen/lib/Model/Department.php
index 53894bb7dd..ada170a55a 100644
--- a/src/gen/lib/Model/Department.php
+++ b/src/gen/lib/Model/Department.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Drive.php b/src/gen/lib/Model/Drive.php
index 35f2a8e995..b9d6f3df31 100644
--- a/src/gen/lib/Model/Drive.php
+++ b/src/gen/lib/Model/Drive.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroup.php b/src/gen/lib/Model/DriveGroup.php
index 7a025e8f64..5c56e7f4f2 100644
--- a/src/gen/lib/Model/DriveGroup.php
+++ b/src/gen/lib/Model/DriveGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroupsFilter.php b/src/gen/lib/Model/DriveGroupsFilter.php
index c128c5bf8d..e39631c83f 100644
--- a/src/gen/lib/Model/DriveGroupsFilter.php
+++ b/src/gen/lib/Model/DriveGroupsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DrivesFilter.php b/src/gen/lib/Model/DrivesFilter.php
index dc8e424b20..fd2f8a034e 100644
--- a/src/gen/lib/Model/DrivesFilter.php
+++ b/src/gen/lib/Model/DrivesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceAddress.php b/src/gen/lib/Model/EcommerceAddress.php
index 29c2e5af3a..b72dbd7dd6 100644
--- a/src/gen/lib/Model/EcommerceAddress.php
+++ b/src/gen/lib/Model/EcommerceAddress.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomer.php b/src/gen/lib/Model/EcommerceCustomer.php
index 4f19157bcd..4ae952d9ad 100644
--- a/src/gen/lib/Model/EcommerceCustomer.php
+++ b/src/gen/lib/Model/EcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomerAddresses.php b/src/gen/lib/Model/EcommerceCustomerAddresses.php
index 3b09c6e7c5..f46ba5f686 100644
--- a/src/gen/lib/Model/EcommerceCustomerAddresses.php
+++ b/src/gen/lib/Model/EcommerceCustomerAddresses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomersFilter.php b/src/gen/lib/Model/EcommerceCustomersFilter.php
index 43bf5865e1..e7f7fff187 100644
--- a/src/gen/lib/Model/EcommerceCustomersFilter.php
+++ b/src/gen/lib/Model/EcommerceCustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceDiscount.php b/src/gen/lib/Model/EcommerceDiscount.php
index 807b5272f6..8dd8bd15ee 100644
--- a/src/gen/lib/Model/EcommerceDiscount.php
+++ b/src/gen/lib/Model/EcommerceDiscount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrder.php b/src/gen/lib/Model/EcommerceOrder.php
index a1458ea0bb..edcaa367fc 100644
--- a/src/gen/lib/Model/EcommerceOrder.php
+++ b/src/gen/lib/Model/EcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderLineItem.php b/src/gen/lib/Model/EcommerceOrderLineItem.php
index b181b84caf..d33d01d536 100644
--- a/src/gen/lib/Model/EcommerceOrderLineItem.php
+++ b/src/gen/lib/Model/EcommerceOrderLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderStatus.php b/src/gen/lib/Model/EcommerceOrderStatus.php
index 1e77bc8d81..2f03e4fb36 100644
--- a/src/gen/lib/Model/EcommerceOrderStatus.php
+++ b/src/gen/lib/Model/EcommerceOrderStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrdersFilter.php b/src/gen/lib/Model/EcommerceOrdersFilter.php
index 5a6ef4bf29..317e56ce3d 100644
--- a/src/gen/lib/Model/EcommerceOrdersFilter.php
+++ b/src/gen/lib/Model/EcommerceOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProduct.php b/src/gen/lib/Model/EcommerceProduct.php
index 0b3cac8659..d94a3b9b80 100644
--- a/src/gen/lib/Model/EcommerceProduct.php
+++ b/src/gen/lib/Model/EcommerceProduct.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductCategories.php b/src/gen/lib/Model/EcommerceProductCategories.php
index 931db86c3e..0303beb13a 100644
--- a/src/gen/lib/Model/EcommerceProductCategories.php
+++ b/src/gen/lib/Model/EcommerceProductCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages.php b/src/gen/lib/Model/EcommerceProductImages.php
index d1a39737dc..4fb1cfdc78 100644
--- a/src/gen/lib/Model/EcommerceProductImages.php
+++ b/src/gen/lib/Model/EcommerceProductImages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages1.php b/src/gen/lib/Model/EcommerceProductImages1.php
index 9a4a4bd34e..4197f68c3d 100644
--- a/src/gen/lib/Model/EcommerceProductImages1.php
+++ b/src/gen/lib/Model/EcommerceProductImages1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions.php b/src/gen/lib/Model/EcommerceProductOptions.php
index 45ada5feb7..efc506ff33 100644
--- a/src/gen/lib/Model/EcommerceProductOptions.php
+++ b/src/gen/lib/Model/EcommerceProductOptions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions1.php b/src/gen/lib/Model/EcommerceProductOptions1.php
index 234faf6d09..8c47275cdc 100644
--- a/src/gen/lib/Model/EcommerceProductOptions1.php
+++ b/src/gen/lib/Model/EcommerceProductOptions1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductVariants.php b/src/gen/lib/Model/EcommerceProductVariants.php
index 582c81d941..13c6f40ae3 100644
--- a/src/gen/lib/Model/EcommerceProductVariants.php
+++ b/src/gen/lib/Model/EcommerceProductVariants.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceStore.php b/src/gen/lib/Model/EcommerceStore.php
index 12ed781dc0..f8366207f7 100644
--- a/src/gen/lib/Model/EcommerceStore.php
+++ b/src/gen/lib/Model/EcommerceStore.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Email.php b/src/gen/lib/Model/Email.php
index d2b88cd911..2875071c4f 100644
--- a/src/gen/lib/Model/Email.php
+++ b/src/gen/lib/Model/Email.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Employee.php b/src/gen/lib/Model/Employee.php
index 19073950ed..32c13d1029 100644
--- a/src/gen/lib/Model/Employee.php
+++ b/src/gen/lib/Model/Employee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeCompensation.php b/src/gen/lib/Model/EmployeeCompensation.php
index a7768ee579..bfba261442 100644
--- a/src/gen/lib/Model/EmployeeCompensation.php
+++ b/src/gen/lib/Model/EmployeeCompensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeEmploymentRole.php b/src/gen/lib/Model/EmployeeEmploymentRole.php
index 569ab65cc7..3e8613de67 100644
--- a/src/gen/lib/Model/EmployeeEmploymentRole.php
+++ b/src/gen/lib/Model/EmployeeEmploymentRole.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeJob.php b/src/gen/lib/Model/EmployeeJob.php
index d4c993fce7..9dcd2a49b8 100644
--- a/src/gen/lib/Model/EmployeeJob.php
+++ b/src/gen/lib/Model/EmployeeJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeList.php b/src/gen/lib/Model/EmployeeList.php
index 9056bfd566..02b37a2165 100644
--- a/src/gen/lib/Model/EmployeeList.php
+++ b/src/gen/lib/Model/EmployeeList.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeManager.php b/src/gen/lib/Model/EmployeeManager.php
index efcb38c752..25d4e4602b 100644
--- a/src/gen/lib/Model/EmployeeManager.php
+++ b/src/gen/lib/Model/EmployeeManager.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeePayroll.php b/src/gen/lib/Model/EmployeePayroll.php
index f6212f1445..4f0052b22d 100644
--- a/src/gen/lib/Model/EmployeePayroll.php
+++ b/src/gen/lib/Model/EmployeePayroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeSchedules.php b/src/gen/lib/Model/EmployeeSchedules.php
index cc96efec2b..ea23c880c5 100644
--- a/src/gen/lib/Model/EmployeeSchedules.php
+++ b/src/gen/lib/Model/EmployeeSchedules.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesFilter.php b/src/gen/lib/Model/EmployeesFilter.php
index 4f4a699a03..c8a0cf6d82 100644
--- a/src/gen/lib/Model/EmployeesFilter.php
+++ b/src/gen/lib/Model/EmployeesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesSort.php b/src/gen/lib/Model/EmployeesSort.php
index 4a6f0bd053..5d73d764f3 100644
--- a/src/gen/lib/Model/EmployeesSort.php
+++ b/src/gen/lib/Model/EmployeesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmploymentStatus.php b/src/gen/lib/Model/EmploymentStatus.php
index f0f6737fb1..dbe1d62509 100644
--- a/src/gen/lib/Model/EmploymentStatus.php
+++ b/src/gen/lib/Model/EmploymentStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Error.php b/src/gen/lib/Model/Error.php
index ebe8e4be47..25ab8eced1 100644
--- a/src/gen/lib/Model/Error.php
+++ b/src/gen/lib/Model/Error.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ExecuteWebhookResponse.php b/src/gen/lib/Model/ExecuteWebhookResponse.php
index 3806de2f6b..757c4f3772 100644
--- a/src/gen/lib/Model/ExecuteWebhookResponse.php
+++ b/src/gen/lib/Model/ExecuteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileStorageEventType.php b/src/gen/lib/Model/FileStorageEventType.php
index 55ed91df3a..b3507cfa77 100644
--- a/src/gen/lib/Model/FileStorageEventType.php
+++ b/src/gen/lib/Model/FileStorageEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileType.php b/src/gen/lib/Model/FileType.php
index 66fff58a51..8b841c22b8 100644
--- a/src/gen/lib/Model/FileType.php
+++ b/src/gen/lib/Model/FileType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesFilter.php b/src/gen/lib/Model/FilesFilter.php
index c3b8bb3863..f645c55ac5 100644
--- a/src/gen/lib/Model/FilesFilter.php
+++ b/src/gen/lib/Model/FilesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSearch.php b/src/gen/lib/Model/FilesSearch.php
index 5a1dee4e97..bb874aa551 100644
--- a/src/gen/lib/Model/FilesSearch.php
+++ b/src/gen/lib/Model/FilesSearch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSort.php b/src/gen/lib/Model/FilesSort.php
index 64e0e17a5e..5233f9f36c 100644
--- a/src/gen/lib/Model/FilesSort.php
+++ b/src/gen/lib/Model/FilesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Folder.php b/src/gen/lib/Model/Folder.php
index e3b6df127d..521c4f8092 100644
--- a/src/gen/lib/Model/Folder.php
+++ b/src/gen/lib/Model/Folder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormField.php b/src/gen/lib/Model/FormField.php
index d553d36778..746a3a9bce 100644
--- a/src/gen/lib/Model/FormField.php
+++ b/src/gen/lib/Model/FormField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOption.php b/src/gen/lib/Model/FormFieldOption.php
index 2324a52a62..50972bcf98 100644
--- a/src/gen/lib/Model/FormFieldOption.php
+++ b/src/gen/lib/Model/FormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOptionGroup.php b/src/gen/lib/Model/FormFieldOptionGroup.php
index 66eded07cb..6848b5c325 100644
--- a/src/gen/lib/Model/FormFieldOptionGroup.php
+++ b/src/gen/lib/Model/FormFieldOptionGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Gender.php b/src/gen/lib/Model/Gender.php
index 488418730c..715fd488c5 100644
--- a/src/gen/lib/Model/Gender.php
+++ b/src/gen/lib/Model/Gender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetAccountingDepartmentResponse.php b/src/gen/lib/Model/GetAccountingDepartmentResponse.php
new file mode 100644
index 0000000000..fe22d48642
--- /dev/null
+++ b/src/gen/lib/Model/GetAccountingDepartmentResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class GetAccountingDepartmentResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'GetAccountingDepartmentResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\AccountingDepartment'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\AccountingDepartment
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\AccountingDepartment $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/GetAccountingDepartmentsResponse.php b/src/gen/lib/Model/GetAccountingDepartmentsResponse.php
new file mode 100644
index 0000000000..643d77b998
--- /dev/null
+++ b/src/gen/lib/Model/GetAccountingDepartmentsResponse.php
@@ -0,0 +1,548 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class GetAccountingDepartmentsResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'GetAccountingDepartmentsResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\AccountingDepartment[]',
+ 'meta' => '\Apideck\Client\Model\Meta',
+ 'links' => '\Apideck\Client\Model\Links'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null,
+ 'meta' => null,
+ 'links' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data',
+ 'meta' => 'meta',
+ 'links' => 'links'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData',
+ 'meta' => 'setMeta',
+ 'links' => 'setLinks'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData',
+ 'meta' => 'getMeta',
+ 'links' => 'getLinks'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ $this->container['meta'] = $data['meta'] ?? null;
+ $this->container['links'] = $data['links'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\AccountingDepartment[]
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\AccountingDepartment[] $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+
+ /**
+ * Gets meta
+ *
+ * @return \Apideck\Client\Model\Meta|null
+ */
+ public function getMeta()
+ {
+ return $this->container['meta'];
+ }
+
+ /**
+ * Sets meta
+ *
+ * @param \Apideck\Client\Model\Meta|null $meta meta
+ *
+ * @return self
+ */
+ public function setMeta($meta)
+ {
+ $this->container['meta'] = $meta;
+
+ return $this;
+ }
+
+ /**
+ * Gets links
+ *
+ * @return \Apideck\Client\Model\Links|null
+ */
+ public function getLinks()
+ {
+ return $this->container['links'];
+ }
+
+ /**
+ * Sets links
+ *
+ * @param \Apideck\Client\Model\Links|null $links links
+ *
+ * @return self
+ */
+ public function setLinks($links)
+ {
+ $this->container['links'] = $links;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/GetAccountingLocationResponse.php b/src/gen/lib/Model/GetAccountingLocationResponse.php
new file mode 100644
index 0000000000..0c80bee6ab
--- /dev/null
+++ b/src/gen/lib/Model/GetAccountingLocationResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class GetAccountingLocationResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'GetAccountingLocationResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\AccountingLocation'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\AccountingLocation
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\AccountingLocation $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/GetAccountingLocationsResponse.php b/src/gen/lib/Model/GetAccountingLocationsResponse.php
new file mode 100644
index 0000000000..25d0b19050
--- /dev/null
+++ b/src/gen/lib/Model/GetAccountingLocationsResponse.php
@@ -0,0 +1,548 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class GetAccountingLocationsResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'GetAccountingLocationsResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\AccountingLocation[]',
+ 'meta' => '\Apideck\Client\Model\Meta',
+ 'links' => '\Apideck\Client\Model\Links'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null,
+ 'meta' => null,
+ 'links' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data',
+ 'meta' => 'meta',
+ 'links' => 'links'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData',
+ 'meta' => 'setMeta',
+ 'links' => 'setLinks'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData',
+ 'meta' => 'getMeta',
+ 'links' => 'getLinks'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ $this->container['meta'] = $data['meta'] ?? null;
+ $this->container['links'] = $data['links'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\AccountingLocation[]
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\AccountingLocation[] $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+
+ /**
+ * Gets meta
+ *
+ * @return \Apideck\Client\Model\Meta|null
+ */
+ public function getMeta()
+ {
+ return $this->container['meta'];
+ }
+
+ /**
+ * Sets meta
+ *
+ * @param \Apideck\Client\Model\Meta|null $meta meta
+ *
+ * @return self
+ */
+ public function setMeta($meta)
+ {
+ $this->container['meta'] = $meta;
+
+ return $this;
+ }
+
+ /**
+ * Gets links
+ *
+ * @return \Apideck\Client\Model\Links|null
+ */
+ public function getLinks()
+ {
+ return $this->container['links'];
+ }
+
+ /**
+ * Sets links
+ *
+ * @param \Apideck\Client\Model\Links|null $links links
+ *
+ * @return self
+ */
+ public function setLinks($links)
+ {
+ $this->container['links'] = $links;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/GetActivitiesResponse.php b/src/gen/lib/Model/GetActivitiesResponse.php
index 5427daddb1..39c309a211 100644
--- a/src/gen/lib/Model/GetActivitiesResponse.php
+++ b/src/gen/lib/Model/GetActivitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetActivityResponse.php b/src/gen/lib/Model/GetActivityResponse.php
index a08d74512d..c4d5ad25af 100644
--- a/src/gen/lib/Model/GetActivityResponse.php
+++ b/src/gen/lib/Model/GetActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceCoverageResponse.php b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
index 14e627726e..00404772ec 100644
--- a/src/gen/lib/Model/GetApiResourceCoverageResponse.php
+++ b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceResponse.php b/src/gen/lib/Model/GetApiResourceResponse.php
index f55e36b316..6c89c77984 100644
--- a/src/gen/lib/Model/GetApiResourceResponse.php
+++ b/src/gen/lib/Model/GetApiResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResponse.php b/src/gen/lib/Model/GetApiResponse.php
index a707bbf082..6e635b7ab3 100644
--- a/src/gen/lib/Model/GetApiResponse.php
+++ b/src/gen/lib/Model/GetApiResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApisResponse.php b/src/gen/lib/Model/GetApisResponse.php
index 4be5711272..55ff8adf0e 100644
--- a/src/gen/lib/Model/GetApisResponse.php
+++ b/src/gen/lib/Model/GetApisResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantResponse.php b/src/gen/lib/Model/GetApplicantResponse.php
index 4b8473ae35..fc64830cd2 100644
--- a/src/gen/lib/Model/GetApplicantResponse.php
+++ b/src/gen/lib/Model/GetApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantsResponse.php b/src/gen/lib/Model/GetApplicantsResponse.php
index 9f00dab816..ef3871270a 100644
--- a/src/gen/lib/Model/GetApplicantsResponse.php
+++ b/src/gen/lib/Model/GetApplicantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationResponse.php b/src/gen/lib/Model/GetApplicationResponse.php
index ae98b733f1..b5e80e9c8d 100644
--- a/src/gen/lib/Model/GetApplicationResponse.php
+++ b/src/gen/lib/Model/GetApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationsResponse.php b/src/gen/lib/Model/GetApplicationsResponse.php
index 711c50e4b5..03a924a434 100644
--- a/src/gen/lib/Model/GetApplicationsResponse.php
+++ b/src/gen/lib/Model/GetApplicationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBalanceSheetResponse.php b/src/gen/lib/Model/GetBalanceSheetResponse.php
index 877f933302..a3b8eb25c8 100644
--- a/src/gen/lib/Model/GetBalanceSheetResponse.php
+++ b/src/gen/lib/Model/GetBalanceSheetResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillResponse.php b/src/gen/lib/Model/GetBillResponse.php
index 29affc45ee..ff1cfec87a 100644
--- a/src/gen/lib/Model/GetBillResponse.php
+++ b/src/gen/lib/Model/GetBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillsResponse.php b/src/gen/lib/Model/GetBillsResponse.php
index d2d8751fe3..283e350021 100644
--- a/src/gen/lib/Model/GetBillsResponse.php
+++ b/src/gen/lib/Model/GetBillsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionResponse.php b/src/gen/lib/Model/GetCollectionResponse.php
index f6cc1ea1ac..42a773f5e0 100644
--- a/src/gen/lib/Model/GetCollectionResponse.php
+++ b/src/gen/lib/Model/GetCollectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionTagsResponse.php b/src/gen/lib/Model/GetCollectionTagsResponse.php
index 13e609a97d..6d81b0aea2 100644
--- a/src/gen/lib/Model/GetCollectionTagsResponse.php
+++ b/src/gen/lib/Model/GetCollectionTagsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUserResponse.php b/src/gen/lib/Model/GetCollectionUserResponse.php
index 381426c408..2866fc695e 100644
--- a/src/gen/lib/Model/GetCollectionUserResponse.php
+++ b/src/gen/lib/Model/GetCollectionUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUsersResponse.php b/src/gen/lib/Model/GetCollectionUsersResponse.php
index 0b687b2ae4..2e4126bc2b 100644
--- a/src/gen/lib/Model/GetCollectionUsersResponse.php
+++ b/src/gen/lib/Model/GetCollectionUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionsResponse.php b/src/gen/lib/Model/GetCollectionsResponse.php
index cee3116c97..9645f3721b 100644
--- a/src/gen/lib/Model/GetCollectionsResponse.php
+++ b/src/gen/lib/Model/GetCollectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentResponse.php b/src/gen/lib/Model/GetCommentResponse.php
index d9b218ec1d..e43222d63d 100644
--- a/src/gen/lib/Model/GetCommentResponse.php
+++ b/src/gen/lib/Model/GetCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentsResponse.php b/src/gen/lib/Model/GetCommentsResponse.php
index b849334ec3..34d64210d1 100644
--- a/src/gen/lib/Model/GetCommentsResponse.php
+++ b/src/gen/lib/Model/GetCommentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompaniesResponse.php b/src/gen/lib/Model/GetCompaniesResponse.php
index ac4b827794..00e6abb484 100644
--- a/src/gen/lib/Model/GetCompaniesResponse.php
+++ b/src/gen/lib/Model/GetCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyInfoResponse.php b/src/gen/lib/Model/GetCompanyInfoResponse.php
index efa6ba4c16..09aa1ab698 100644
--- a/src/gen/lib/Model/GetCompanyInfoResponse.php
+++ b/src/gen/lib/Model/GetCompanyInfoResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyResponse.php b/src/gen/lib/Model/GetCompanyResponse.php
index be604a0abc..fbd006df23 100644
--- a/src/gen/lib/Model/GetCompanyResponse.php
+++ b/src/gen/lib/Model/GetCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionResponse.php b/src/gen/lib/Model/GetConnectionResponse.php
index 891a5d12ba..0bb0f49b58 100644
--- a/src/gen/lib/Model/GetConnectionResponse.php
+++ b/src/gen/lib/Model/GetConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionsResponse.php b/src/gen/lib/Model/GetConnectionsResponse.php
index 1663e3fd30..c23a81ae7b 100644
--- a/src/gen/lib/Model/GetConnectionsResponse.php
+++ b/src/gen/lib/Model/GetConnectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
index a56ef5fdfc..f7f2f699bc 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
index f2d91c36db..538f6089c7 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceResponse.php b/src/gen/lib/Model/GetConnectorResourceResponse.php
index ea63603032..87c6fdfe3d 100644
--- a/src/gen/lib/Model/GetConnectorResourceResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
index 9ed5e6fa57..181a55f9c7 100644
--- a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResponse.php b/src/gen/lib/Model/GetConnectorResponse.php
index e7154fb1fe..cc4ceff29d 100644
--- a/src/gen/lib/Model/GetConnectorResponse.php
+++ b/src/gen/lib/Model/GetConnectorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorsResponse.php b/src/gen/lib/Model/GetConnectorsResponse.php
index 33e8d9f513..ae8eb45909 100644
--- a/src/gen/lib/Model/GetConnectorsResponse.php
+++ b/src/gen/lib/Model/GetConnectorsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumerResponse.php b/src/gen/lib/Model/GetConsumerResponse.php
index 9be2119eee..6349791463 100644
--- a/src/gen/lib/Model/GetConsumerResponse.php
+++ b/src/gen/lib/Model/GetConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponse.php b/src/gen/lib/Model/GetConsumersResponse.php
index 8bf87a3adc..42acd504b1 100644
--- a/src/gen/lib/Model/GetConsumersResponse.php
+++ b/src/gen/lib/Model/GetConsumersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponseData.php b/src/gen/lib/Model/GetConsumersResponseData.php
index 1122cbab50..302feaf41c 100644
--- a/src/gen/lib/Model/GetConsumersResponseData.php
+++ b/src/gen/lib/Model/GetConsumersResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactResponse.php b/src/gen/lib/Model/GetContactResponse.php
index 4a13a54740..ab22213a2e 100644
--- a/src/gen/lib/Model/GetContactResponse.php
+++ b/src/gen/lib/Model/GetContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactsResponse.php b/src/gen/lib/Model/GetContactsResponse.php
index c82e862ad0..d0ceeec53b 100644
--- a/src/gen/lib/Model/GetContactsResponse.php
+++ b/src/gen/lib/Model/GetContactsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNoteResponse.php b/src/gen/lib/Model/GetCreditNoteResponse.php
index a2792cd58b..0bdfba3dd6 100644
--- a/src/gen/lib/Model/GetCreditNoteResponse.php
+++ b/src/gen/lib/Model/GetCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNotesResponse.php b/src/gen/lib/Model/GetCreditNotesResponse.php
index 4e367c0a6a..0558c7255f 100644
--- a/src/gen/lib/Model/GetCreditNotesResponse.php
+++ b/src/gen/lib/Model/GetCreditNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomFieldsResponse.php b/src/gen/lib/Model/GetCustomFieldsResponse.php
index f747e98585..7599072676 100644
--- a/src/gen/lib/Model/GetCustomFieldsResponse.php
+++ b/src/gen/lib/Model/GetCustomFieldsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomMappingResponse.php b/src/gen/lib/Model/GetCustomMappingResponse.php
index 505bb2b6d1..2a819e510a 100644
--- a/src/gen/lib/Model/GetCustomMappingResponse.php
+++ b/src/gen/lib/Model/GetCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomerResponse.php b/src/gen/lib/Model/GetCustomerResponse.php
index dda10ed11e..81367c1426 100644
--- a/src/gen/lib/Model/GetCustomerResponse.php
+++ b/src/gen/lib/Model/GetCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomersResponse.php b/src/gen/lib/Model/GetCustomersResponse.php
index c56304319b..8a180ec8fd 100644
--- a/src/gen/lib/Model/GetCustomersResponse.php
+++ b/src/gen/lib/Model/GetCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentResponse.php b/src/gen/lib/Model/GetDepartmentResponse.php
index 2ba1431c11..01075353e2 100644
--- a/src/gen/lib/Model/GetDepartmentResponse.php
+++ b/src/gen/lib/Model/GetDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentsResponse.php b/src/gen/lib/Model/GetDepartmentsResponse.php
index 9c5fc37138..cdc320e440 100644
--- a/src/gen/lib/Model/GetDepartmentsResponse.php
+++ b/src/gen/lib/Model/GetDepartmentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupResponse.php b/src/gen/lib/Model/GetDriveGroupResponse.php
index fac2a22d5e..22bd4d1cc8 100644
--- a/src/gen/lib/Model/GetDriveGroupResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupsResponse.php b/src/gen/lib/Model/GetDriveGroupsResponse.php
index 348204be8a..501d6eaab5 100644
--- a/src/gen/lib/Model/GetDriveGroupsResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveResponse.php b/src/gen/lib/Model/GetDriveResponse.php
index 90ba2fb826..7e97b9ba21 100644
--- a/src/gen/lib/Model/GetDriveResponse.php
+++ b/src/gen/lib/Model/GetDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDrivesResponse.php b/src/gen/lib/Model/GetDrivesResponse.php
index b66c7fb1db..e17942f96c 100644
--- a/src/gen/lib/Model/GetDrivesResponse.php
+++ b/src/gen/lib/Model/GetDrivesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomerResponse.php b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
index 861ff41d11..e57947d828 100644
--- a/src/gen/lib/Model/GetEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomersResponse.php b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
index 0de5ca613b..e87df64d25 100644
--- a/src/gen/lib/Model/GetEcommerceCustomersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrderResponse.php b/src/gen/lib/Model/GetEcommerceOrderResponse.php
index a5d29808a2..f4fdcf06dc 100644
--- a/src/gen/lib/Model/GetEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrdersResponse.php b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
index 6c22819c49..da84b73052 100644
--- a/src/gen/lib/Model/GetEcommerceOrdersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollResponse.php b/src/gen/lib/Model/GetEmployeePayrollResponse.php
index e4634283f1..b46a29ea9d 100644
--- a/src/gen/lib/Model/GetEmployeePayrollResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollsResponse.php b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
index 5c30fb27eb..ed4d4644b1 100644
--- a/src/gen/lib/Model/GetEmployeePayrollsResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeResponse.php b/src/gen/lib/Model/GetEmployeeResponse.php
index 10bd6864fc..57765dbc7a 100644
--- a/src/gen/lib/Model/GetEmployeeResponse.php
+++ b/src/gen/lib/Model/GetEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
index 3f4801ff17..025a7259b7 100644
--- a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
+++ b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeesResponse.php b/src/gen/lib/Model/GetEmployeesResponse.php
index 3eb2b2a51b..44b23db797 100644
--- a/src/gen/lib/Model/GetEmployeesResponse.php
+++ b/src/gen/lib/Model/GetEmployeesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFileResponse.php b/src/gen/lib/Model/GetFileResponse.php
index 291c42190b..638a86bf2d 100644
--- a/src/gen/lib/Model/GetFileResponse.php
+++ b/src/gen/lib/Model/GetFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFilesResponse.php b/src/gen/lib/Model/GetFilesResponse.php
index 2028472222..7f4fbdccba 100644
--- a/src/gen/lib/Model/GetFilesResponse.php
+++ b/src/gen/lib/Model/GetFilesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFolderResponse.php b/src/gen/lib/Model/GetFolderResponse.php
index 150154bf31..519d65b80d 100644
--- a/src/gen/lib/Model/GetFolderResponse.php
+++ b/src/gen/lib/Model/GetFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFoldersResponse.php b/src/gen/lib/Model/GetFoldersResponse.php
index c73165eccf..f70def64c3 100644
--- a/src/gen/lib/Model/GetFoldersResponse.php
+++ b/src/gen/lib/Model/GetFoldersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompaniesResponse.php b/src/gen/lib/Model/GetHrisCompaniesResponse.php
index df989b4363..43c4703ea5 100644
--- a/src/gen/lib/Model/GetHrisCompaniesResponse.php
+++ b/src/gen/lib/Model/GetHrisCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompanyResponse.php b/src/gen/lib/Model/GetHrisCompanyResponse.php
index 69dc84eb58..56fc541fd4 100644
--- a/src/gen/lib/Model/GetHrisCompanyResponse.php
+++ b/src/gen/lib/Model/GetHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobResponse.php b/src/gen/lib/Model/GetHrisJobResponse.php
index e9c8ba7f12..5dfc82b3c1 100644
--- a/src/gen/lib/Model/GetHrisJobResponse.php
+++ b/src/gen/lib/Model/GetHrisJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobsResponse.php b/src/gen/lib/Model/GetHrisJobsResponse.php
index a386557f5e..602552261e 100644
--- a/src/gen/lib/Model/GetHrisJobsResponse.php
+++ b/src/gen/lib/Model/GetHrisJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemResponse.php b/src/gen/lib/Model/GetInvoiceItemResponse.php
index a848714521..3a7a1a618f 100644
--- a/src/gen/lib/Model/GetInvoiceItemResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemsResponse.php b/src/gen/lib/Model/GetInvoiceItemsResponse.php
index a53cf8cc1d..5d057f8f27 100644
--- a/src/gen/lib/Model/GetInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceResponse.php b/src/gen/lib/Model/GetInvoiceResponse.php
index 9efe58cd62..55e8876a97 100644
--- a/src/gen/lib/Model/GetInvoiceResponse.php
+++ b/src/gen/lib/Model/GetInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoicesResponse.php b/src/gen/lib/Model/GetInvoicesResponse.php
index 3fff00dc04..08a400a480 100644
--- a/src/gen/lib/Model/GetInvoicesResponse.php
+++ b/src/gen/lib/Model/GetInvoicesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemResponse.php b/src/gen/lib/Model/GetItemResponse.php
index 4ef8472842..7eb1df0b24 100644
--- a/src/gen/lib/Model/GetItemResponse.php
+++ b/src/gen/lib/Model/GetItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemsResponse.php b/src/gen/lib/Model/GetItemsResponse.php
index 883f32369b..71a1b05226 100644
--- a/src/gen/lib/Model/GetItemsResponse.php
+++ b/src/gen/lib/Model/GetItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobResponse.php b/src/gen/lib/Model/GetJobResponse.php
index 0e3dcd1b7c..3d20df102c 100644
--- a/src/gen/lib/Model/GetJobResponse.php
+++ b/src/gen/lib/Model/GetJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobsResponse.php b/src/gen/lib/Model/GetJobsResponse.php
index a15116ea35..216e7ef18e 100644
--- a/src/gen/lib/Model/GetJobsResponse.php
+++ b/src/gen/lib/Model/GetJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntriesResponse.php b/src/gen/lib/Model/GetJournalEntriesResponse.php
index cd95805a45..ffbaec62b9 100644
--- a/src/gen/lib/Model/GetJournalEntriesResponse.php
+++ b/src/gen/lib/Model/GetJournalEntriesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntryResponse.php b/src/gen/lib/Model/GetJournalEntryResponse.php
index f20fb3b3d5..61d024f6a4 100644
--- a/src/gen/lib/Model/GetJournalEntryResponse.php
+++ b/src/gen/lib/Model/GetJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadResponse.php b/src/gen/lib/Model/GetLeadResponse.php
index 2d0e2db5a9..ddc8042e78 100644
--- a/src/gen/lib/Model/GetLeadResponse.php
+++ b/src/gen/lib/Model/GetLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadsResponse.php b/src/gen/lib/Model/GetLeadsResponse.php
index 8cdebb25c8..bfc83713f5 100644
--- a/src/gen/lib/Model/GetLeadsResponse.php
+++ b/src/gen/lib/Model/GetLeadsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountResponse.php b/src/gen/lib/Model/GetLedgerAccountResponse.php
index 1f54845e4d..6a90cb0d6b 100644
--- a/src/gen/lib/Model/GetLedgerAccountResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountsResponse.php b/src/gen/lib/Model/GetLedgerAccountsResponse.php
index d3973b85ce..005d3af4ae 100644
--- a/src/gen/lib/Model/GetLedgerAccountsResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationResponse.php b/src/gen/lib/Model/GetLocationResponse.php
index 24bad1a42e..ec48f1a9da 100644
--- a/src/gen/lib/Model/GetLocationResponse.php
+++ b/src/gen/lib/Model/GetLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationsResponse.php b/src/gen/lib/Model/GetLocationsResponse.php
index 42c9dde063..61410f0d3f 100644
--- a/src/gen/lib/Model/GetLocationsResponse.php
+++ b/src/gen/lib/Model/GetLocationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLogsResponse.php b/src/gen/lib/Model/GetLogsResponse.php
index a33c10ff8f..329badf46b 100644
--- a/src/gen/lib/Model/GetLogsResponse.php
+++ b/src/gen/lib/Model/GetLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantResponse.php b/src/gen/lib/Model/GetMerchantResponse.php
index 4befeb6bf5..46a3d12cdd 100644
--- a/src/gen/lib/Model/GetMerchantResponse.php
+++ b/src/gen/lib/Model/GetMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantsResponse.php b/src/gen/lib/Model/GetMerchantsResponse.php
index 725ffbb1cb..fd083052a9 100644
--- a/src/gen/lib/Model/GetMerchantsResponse.php
+++ b/src/gen/lib/Model/GetMerchantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessageResponse.php b/src/gen/lib/Model/GetMessageResponse.php
index 1dbcde5e7d..4eeb04e5f8 100644
--- a/src/gen/lib/Model/GetMessageResponse.php
+++ b/src/gen/lib/Model/GetMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessagesResponse.php b/src/gen/lib/Model/GetMessagesResponse.php
index 774cab0c51..fc73f38576 100644
--- a/src/gen/lib/Model/GetMessagesResponse.php
+++ b/src/gen/lib/Model/GetMessagesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupResponse.php b/src/gen/lib/Model/GetModifierGroupResponse.php
index 23dc9ef10a..ad66b6a574 100644
--- a/src/gen/lib/Model/GetModifierGroupResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupsResponse.php b/src/gen/lib/Model/GetModifierGroupsResponse.php
index 8487eab280..1b706f0c69 100644
--- a/src/gen/lib/Model/GetModifierGroupsResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierResponse.php b/src/gen/lib/Model/GetModifierResponse.php
index f484de209e..900a0af191 100644
--- a/src/gen/lib/Model/GetModifierResponse.php
+++ b/src/gen/lib/Model/GetModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifiersResponse.php b/src/gen/lib/Model/GetModifiersResponse.php
index 4776a14267..adedd8ed30 100644
--- a/src/gen/lib/Model/GetModifiersResponse.php
+++ b/src/gen/lib/Model/GetModifiersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNoteResponse.php b/src/gen/lib/Model/GetNoteResponse.php
index 5190c9db6a..8bc135aee8 100644
--- a/src/gen/lib/Model/GetNoteResponse.php
+++ b/src/gen/lib/Model/GetNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNotesResponse.php b/src/gen/lib/Model/GetNotesResponse.php
index fec29c46a0..0e3e8ae85b 100644
--- a/src/gen/lib/Model/GetNotesResponse.php
+++ b/src/gen/lib/Model/GetNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunitiesResponse.php b/src/gen/lib/Model/GetOpportunitiesResponse.php
index 3c7c119dae..b5d93404e6 100644
--- a/src/gen/lib/Model/GetOpportunitiesResponse.php
+++ b/src/gen/lib/Model/GetOpportunitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunityResponse.php b/src/gen/lib/Model/GetOpportunityResponse.php
index 22362c99d4..8d3c54dfad 100644
--- a/src/gen/lib/Model/GetOpportunityResponse.php
+++ b/src/gen/lib/Model/GetOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderResponse.php b/src/gen/lib/Model/GetOrderResponse.php
index d63085f24c..cb54980ab9 100644
--- a/src/gen/lib/Model/GetOrderResponse.php
+++ b/src/gen/lib/Model/GetOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypeResponse.php b/src/gen/lib/Model/GetOrderTypeResponse.php
index 918be67627..5202aae847 100644
--- a/src/gen/lib/Model/GetOrderTypeResponse.php
+++ b/src/gen/lib/Model/GetOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypesResponse.php b/src/gen/lib/Model/GetOrderTypesResponse.php
index 80bc7b27c9..dd66dc0189 100644
--- a/src/gen/lib/Model/GetOrderTypesResponse.php
+++ b/src/gen/lib/Model/GetOrderTypesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrdersResponse.php b/src/gen/lib/Model/GetOrdersResponse.php
index f9d38fd967..ceffcfdbaf 100644
--- a/src/gen/lib/Model/GetOrdersResponse.php
+++ b/src/gen/lib/Model/GetOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentResponse.php b/src/gen/lib/Model/GetPaymentResponse.php
index d556d6b493..e2137e03d3 100644
--- a/src/gen/lib/Model/GetPaymentResponse.php
+++ b/src/gen/lib/Model/GetPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentsResponse.php b/src/gen/lib/Model/GetPaymentsResponse.php
index 0578a5a69d..49966a1839 100644
--- a/src/gen/lib/Model/GetPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollResponse.php b/src/gen/lib/Model/GetPayrollResponse.php
index 650578a5b8..23ad466d68 100644
--- a/src/gen/lib/Model/GetPayrollResponse.php
+++ b/src/gen/lib/Model/GetPayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollsResponse.php b/src/gen/lib/Model/GetPayrollsResponse.php
index 498b6a3b37..0ad814d3d7 100644
--- a/src/gen/lib/Model/GetPayrollsResponse.php
+++ b/src/gen/lib/Model/GetPayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelineResponse.php b/src/gen/lib/Model/GetPipelineResponse.php
index 983352ece6..78e390b385 100644
--- a/src/gen/lib/Model/GetPipelineResponse.php
+++ b/src/gen/lib/Model/GetPipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelinesResponse.php b/src/gen/lib/Model/GetPipelinesResponse.php
index a36db9662b..0c0cb429fb 100644
--- a/src/gen/lib/Model/GetPipelinesResponse.php
+++ b/src/gen/lib/Model/GetPipelinesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentResponse.php b/src/gen/lib/Model/GetPosPaymentResponse.php
index fc95135306..06ea5fb97e 100644
--- a/src/gen/lib/Model/GetPosPaymentResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentsResponse.php b/src/gen/lib/Model/GetPosPaymentsResponse.php
index 2c9c4155c4..807265f6d1 100644
--- a/src/gen/lib/Model/GetPosPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductResponse.php b/src/gen/lib/Model/GetProductResponse.php
index dc570da8cc..9ac0d8f0d3 100644
--- a/src/gen/lib/Model/GetProductResponse.php
+++ b/src/gen/lib/Model/GetProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductsResponse.php b/src/gen/lib/Model/GetProductsResponse.php
index 3521073e27..5bbee9219a 100644
--- a/src/gen/lib/Model/GetProductsResponse.php
+++ b/src/gen/lib/Model/GetProductsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProfitAndLossResponse.php b/src/gen/lib/Model/GetProfitAndLossResponse.php
index dd913abe72..f0508d9676 100644
--- a/src/gen/lib/Model/GetProfitAndLossResponse.php
+++ b/src/gen/lib/Model/GetProfitAndLossResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrderResponse.php b/src/gen/lib/Model/GetPurchaseOrderResponse.php
index 3b8fb6ea9c..1e5b2a191a 100644
--- a/src/gen/lib/Model/GetPurchaseOrderResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrdersResponse.php b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
index cf7e384ecb..a112aa6526 100644
--- a/src/gen/lib/Model/GetPurchaseOrdersResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceExampleResponse.php b/src/gen/lib/Model/GetResourceExampleResponse.php
index 5ec549a671..f9da283279 100644
--- a/src/gen/lib/Model/GetResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceSchemaResponse.php b/src/gen/lib/Model/GetResourceSchemaResponse.php
index 2cdd3b10db..63b4d42ff2 100644
--- a/src/gen/lib/Model/GetResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinkResponse.php b/src/gen/lib/Model/GetSharedLinkResponse.php
index 4415512951..2894c07ee5 100644
--- a/src/gen/lib/Model/GetSharedLinkResponse.php
+++ b/src/gen/lib/Model/GetSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinksResponse.php b/src/gen/lib/Model/GetSharedLinksResponse.php
index 7f5bb15ced..68c0fbe049 100644
--- a/src/gen/lib/Model/GetSharedLinksResponse.php
+++ b/src/gen/lib/Model/GetSharedLinksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoreResponse.php b/src/gen/lib/Model/GetStoreResponse.php
index e8671fe18c..8e87810a2e 100644
--- a/src/gen/lib/Model/GetStoreResponse.php
+++ b/src/gen/lib/Model/GetStoreResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoresResponse.php b/src/gen/lib/Model/GetStoresResponse.php
index fe4488e1d3..f332674653 100644
--- a/src/gen/lib/Model/GetStoresResponse.php
+++ b/src/gen/lib/Model/GetStoresResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSubsidiariesResponse.php b/src/gen/lib/Model/GetSubsidiariesResponse.php
index e9e8b33303..7cad938f0d 100644
--- a/src/gen/lib/Model/GetSubsidiariesResponse.php
+++ b/src/gen/lib/Model/GetSubsidiariesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSubsidiaryResponse.php b/src/gen/lib/Model/GetSubsidiaryResponse.php
index 0de1f4aab2..4b2bae1ed7 100644
--- a/src/gen/lib/Model/GetSubsidiaryResponse.php
+++ b/src/gen/lib/Model/GetSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSupplierResponse.php b/src/gen/lib/Model/GetSupplierResponse.php
index a0b06d66b1..d0b91c0ef2 100644
--- a/src/gen/lib/Model/GetSupplierResponse.php
+++ b/src/gen/lib/Model/GetSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSuppliersResponse.php b/src/gen/lib/Model/GetSuppliersResponse.php
index e87cd6d210..620ef198d9 100644
--- a/src/gen/lib/Model/GetSuppliersResponse.php
+++ b/src/gen/lib/Model/GetSuppliersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRateResponse.php b/src/gen/lib/Model/GetTaxRateResponse.php
index cbc631eaee..d9891c667e 100644
--- a/src/gen/lib/Model/GetTaxRateResponse.php
+++ b/src/gen/lib/Model/GetTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRatesResponse.php b/src/gen/lib/Model/GetTaxRatesResponse.php
index 80a5e67fe2..645ad43102 100644
--- a/src/gen/lib/Model/GetTaxRatesResponse.php
+++ b/src/gen/lib/Model/GetTaxRatesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTenderResponse.php b/src/gen/lib/Model/GetTenderResponse.php
index 775eb9223b..5cad0fd272 100644
--- a/src/gen/lib/Model/GetTenderResponse.php
+++ b/src/gen/lib/Model/GetTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTendersResponse.php b/src/gen/lib/Model/GetTendersResponse.php
index 9f062169e1..2f735b6e9a 100644
--- a/src/gen/lib/Model/GetTendersResponse.php
+++ b/src/gen/lib/Model/GetTendersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketResponse.php b/src/gen/lib/Model/GetTicketResponse.php
index cf99a8ab28..1b2c508b2a 100644
--- a/src/gen/lib/Model/GetTicketResponse.php
+++ b/src/gen/lib/Model/GetTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketsResponse.php b/src/gen/lib/Model/GetTicketsResponse.php
index ed33338a42..342127f3a8 100644
--- a/src/gen/lib/Model/GetTicketsResponse.php
+++ b/src/gen/lib/Model/GetTicketsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestResponse.php b/src/gen/lib/Model/GetTimeOffRequestResponse.php
index 39da1d94a9..74aaa7b8ec 100644
--- a/src/gen/lib/Model/GetTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestsResponse.php b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
index dc4f02dc53..552aaddfe4 100644
--- a/src/gen/lib/Model/GetTimeOffRequestsResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUploadSessionResponse.php b/src/gen/lib/Model/GetUploadSessionResponse.php
index a72706751d..ae6e090000 100644
--- a/src/gen/lib/Model/GetUploadSessionResponse.php
+++ b/src/gen/lib/Model/GetUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUserResponse.php b/src/gen/lib/Model/GetUserResponse.php
index 7a7fcbce85..571ec1dcdd 100644
--- a/src/gen/lib/Model/GetUserResponse.php
+++ b/src/gen/lib/Model/GetUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUsersResponse.php b/src/gen/lib/Model/GetUsersResponse.php
index 92268134c4..122c035f51 100644
--- a/src/gen/lib/Model/GetUsersResponse.php
+++ b/src/gen/lib/Model/GetUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookEventLogsResponse.php b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
index 7f08c9f7b0..0d3732498a 100644
--- a/src/gen/lib/Model/GetWebhookEventLogsResponse.php
+++ b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookResponse.php b/src/gen/lib/Model/GetWebhookResponse.php
index da57851478..98a97e7a15 100644
--- a/src/gen/lib/Model/GetWebhookResponse.php
+++ b/src/gen/lib/Model/GetWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhooksResponse.php b/src/gen/lib/Model/GetWebhooksResponse.php
index 7d63e2f646..19dc5fdca2 100644
--- a/src/gen/lib/Model/GetWebhooksResponse.php
+++ b/src/gen/lib/Model/GetWebhooksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisCompany.php b/src/gen/lib/Model/HrisCompany.php
index 9ea73a7fe4..89890b0b5e 100644
--- a/src/gen/lib/Model/HrisCompany.php
+++ b/src/gen/lib/Model/HrisCompany.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisEventType.php b/src/gen/lib/Model/HrisEventType.php
index ea6f34345a..c53f9e600f 100644
--- a/src/gen/lib/Model/HrisEventType.php
+++ b/src/gen/lib/Model/HrisEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJob.php b/src/gen/lib/Model/HrisJob.php
index 29b7d2b0fc..f585a2ef7f 100644
--- a/src/gen/lib/Model/HrisJob.php
+++ b/src/gen/lib/Model/HrisJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobLocation.php b/src/gen/lib/Model/HrisJobLocation.php
index 3984b35c26..edd60f800d 100644
--- a/src/gen/lib/Model/HrisJobLocation.php
+++ b/src/gen/lib/Model/HrisJobLocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobs.php b/src/gen/lib/Model/HrisJobs.php
index ede90c689b..24b84d120a 100644
--- a/src/gen/lib/Model/HrisJobs.php
+++ b/src/gen/lib/Model/HrisJobs.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IntegrationState.php b/src/gen/lib/Model/IntegrationState.php
index b53c2dede4..5493b7e2c4 100644
--- a/src/gen/lib/Model/IntegrationState.php
+++ b/src/gen/lib/Model/IntegrationState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Invoice.php b/src/gen/lib/Model/Invoice.php
index 0e49ca8a04..f4e2307523 100644
--- a/src/gen/lib/Model/Invoice.php
+++ b/src/gen/lib/Model/Invoice.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItem.php b/src/gen/lib/Model/InvoiceItem.php
index 8a42983463..3a78f6bfb1 100644
--- a/src/gen/lib/Model/InvoiceItem.php
+++ b/src/gen/lib/Model/InvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemSalesDetails.php b/src/gen/lib/Model/InvoiceItemSalesDetails.php
index 3532e08385..db06c1f158 100644
--- a/src/gen/lib/Model/InvoiceItemSalesDetails.php
+++ b/src/gen/lib/Model/InvoiceItemSalesDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemsFilter.php b/src/gen/lib/Model/InvoiceItemsFilter.php
index e891921336..aa96418024 100644
--- a/src/gen/lib/Model/InvoiceItemsFilter.php
+++ b/src/gen/lib/Model/InvoiceItemsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceLineItem.php b/src/gen/lib/Model/InvoiceLineItem.php
index 22fde2e8c5..028c664db6 100644
--- a/src/gen/lib/Model/InvoiceLineItem.php
+++ b/src/gen/lib/Model/InvoiceLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceResponse.php b/src/gen/lib/Model/InvoiceResponse.php
index 7d5e7dce54..20148a3894 100644
--- a/src/gen/lib/Model/InvoiceResponse.php
+++ b/src/gen/lib/Model/InvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesFilter.php b/src/gen/lib/Model/InvoicesFilter.php
index b9953757f0..859197129e 100644
--- a/src/gen/lib/Model/InvoicesFilter.php
+++ b/src/gen/lib/Model/InvoicesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesSort.php b/src/gen/lib/Model/InvoicesSort.php
index d9c85399b8..62e5075e46 100644
--- a/src/gen/lib/Model/InvoicesSort.php
+++ b/src/gen/lib/Model/InvoicesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssueTrackingEventType.php b/src/gen/lib/Model/IssueTrackingEventType.php
index 29985f046b..fac8c441b0 100644
--- a/src/gen/lib/Model/IssueTrackingEventType.php
+++ b/src/gen/lib/Model/IssueTrackingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssuesFilter.php b/src/gen/lib/Model/IssuesFilter.php
index a7fc7bb326..610179194a 100644
--- a/src/gen/lib/Model/IssuesFilter.php
+++ b/src/gen/lib/Model/IssuesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Item.php b/src/gen/lib/Model/Item.php
index 21f237e3b9..2f10a1d4e3 100644
--- a/src/gen/lib/Model/Item.php
+++ b/src/gen/lib/Model/Item.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Job.php b/src/gen/lib/Model/Job.php
index 49d478e63f..48e47e4f04 100644
--- a/src/gen/lib/Model/Job.php
+++ b/src/gen/lib/Model/Job.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobLinks.php b/src/gen/lib/Model/JobLinks.php
index 6d4be3e225..d168a1993a 100644
--- a/src/gen/lib/Model/JobLinks.php
+++ b/src/gen/lib/Model/JobLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobSalary.php b/src/gen/lib/Model/JobSalary.php
index e880a3a15c..c9a53f67a8 100644
--- a/src/gen/lib/Model/JobSalary.php
+++ b/src/gen/lib/Model/JobSalary.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobStatus.php b/src/gen/lib/Model/JobStatus.php
index 4d112b83e3..5429f52b9d 100644
--- a/src/gen/lib/Model/JobStatus.php
+++ b/src/gen/lib/Model/JobStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesFilter.php b/src/gen/lib/Model/JournalEntriesFilter.php
index fa2daf51e0..6bf6430ab9 100644
--- a/src/gen/lib/Model/JournalEntriesFilter.php
+++ b/src/gen/lib/Model/JournalEntriesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesSort.php b/src/gen/lib/Model/JournalEntriesSort.php
index f1f8b0d898..aab460d1eb 100644
--- a/src/gen/lib/Model/JournalEntriesSort.php
+++ b/src/gen/lib/Model/JournalEntriesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntry.php b/src/gen/lib/Model/JournalEntry.php
index a810e420ce..f55ae4cf53 100644
--- a/src/gen/lib/Model/JournalEntry.php
+++ b/src/gen/lib/Model/JournalEntry.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntryLineItem.php b/src/gen/lib/Model/JournalEntryLineItem.php
index 31c2e4d71e..de5e720a44 100644
--- a/src/gen/lib/Model/JournalEntryLineItem.php
+++ b/src/gen/lib/Model/JournalEntryLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Lead.php b/src/gen/lib/Model/Lead.php
index 75cc01920d..b2117a8171 100644
--- a/src/gen/lib/Model/Lead.php
+++ b/src/gen/lib/Model/Lead.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadEventType.php b/src/gen/lib/Model/LeadEventType.php
index eaa11ee7ad..030ed73e6e 100644
--- a/src/gen/lib/Model/LeadEventType.php
+++ b/src/gen/lib/Model/LeadEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsFilter.php b/src/gen/lib/Model/LeadsFilter.php
index 084609e72b..340d757334 100644
--- a/src/gen/lib/Model/LeadsFilter.php
+++ b/src/gen/lib/Model/LeadsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsSort.php b/src/gen/lib/Model/LeadsSort.php
index 923ae47e2a..891fb76c53 100644
--- a/src/gen/lib/Model/LeadsSort.php
+++ b/src/gen/lib/Model/LeadsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccount.php b/src/gen/lib/Model/LedgerAccount.php
index 1109eb7bac..f73a0a285a 100644
--- a/src/gen/lib/Model/LedgerAccount.php
+++ b/src/gen/lib/Model/LedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountCategories.php b/src/gen/lib/Model/LedgerAccountCategories.php
index c94489e8c1..d2812e93f7 100644
--- a/src/gen/lib/Model/LedgerAccountCategories.php
+++ b/src/gen/lib/Model/LedgerAccountCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountParentAccount.php b/src/gen/lib/Model/LedgerAccountParentAccount.php
index a942c9658f..9fc7dad2a2 100644
--- a/src/gen/lib/Model/LedgerAccountParentAccount.php
+++ b/src/gen/lib/Model/LedgerAccountParentAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsFilter.php b/src/gen/lib/Model/LedgerAccountsFilter.php
index a38e266e8b..6eb1f59690 100644
--- a/src/gen/lib/Model/LedgerAccountsFilter.php
+++ b/src/gen/lib/Model/LedgerAccountsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsSort.php b/src/gen/lib/Model/LedgerAccountsSort.php
index 5a871258c5..bd6bf3c11f 100644
--- a/src/gen/lib/Model/LedgerAccountsSort.php
+++ b/src/gen/lib/Model/LedgerAccountsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedConnectorResource.php b/src/gen/lib/Model/LinkedConnectorResource.php
index 4b0d2cee6e..3abb9a74af 100644
--- a/src/gen/lib/Model/LinkedConnectorResource.php
+++ b/src/gen/lib/Model/LinkedConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedCustomer.php b/src/gen/lib/Model/LinkedCustomer.php
index d5c58af633..d415de6913 100644
--- a/src/gen/lib/Model/LinkedCustomer.php
+++ b/src/gen/lib/Model/LinkedCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceCustomer.php b/src/gen/lib/Model/LinkedEcommerceCustomer.php
index 144b42719d..7bdd39fe77 100644
--- a/src/gen/lib/Model/LinkedEcommerceCustomer.php
+++ b/src/gen/lib/Model/LinkedEcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceOrder.php b/src/gen/lib/Model/LinkedEcommerceOrder.php
index 3cea0068da..06159e5653 100644
--- a/src/gen/lib/Model/LinkedEcommerceOrder.php
+++ b/src/gen/lib/Model/LinkedEcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedFolder.php b/src/gen/lib/Model/LinkedFolder.php
index d6863264e2..b642897e12 100644
--- a/src/gen/lib/Model/LinkedFolder.php
+++ b/src/gen/lib/Model/LinkedFolder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedInvoiceItem.php b/src/gen/lib/Model/LinkedInvoiceItem.php
index 6dabef709a..cc844de7bc 100644
--- a/src/gen/lib/Model/LinkedInvoiceItem.php
+++ b/src/gen/lib/Model/LinkedInvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedLedgerAccount.php b/src/gen/lib/Model/LinkedLedgerAccount.php
index 488fdca9a6..de5c02fa9a 100644
--- a/src/gen/lib/Model/LinkedLedgerAccount.php
+++ b/src/gen/lib/Model/LinkedLedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedParentCustomer.php b/src/gen/lib/Model/LinkedParentCustomer.php
index dcf67bd1bf..4107fa4cc5 100644
--- a/src/gen/lib/Model/LinkedParentCustomer.php
+++ b/src/gen/lib/Model/LinkedParentCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedSupplier.php b/src/gen/lib/Model/LinkedSupplier.php
index 776f1a36b8..103b09c1a5 100644
--- a/src/gen/lib/Model/LinkedSupplier.php
+++ b/src/gen/lib/Model/LinkedSupplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTaxRate.php b/src/gen/lib/Model/LinkedTaxRate.php
index 2b84912cb2..71c2e6a2ee 100644
--- a/src/gen/lib/Model/LinkedTaxRate.php
+++ b/src/gen/lib/Model/LinkedTaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTrackingCategory.php b/src/gen/lib/Model/LinkedTrackingCategory.php
index 306816aba0..602ff3ccd0 100644
--- a/src/gen/lib/Model/LinkedTrackingCategory.php
+++ b/src/gen/lib/Model/LinkedTrackingCategory.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Links.php b/src/gen/lib/Model/Links.php
index c6c8f6bf26..210ee80441 100644
--- a/src/gen/lib/Model/Links.php
+++ b/src/gen/lib/Model/Links.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Location.php b/src/gen/lib/Model/Location.php
index c6f4b90ca7..61611e6990 100644
--- a/src/gen/lib/Model/Location.php
+++ b/src/gen/lib/Model/Location.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Log.php b/src/gen/lib/Model/Log.php
index 4753aec8ec..1391ef8e73 100644
--- a/src/gen/lib/Model/Log.php
+++ b/src/gen/lib/Model/Log.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogOperation.php b/src/gen/lib/Model/LogOperation.php
index 07cbd8f9af..1e9dbeb5c0 100644
--- a/src/gen/lib/Model/LogOperation.php
+++ b/src/gen/lib/Model/LogOperation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogService.php b/src/gen/lib/Model/LogService.php
index 5c260286c6..27cf311db8 100644
--- a/src/gen/lib/Model/LogService.php
+++ b/src/gen/lib/Model/LogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogsFilter.php b/src/gen/lib/Model/LogsFilter.php
index c55e129555..b9bbe3b190 100644
--- a/src/gen/lib/Model/LogsFilter.php
+++ b/src/gen/lib/Model/LogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Merchant.php b/src/gen/lib/Model/Merchant.php
index 0b5bb6663c..549ccb1dca 100644
--- a/src/gen/lib/Model/Merchant.php
+++ b/src/gen/lib/Model/Merchant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Message.php b/src/gen/lib/Model/Message.php
index beb79ac14b..ced0e0bb6a 100644
--- a/src/gen/lib/Model/Message.php
+++ b/src/gen/lib/Model/Message.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Meta.php b/src/gen/lib/Model/Meta.php
index 51924bc9b1..be857c1b50 100644
--- a/src/gen/lib/Model/Meta.php
+++ b/src/gen/lib/Model/Meta.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/MetaCursors.php b/src/gen/lib/Model/MetaCursors.php
index 79d8b12ff3..fa3b111740 100644
--- a/src/gen/lib/Model/MetaCursors.php
+++ b/src/gen/lib/Model/MetaCursors.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModelInterface.php b/src/gen/lib/Model/ModelInterface.php
index e6bd12f0b1..01d8de3cd2 100644
--- a/src/gen/lib/Model/ModelInterface.php
+++ b/src/gen/lib/Model/ModelInterface.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Modifier.php b/src/gen/lib/Model/Modifier.php
index 6fa87b85ce..e14cfcd49b 100644
--- a/src/gen/lib/Model/Modifier.php
+++ b/src/gen/lib/Model/Modifier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroup.php b/src/gen/lib/Model/ModifierGroup.php
index 7519e8bece..278a559f78 100644
--- a/src/gen/lib/Model/ModifierGroup.php
+++ b/src/gen/lib/Model/ModifierGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroupFilter.php b/src/gen/lib/Model/ModifierGroupFilter.php
index 449ba9a24c..64d18417ec 100644
--- a/src/gen/lib/Model/ModifierGroupFilter.php
+++ b/src/gen/lib/Model/ModifierGroupFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotFoundResponse.php b/src/gen/lib/Model/NotFoundResponse.php
index 89d46fe002..d3c926e722 100644
--- a/src/gen/lib/Model/NotFoundResponse.php
+++ b/src/gen/lib/Model/NotFoundResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotImplementedResponse.php b/src/gen/lib/Model/NotImplementedResponse.php
index 6d3c5e8de9..031edee0ba 100644
--- a/src/gen/lib/Model/NotImplementedResponse.php
+++ b/src/gen/lib/Model/NotImplementedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Note.php b/src/gen/lib/Model/Note.php
index a35db9237a..86c050bd8d 100644
--- a/src/gen/lib/Model/Note.php
+++ b/src/gen/lib/Model/Note.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OAuthGrantType.php b/src/gen/lib/Model/OAuthGrantType.php
index 2a643d353f..ec080f3baf 100644
--- a/src/gen/lib/Model/OAuthGrantType.php
+++ b/src/gen/lib/Model/OAuthGrantType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Offer.php b/src/gen/lib/Model/Offer.php
index e46eadec22..2e40abc5ef 100644
--- a/src/gen/lib/Model/Offer.php
+++ b/src/gen/lib/Model/Offer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesFilter.php b/src/gen/lib/Model/OpportunitiesFilter.php
index b25fd9dbaf..d0d6a8eb29 100644
--- a/src/gen/lib/Model/OpportunitiesFilter.php
+++ b/src/gen/lib/Model/OpportunitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesSort.php b/src/gen/lib/Model/OpportunitiesSort.php
index 5d9800fd67..a429211330 100644
--- a/src/gen/lib/Model/OpportunitiesSort.php
+++ b/src/gen/lib/Model/OpportunitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Opportunity.php b/src/gen/lib/Model/Opportunity.php
index 424df597ea..678ec4bfd9 100644
--- a/src/gen/lib/Model/Opportunity.php
+++ b/src/gen/lib/Model/Opportunity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Order.php b/src/gen/lib/Model/Order.php
index 62fc9dec27..a4fc219d14 100644
--- a/src/gen/lib/Model/Order.php
+++ b/src/gen/lib/Model/Order.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderCustomers.php b/src/gen/lib/Model/OrderCustomers.php
index 5bcd4518ff..d425f5b9cc 100644
--- a/src/gen/lib/Model/OrderCustomers.php
+++ b/src/gen/lib/Model/OrderCustomers.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderDiscounts.php b/src/gen/lib/Model/OrderDiscounts.php
index 8da4d415b5..2020b18e27 100644
--- a/src/gen/lib/Model/OrderDiscounts.php
+++ b/src/gen/lib/Model/OrderDiscounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderFulfillments.php b/src/gen/lib/Model/OrderFulfillments.php
index d68067bdf2..779144361c 100644
--- a/src/gen/lib/Model/OrderFulfillments.php
+++ b/src/gen/lib/Model/OrderFulfillments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderLineItems.php b/src/gen/lib/Model/OrderLineItems.php
index 9c774c28da..d734b7fd96 100644
--- a/src/gen/lib/Model/OrderLineItems.php
+++ b/src/gen/lib/Model/OrderLineItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPayments.php b/src/gen/lib/Model/OrderPayments.php
index 76bcc9e11b..b61cf9975c 100644
--- a/src/gen/lib/Model/OrderPayments.php
+++ b/src/gen/lib/Model/OrderPayments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetails.php b/src/gen/lib/Model/OrderPickupDetails.php
index 354725fef3..765f8630ec 100644
--- a/src/gen/lib/Model/OrderPickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
index 44a1d345ab..dd01803611 100644
--- a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsRecipient.php b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
index c2caf5f8ad..328f6651c3 100644
--- a/src/gen/lib/Model/OrderPickupDetailsRecipient.php
+++ b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderRefunds.php b/src/gen/lib/Model/OrderRefunds.php
index b1f2831687..3153276855 100644
--- a/src/gen/lib/Model/OrderRefunds.php
+++ b/src/gen/lib/Model/OrderRefunds.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderTenders.php b/src/gen/lib/Model/OrderTenders.php
index 80d8f237d1..0a2ec47f82 100644
--- a/src/gen/lib/Model/OrderTenders.php
+++ b/src/gen/lib/Model/OrderTenders.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderType.php b/src/gen/lib/Model/OrderType.php
index f099723ea8..000f91f50f 100644
--- a/src/gen/lib/Model/OrderType.php
+++ b/src/gen/lib/Model/OrderType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Owner.php b/src/gen/lib/Model/Owner.php
index c58f5a5a33..885b6e04e7 100644
--- a/src/gen/lib/Model/Owner.php
+++ b/src/gen/lib/Model/Owner.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaginationCoverage.php b/src/gen/lib/Model/PaginationCoverage.php
index b09e959e1f..094408e23f 100644
--- a/src/gen/lib/Model/PaginationCoverage.php
+++ b/src/gen/lib/Model/PaginationCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PassThroughQuery.php b/src/gen/lib/Model/PassThroughQuery.php
index 6a0ccea6b7..0bcdde6f75 100644
--- a/src/gen/lib/Model/PassThroughQuery.php
+++ b/src/gen/lib/Model/PassThroughQuery.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payment.php b/src/gen/lib/Model/Payment.php
index 95043b056f..3c275d7b77 100644
--- a/src/gen/lib/Model/Payment.php
+++ b/src/gen/lib/Model/Payment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentAllocations.php b/src/gen/lib/Model/PaymentAllocations.php
index f0b30c370c..7dc28cfed5 100644
--- a/src/gen/lib/Model/PaymentAllocations.php
+++ b/src/gen/lib/Model/PaymentAllocations.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentCard.php b/src/gen/lib/Model/PaymentCard.php
index 5320edf5ce..9721842760 100644
--- a/src/gen/lib/Model/PaymentCard.php
+++ b/src/gen/lib/Model/PaymentCard.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentFrequency.php b/src/gen/lib/Model/PaymentFrequency.php
index 7fbfa8f035..dcfa2e3fdb 100644
--- a/src/gen/lib/Model/PaymentFrequency.php
+++ b/src/gen/lib/Model/PaymentFrequency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentRequiredResponse.php b/src/gen/lib/Model/PaymentRequiredResponse.php
index 798ea9a35c..94f6185f30 100644
--- a/src/gen/lib/Model/PaymentRequiredResponse.php
+++ b/src/gen/lib/Model/PaymentRequiredResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentUnit.php b/src/gen/lib/Model/PaymentUnit.php
index d2b90212ae..c6cb13a752 100644
--- a/src/gen/lib/Model/PaymentUnit.php
+++ b/src/gen/lib/Model/PaymentUnit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsFilter.php b/src/gen/lib/Model/PaymentsFilter.php
index 0b10770196..1c22f6bfe0 100644
--- a/src/gen/lib/Model/PaymentsFilter.php
+++ b/src/gen/lib/Model/PaymentsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsSort.php b/src/gen/lib/Model/PaymentsSort.php
index c0f6b4ca91..7327cb8830 100644
--- a/src/gen/lib/Model/PaymentsSort.php
+++ b/src/gen/lib/Model/PaymentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payroll.php b/src/gen/lib/Model/Payroll.php
index 095251606b..3372446650 100644
--- a/src/gen/lib/Model/Payroll.php
+++ b/src/gen/lib/Model/Payroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollTotals.php b/src/gen/lib/Model/PayrollTotals.php
index 1220bb0d4b..8ae4193704 100644
--- a/src/gen/lib/Model/PayrollTotals.php
+++ b/src/gen/lib/Model/PayrollTotals.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollsFilter.php b/src/gen/lib/Model/PayrollsFilter.php
index f1802768bf..d313e17181 100644
--- a/src/gen/lib/Model/PayrollsFilter.php
+++ b/src/gen/lib/Model/PayrollsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Person.php b/src/gen/lib/Model/Person.php
index 14e71b0a0a..bc96d47210 100644
--- a/src/gen/lib/Model/Person.php
+++ b/src/gen/lib/Model/Person.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PhoneNumber.php b/src/gen/lib/Model/PhoneNumber.php
index a9aa86de3d..82b1253ca6 100644
--- a/src/gen/lib/Model/PhoneNumber.php
+++ b/src/gen/lib/Model/PhoneNumber.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Pipeline.php b/src/gen/lib/Model/Pipeline.php
index d345972ed4..024f8dc5b0 100644
--- a/src/gen/lib/Model/Pipeline.php
+++ b/src/gen/lib/Model/Pipeline.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PipelineStages.php b/src/gen/lib/Model/PipelineStages.php
index c87a64d82a..87a5b27c04 100644
--- a/src/gen/lib/Model/PipelineStages.php
+++ b/src/gen/lib/Model/PipelineStages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccount.php b/src/gen/lib/Model/PosBankAccount.php
index 15c7ff4921..1e6a732c22 100644
--- a/src/gen/lib/Model/PosBankAccount.php
+++ b/src/gen/lib/Model/PosBankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccountAchDetails.php b/src/gen/lib/Model/PosBankAccountAchDetails.php
index 913603e378..5c557fe2b9 100644
--- a/src/gen/lib/Model/PosBankAccountAchDetails.php
+++ b/src/gen/lib/Model/PosBankAccountAchDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPayment.php b/src/gen/lib/Model/PosPayment.php
index 2942edb84f..49114a70e4 100644
--- a/src/gen/lib/Model/PosPayment.php
+++ b/src/gen/lib/Model/PosPayment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentCardDetails.php b/src/gen/lib/Model/PosPaymentCardDetails.php
index b7c94eb16b..696ab0b103 100644
--- a/src/gen/lib/Model/PosPaymentCardDetails.php
+++ b/src/gen/lib/Model/PosPaymentCardDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentExternalDetails.php b/src/gen/lib/Model/PosPaymentExternalDetails.php
index 7ad4bea6e1..d127da36b9 100644
--- a/src/gen/lib/Model/PosPaymentExternalDetails.php
+++ b/src/gen/lib/Model/PosPaymentExternalDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Price.php b/src/gen/lib/Model/Price.php
index bec9c58ab3..e1aee5b326 100644
--- a/src/gen/lib/Model/Price.php
+++ b/src/gen/lib/Model/Price.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProbationPeriod.php b/src/gen/lib/Model/ProbationPeriod.php
index 735608e4fa..8d462c3ff3 100644
--- a/src/gen/lib/Model/ProbationPeriod.php
+++ b/src/gen/lib/Model/ProbationPeriod.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLoss.php b/src/gen/lib/Model/ProfitAndLoss.php
index 42f2cb53de..43059d511e 100644
--- a/src/gen/lib/Model/ProfitAndLoss.php
+++ b/src/gen/lib/Model/ProfitAndLoss.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossExpenses.php b/src/gen/lib/Model/ProfitAndLossExpenses.php
index 6e9b76187b..ec813d17d0 100644
--- a/src/gen/lib/Model/ProfitAndLossExpenses.php
+++ b/src/gen/lib/Model/ProfitAndLossExpenses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossFilter.php b/src/gen/lib/Model/ProfitAndLossFilter.php
index 37bae5cbeb..5d4e5daf4d 100644
--- a/src/gen/lib/Model/ProfitAndLossFilter.php
+++ b/src/gen/lib/Model/ProfitAndLossFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossGrossProfit.php b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
index 1ff6e8bae3..ff2ac9ad0a 100644
--- a/src/gen/lib/Model/ProfitAndLossGrossProfit.php
+++ b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossIncome.php b/src/gen/lib/Model/ProfitAndLossIncome.php
index eae2bde58b..eb732087cc 100644
--- a/src/gen/lib/Model/ProfitAndLossIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetIncome.php b/src/gen/lib/Model/ProfitAndLossNetIncome.php
index 5edd853bae..373fe61648 100644
--- a/src/gen/lib/Model/ProfitAndLossNetIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
index 2bbb035693..f88b9f5839 100644
--- a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossRecord.php b/src/gen/lib/Model/ProfitAndLossRecord.php
index cc64dc5e3d..4328f60b71 100644
--- a/src/gen/lib/Model/ProfitAndLossRecord.php
+++ b/src/gen/lib/Model/ProfitAndLossRecord.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossSection.php b/src/gen/lib/Model/ProfitAndLossSection.php
index f5dce49771..8cdcbc22f4 100644
--- a/src/gen/lib/Model/ProfitAndLossSection.php
+++ b/src/gen/lib/Model/ProfitAndLossSection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrder.php b/src/gen/lib/Model/PurchaseOrder.php
index be760cb36d..5feedb3588 100644
--- a/src/gen/lib/Model/PurchaseOrder.php
+++ b/src/gen/lib/Model/PurchaseOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersFilter.php b/src/gen/lib/Model/PurchaseOrdersFilter.php
index 2c7c400a65..1b2f78759e 100644
--- a/src/gen/lib/Model/PurchaseOrdersFilter.php
+++ b/src/gen/lib/Model/PurchaseOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersSort.php b/src/gen/lib/Model/PurchaseOrdersSort.php
index 0ecc580956..82370c1df6 100644
--- a/src/gen/lib/Model/PurchaseOrdersSort.php
+++ b/src/gen/lib/Model/PurchaseOrdersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestCountAllocation.php b/src/gen/lib/Model/RequestCountAllocation.php
index 00fc31fdd8..c6636bfbcc 100644
--- a/src/gen/lib/Model/RequestCountAllocation.php
+++ b/src/gen/lib/Model/RequestCountAllocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestRate.php b/src/gen/lib/Model/RequestRate.php
index 46672645af..b5176dc8ad 100644
--- a/src/gen/lib/Model/RequestRate.php
+++ b/src/gen/lib/Model/RequestRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResolveWebhookResponse.php b/src/gen/lib/Model/ResolveWebhookResponse.php
index 1c6c662074..3e3046b099 100644
--- a/src/gen/lib/Model/ResolveWebhookResponse.php
+++ b/src/gen/lib/Model/ResolveWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceExample.php b/src/gen/lib/Model/ResourceExample.php
index 5be3ab3f64..fec389df0c 100644
--- a/src/gen/lib/Model/ResourceExample.php
+++ b/src/gen/lib/Model/ResourceExample.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceStatus.php b/src/gen/lib/Model/ResourceStatus.php
index 6a2c426c00..508fbc6eb6 100644
--- a/src/gen/lib/Model/ResourceStatus.php
+++ b/src/gen/lib/Model/ResourceStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Schedule.php b/src/gen/lib/Model/Schedule.php
index bf462c49ad..f0517c88b2 100644
--- a/src/gen/lib/Model/Schedule.php
+++ b/src/gen/lib/Model/Schedule.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPattern.php b/src/gen/lib/Model/ScheduleWorkPattern.php
index a55b0ec088..a04f5923a0 100644
--- a/src/gen/lib/Model/ScheduleWorkPattern.php
+++ b/src/gen/lib/Model/ScheduleWorkPattern.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
index 5230ab4268..c858f4ba1a 100644
--- a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
+++ b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SchemaSupport.php b/src/gen/lib/Model/SchemaSupport.php
index f9085fa6e4..dfa3af5e4b 100644
--- a/src/gen/lib/Model/SchemaSupport.php
+++ b/src/gen/lib/Model/SchemaSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ServiceCharge.php b/src/gen/lib/Model/ServiceCharge.php
index 89a8ece717..d53c34e659 100644
--- a/src/gen/lib/Model/ServiceCharge.php
+++ b/src/gen/lib/Model/ServiceCharge.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Session.php b/src/gen/lib/Model/Session.php
index 11dbb482bf..2f0965a0b2 100644
--- a/src/gen/lib/Model/Session.php
+++ b/src/gen/lib/Model/Session.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionSettings.php b/src/gen/lib/Model/SessionSettings.php
index ef5a6fa661..630025b739 100644
--- a/src/gen/lib/Model/SessionSettings.php
+++ b/src/gen/lib/Model/SessionSettings.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionTheme.php b/src/gen/lib/Model/SessionTheme.php
index 4384e3a348..ea09dcc976 100644
--- a/src/gen/lib/Model/SessionTheme.php
+++ b/src/gen/lib/Model/SessionTheme.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLink.php b/src/gen/lib/Model/SharedLink.php
index 0ba0b81063..60e425c2a3 100644
--- a/src/gen/lib/Model/SharedLink.php
+++ b/src/gen/lib/Model/SharedLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLinkTarget.php b/src/gen/lib/Model/SharedLinkTarget.php
index 3a5ff43711..1ee531d926 100644
--- a/src/gen/lib/Model/SharedLinkTarget.php
+++ b/src/gen/lib/Model/SharedLinkTarget.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SimpleFormFieldOption.php b/src/gen/lib/Model/SimpleFormFieldOption.php
index 9d62cd5aa9..4d44e66ff0 100644
--- a/src/gen/lib/Model/SimpleFormFieldOption.php
+++ b/src/gen/lib/Model/SimpleFormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SocialLink.php b/src/gen/lib/Model/SocialLink.php
index a800647db2..ab4d63bc3d 100644
--- a/src/gen/lib/Model/SocialLink.php
+++ b/src/gen/lib/Model/SocialLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SortDirection.php b/src/gen/lib/Model/SortDirection.php
index dbcbd4a312..04241635ec 100644
--- a/src/gen/lib/Model/SortDirection.php
+++ b/src/gen/lib/Model/SortDirection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Status.php b/src/gen/lib/Model/Status.php
index eff7d6afa6..6814b1bf17 100644
--- a/src/gen/lib/Model/Status.php
+++ b/src/gen/lib/Model/Status.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Subsidiary.php b/src/gen/lib/Model/Subsidiary.php
index 43e692856d..b7af56db7b 100644
--- a/src/gen/lib/Model/Subsidiary.php
+++ b/src/gen/lib/Model/Subsidiary.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SubsidiaryReference.php b/src/gen/lib/Model/SubsidiaryReference.php
new file mode 100644
index 0000000000..72b71deb40
--- /dev/null
+++ b/src/gen/lib/Model/SubsidiaryReference.php
@@ -0,0 +1,350 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class SubsidiaryReference implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'SubsidiaryReference';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'id' => 'string',
+ 'name' => 'string'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'id' => null,
+ 'name' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'id' => 'id',
+ 'name' => 'name'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'id' => 'setId',
+ 'name' => 'setName'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'id' => 'getId',
+ 'name' => 'getName'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['id'] = $data['id'] ?? null;
+ $this->container['name'] = $data['name'] ?? null;
+ }
+
+ /**
+ * 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 id
+ *
+ * @return string|null
+ */
+ public function getId()
+ {
+ return $this->container['id'];
+ }
+
+ /**
+ * Sets id
+ *
+ * @param string|null $id A unique identifier for an object.
+ *
+ * @return self
+ */
+ public function setId($id)
+ {
+ $this->container['id'] = $id;
+
+ return $this;
+ }
+
+ /**
+ * Gets name
+ *
+ * @return string|null
+ */
+ public function getName()
+ {
+ return $this->container['name'];
+ }
+
+ /**
+ * Sets name
+ *
+ * @param string|null $name The name of the company.
+ *
+ * @return self
+ */
+ public function setName($name)
+ {
+ $this->container['name'] = $name;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/Supplier.php b/src/gen/lib/Model/Supplier.php
index 5d9bedb309..c453cf2f61 100644
--- a/src/gen/lib/Model/Supplier.php
+++ b/src/gen/lib/Model/Supplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersFilter.php b/src/gen/lib/Model/SuppliersFilter.php
index f49a7e104c..cd7256466b 100644
--- a/src/gen/lib/Model/SuppliersFilter.php
+++ b/src/gen/lib/Model/SuppliersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersSort.php b/src/gen/lib/Model/SuppliersSort.php
index dd294c5498..eba8f45c3f 100644
--- a/src/gen/lib/Model/SuppliersSort.php
+++ b/src/gen/lib/Model/SuppliersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SupportedProperty.php b/src/gen/lib/Model/SupportedProperty.php
index d2924934e7..f0786074ab 100644
--- a/src/gen/lib/Model/SupportedProperty.php
+++ b/src/gen/lib/Model/SupportedProperty.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tax.php b/src/gen/lib/Model/Tax.php
index e0040ae948..26385f5229 100644
--- a/src/gen/lib/Model/Tax.php
+++ b/src/gen/lib/Model/Tax.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRate.php b/src/gen/lib/Model/TaxRate.php
index 2d9dece357..c5b9ff4a65 100644
--- a/src/gen/lib/Model/TaxRate.php
+++ b/src/gen/lib/Model/TaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRatesFilter.php b/src/gen/lib/Model/TaxRatesFilter.php
index 00c85b73ef..3d87900371 100644
--- a/src/gen/lib/Model/TaxRatesFilter.php
+++ b/src/gen/lib/Model/TaxRatesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Team.php b/src/gen/lib/Model/Team.php
index b79b1c4a47..ba2c6f82a1 100644
--- a/src/gen/lib/Model/Team.php
+++ b/src/gen/lib/Model/Team.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tender.php b/src/gen/lib/Model/Tender.php
index f27df21d2e..2323a439df 100644
--- a/src/gen/lib/Model/Tender.php
+++ b/src/gen/lib/Model/Tender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Ticket.php b/src/gen/lib/Model/Ticket.php
index a6905d93b1..00489b970b 100644
--- a/src/gen/lib/Model/Ticket.php
+++ b/src/gen/lib/Model/Ticket.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TicketsSort.php b/src/gen/lib/Model/TicketsSort.php
index 36ab146064..15e4697255 100644
--- a/src/gen/lib/Model/TicketsSort.php
+++ b/src/gen/lib/Model/TicketsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequest.php b/src/gen/lib/Model/TimeOffRequest.php
index 23982f2468..a92e01f50c 100644
--- a/src/gen/lib/Model/TimeOffRequest.php
+++ b/src/gen/lib/Model/TimeOffRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestNotes.php b/src/gen/lib/Model/TimeOffRequestNotes.php
index e2de23eb9a..d7302afdd0 100644
--- a/src/gen/lib/Model/TimeOffRequestNotes.php
+++ b/src/gen/lib/Model/TimeOffRequestNotes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestsFilter.php b/src/gen/lib/Model/TimeOffRequestsFilter.php
index c76310bff1..a237bd9c3c 100644
--- a/src/gen/lib/Model/TimeOffRequestsFilter.php
+++ b/src/gen/lib/Model/TimeOffRequestsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponse.php b/src/gen/lib/Model/TooManyRequestsResponse.php
index 7b6b0d56d1..1b3fa95274 100644
--- a/src/gen/lib/Model/TooManyRequestsResponse.php
+++ b/src/gen/lib/Model/TooManyRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponseDetail.php b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
index 851816ec1e..8f866c6f23 100644
--- a/src/gen/lib/Model/TooManyRequestsResponseDetail.php
+++ b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TrackingItem.php b/src/gen/lib/Model/TrackingItem.php
index 6f65db009b..ef3b19aa10 100644
--- a/src/gen/lib/Model/TrackingItem.php
+++ b/src/gen/lib/Model/TrackingItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnauthorizedResponse.php b/src/gen/lib/Model/UnauthorizedResponse.php
index 913bd90705..a867366760 100644
--- a/src/gen/lib/Model/UnauthorizedResponse.php
+++ b/src/gen/lib/Model/UnauthorizedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnexpectedErrorResponse.php b/src/gen/lib/Model/UnexpectedErrorResponse.php
index 1e38b09201..48bb486c0b 100644
--- a/src/gen/lib/Model/UnexpectedErrorResponse.php
+++ b/src/gen/lib/Model/UnexpectedErrorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedApiId.php b/src/gen/lib/Model/UnifiedApiId.php
index e138c10f0e..2e1aa6c9f6 100644
--- a/src/gen/lib/Model/UnifiedApiId.php
+++ b/src/gen/lib/Model/UnifiedApiId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFile.php b/src/gen/lib/Model/UnifiedFile.php
index 4cbfcc53b1..4d6d8ad872 100644
--- a/src/gen/lib/Model/UnifiedFile.php
+++ b/src/gen/lib/Model/UnifiedFile.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFilePermissions.php b/src/gen/lib/Model/UnifiedFilePermissions.php
index daf9db4c53..9736aa5d9a 100644
--- a/src/gen/lib/Model/UnifiedFilePermissions.php
+++ b/src/gen/lib/Model/UnifiedFilePermissions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedId.php b/src/gen/lib/Model/UnifiedId.php
index b9d01f7337..6fbcaaceb2 100644
--- a/src/gen/lib/Model/UnifiedId.php
+++ b/src/gen/lib/Model/UnifiedId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnprocessableResponse.php b/src/gen/lib/Model/UnprocessableResponse.php
index a09cfd80fa..8a548bf84c 100644
--- a/src/gen/lib/Model/UnprocessableResponse.php
+++ b/src/gen/lib/Model/UnprocessableResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateAccountingDepartmentResponse.php b/src/gen/lib/Model/UpdateAccountingDepartmentResponse.php
new file mode 100644
index 0000000000..75d46732cf
--- /dev/null
+++ b/src/gen/lib/Model/UpdateAccountingDepartmentResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class UpdateAccountingDepartmentResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'UpdateAccountingDepartmentResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\UnifiedId'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\UnifiedId
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\UnifiedId $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/UpdateAccountingLocationResponse.php b/src/gen/lib/Model/UpdateAccountingLocationResponse.php
new file mode 100644
index 0000000000..560ae63423
--- /dev/null
+++ b/src/gen/lib/Model/UpdateAccountingLocationResponse.php
@@ -0,0 +1,488 @@
+
+ * @template TKey int|null
+ * @template TValue mixed|null
+ */
+class UpdateAccountingLocationResponse implements ModelInterface, ArrayAccess, \JsonSerializable
+{
+ public const DISCRIMINATOR = null;
+
+ /**
+ * The original name of the model.
+ *
+ * @var string
+ */
+ protected static $openAPIModelName = 'UpdateAccountingLocationResponse';
+
+ /**
+ * Array of property to type mappings. Used for (de)serialization
+ *
+ * @var string[]
+ */
+ protected static $openAPITypes = [
+ 'status_code' => 'int',
+ 'status' => 'string',
+ 'service' => 'string',
+ 'resource' => 'string',
+ 'operation' => 'string',
+ 'data' => '\Apideck\Client\Model\UnifiedId'
+ ];
+
+ /**
+ * Array of property to format mappings. Used for (de)serialization
+ *
+ * @var string[]
+ * @phpstan-var array
+ * @psalm-var array
+ */
+ protected static $openAPIFormats = [
+ 'status_code' => null,
+ 'status' => null,
+ 'service' => null,
+ 'resource' => null,
+ 'operation' => null,
+ 'data' => null
+ ];
+
+ /**
+ * 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 attributes where the key is the local name,
+ * and the value is the original name
+ *
+ * @var string[]
+ */
+ protected static $attributeMap = [
+ 'status_code' => 'status_code',
+ 'status' => 'status',
+ 'service' => 'service',
+ 'resource' => 'resource',
+ 'operation' => 'operation',
+ 'data' => 'data'
+ ];
+
+ /**
+ * Array of attributes to setter functions (for deserialization of responses)
+ *
+ * @var string[]
+ */
+ protected static $setters = [
+ 'status_code' => 'setStatusCode',
+ 'status' => 'setStatus',
+ 'service' => 'setService',
+ 'resource' => 'setResource',
+ 'operation' => 'setOperation',
+ 'data' => 'setData'
+ ];
+
+ /**
+ * Array of attributes to getter functions (for serialization of requests)
+ *
+ * @var string[]
+ */
+ protected static $getters = [
+ 'status_code' => 'getStatusCode',
+ 'status' => 'getStatus',
+ 'service' => 'getService',
+ 'resource' => 'getResource',
+ 'operation' => 'getOperation',
+ 'data' => 'getData'
+ ];
+
+ /**
+ * 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[] $data Associated array of property values
+ * initializing the model
+ */
+ public function __construct(array $data = null)
+ {
+ $this->container['status_code'] = $data['status_code'] ?? null;
+ $this->container['status'] = $data['status'] ?? null;
+ $this->container['service'] = $data['service'] ?? null;
+ $this->container['resource'] = $data['resource'] ?? null;
+ $this->container['operation'] = $data['operation'] ?? null;
+ $this->container['data'] = $data['data'] ?? null;
+ }
+
+ /**
+ * Show all the invalid properties with reasons.
+ *
+ * @return array invalid properties with reasons
+ */
+ public function listInvalidProperties()
+ {
+ $invalidProperties = [];
+
+ if ($this->container['status_code'] === null) {
+ $invalidProperties[] = "'status_code' can't be null";
+ }
+ if ($this->container['status'] === null) {
+ $invalidProperties[] = "'status' can't be null";
+ }
+ if ($this->container['service'] === null) {
+ $invalidProperties[] = "'service' can't be null";
+ }
+ if ($this->container['resource'] === null) {
+ $invalidProperties[] = "'resource' can't be null";
+ }
+ if ($this->container['operation'] === null) {
+ $invalidProperties[] = "'operation' can't be null";
+ }
+ if ($this->container['data'] === null) {
+ $invalidProperties[] = "'data' can't be null";
+ }
+ 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 status_code
+ *
+ * @return int
+ */
+ public function getStatusCode()
+ {
+ return $this->container['status_code'];
+ }
+
+ /**
+ * Sets status_code
+ *
+ * @param int $status_code HTTP Response Status Code
+ *
+ * @return self
+ */
+ public function setStatusCode($status_code)
+ {
+ $this->container['status_code'] = $status_code;
+
+ return $this;
+ }
+
+ /**
+ * Gets status
+ *
+ * @return string
+ */
+ public function getStatus()
+ {
+ return $this->container['status'];
+ }
+
+ /**
+ * Sets status
+ *
+ * @param string $status HTTP Response Status
+ *
+ * @return self
+ */
+ public function setStatus($status)
+ {
+ $this->container['status'] = $status;
+
+ return $this;
+ }
+
+ /**
+ * Gets service
+ *
+ * @return string
+ */
+ public function getService()
+ {
+ return $this->container['service'];
+ }
+
+ /**
+ * Sets service
+ *
+ * @param string $service Apideck ID of service provider
+ *
+ * @return self
+ */
+ public function setService($service)
+ {
+ $this->container['service'] = $service;
+
+ return $this;
+ }
+
+ /**
+ * Gets resource
+ *
+ * @return string
+ */
+ public function getResource()
+ {
+ return $this->container['resource'];
+ }
+
+ /**
+ * Sets resource
+ *
+ * @param string $resource Unified API resource name
+ *
+ * @return self
+ */
+ public function setResource($resource)
+ {
+ $this->container['resource'] = $resource;
+
+ return $this;
+ }
+
+ /**
+ * Gets operation
+ *
+ * @return string
+ */
+ public function getOperation()
+ {
+ return $this->container['operation'];
+ }
+
+ /**
+ * Sets operation
+ *
+ * @param string $operation Operation performed
+ *
+ * @return self
+ */
+ public function setOperation($operation)
+ {
+ $this->container['operation'] = $operation;
+
+ return $this;
+ }
+
+ /**
+ * Gets data
+ *
+ * @return \Apideck\Client\Model\UnifiedId
+ */
+ public function getData()
+ {
+ return $this->container['data'];
+ }
+
+ /**
+ * Sets data
+ *
+ * @param \Apideck\Client\Model\UnifiedId $data data
+ *
+ * @return self
+ */
+ public function setData($data)
+ {
+ $this->container['data'] = $data;
+
+ return $this;
+ }
+ /**
+ * Returns true if offset exists. False otherwise.
+ *
+ * @param integer $offset Offset
+ *
+ * @return boolean
+ */
+ public function offsetExists($offset)
+ {
+ return isset($this->container[$offset]);
+ }
+
+ /**
+ * Gets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return mixed|null
+ */
+ public function offsetGet($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)
+ {
+ if (is_null($offset)) {
+ $this->container[] = $value;
+ } else {
+ $this->container[$offset] = $value;
+ }
+ }
+
+ /**
+ * Unsets offset.
+ *
+ * @param integer $offset Offset
+ *
+ * @return void
+ */
+ public function offsetUnset($offset)
+ {
+ 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.
+ */
+ 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/src/gen/lib/Model/UpdateActivityResponse.php b/src/gen/lib/Model/UpdateActivityResponse.php
index 8816973c7d..398dd0e3d9 100644
--- a/src/gen/lib/Model/UpdateActivityResponse.php
+++ b/src/gen/lib/Model/UpdateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicantResponse.php b/src/gen/lib/Model/UpdateApplicantResponse.php
index 1cf45133f7..0592201185 100644
--- a/src/gen/lib/Model/UpdateApplicantResponse.php
+++ b/src/gen/lib/Model/UpdateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicationResponse.php b/src/gen/lib/Model/UpdateApplicationResponse.php
index c7d3589296..96d047bd77 100644
--- a/src/gen/lib/Model/UpdateApplicationResponse.php
+++ b/src/gen/lib/Model/UpdateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateBillResponse.php b/src/gen/lib/Model/UpdateBillResponse.php
index 460fc87d1c..a1b65412b2 100644
--- a/src/gen/lib/Model/UpdateBillResponse.php
+++ b/src/gen/lib/Model/UpdateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCommentResponse.php b/src/gen/lib/Model/UpdateCommentResponse.php
index d5ff00d669..0af3ae135e 100644
--- a/src/gen/lib/Model/UpdateCommentResponse.php
+++ b/src/gen/lib/Model/UpdateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCompanyResponse.php b/src/gen/lib/Model/UpdateCompanyResponse.php
index e8b4277986..c5317890fd 100644
--- a/src/gen/lib/Model/UpdateCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConnectionResponse.php b/src/gen/lib/Model/UpdateConnectionResponse.php
index 77ccd12f03..34d755340b 100644
--- a/src/gen/lib/Model/UpdateConnectionResponse.php
+++ b/src/gen/lib/Model/UpdateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerRequest.php b/src/gen/lib/Model/UpdateConsumerRequest.php
index 0a4be1f90d..535a3ab472 100644
--- a/src/gen/lib/Model/UpdateConsumerRequest.php
+++ b/src/gen/lib/Model/UpdateConsumerRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerResponse.php b/src/gen/lib/Model/UpdateConsumerResponse.php
index 87ded0a9a7..27d25b7419 100644
--- a/src/gen/lib/Model/UpdateConsumerResponse.php
+++ b/src/gen/lib/Model/UpdateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateContactResponse.php b/src/gen/lib/Model/UpdateContactResponse.php
index 51cac7834f..5cc57ec2b0 100644
--- a/src/gen/lib/Model/UpdateContactResponse.php
+++ b/src/gen/lib/Model/UpdateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCreditNoteResponse.php b/src/gen/lib/Model/UpdateCreditNoteResponse.php
index d9998f6d83..e0c32285fb 100644
--- a/src/gen/lib/Model/UpdateCreditNoteResponse.php
+++ b/src/gen/lib/Model/UpdateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingRequest.php b/src/gen/lib/Model/UpdateCustomMappingRequest.php
index 38cdb7c82a..d32f155380 100644
--- a/src/gen/lib/Model/UpdateCustomMappingRequest.php
+++ b/src/gen/lib/Model/UpdateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingResponse.php b/src/gen/lib/Model/UpdateCustomMappingResponse.php
index ac364d5ac8..b0d4bd09fc 100644
--- a/src/gen/lib/Model/UpdateCustomMappingResponse.php
+++ b/src/gen/lib/Model/UpdateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomerResponse.php b/src/gen/lib/Model/UpdateCustomerResponse.php
index 5a07fcbfc2..2b571a9917 100644
--- a/src/gen/lib/Model/UpdateCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDepartmentResponse.php b/src/gen/lib/Model/UpdateDepartmentResponse.php
index 046f689cf0..f03ab40b86 100644
--- a/src/gen/lib/Model/UpdateDepartmentResponse.php
+++ b/src/gen/lib/Model/UpdateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveGroupResponse.php b/src/gen/lib/Model/UpdateDriveGroupResponse.php
index 35522e2f6e..f16658a74e 100644
--- a/src/gen/lib/Model/UpdateDriveGroupResponse.php
+++ b/src/gen/lib/Model/UpdateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveResponse.php b/src/gen/lib/Model/UpdateDriveResponse.php
index 01713959e0..762266965e 100644
--- a/src/gen/lib/Model/UpdateDriveResponse.php
+++ b/src/gen/lib/Model/UpdateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
index 8734ecc11f..4666aca90b 100644
--- a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
index 3100f522d0..a26f418eef 100644
--- a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEmployeeResponse.php b/src/gen/lib/Model/UpdateEmployeeResponse.php
index 26cdd5f62a..e639f0120f 100644
--- a/src/gen/lib/Model/UpdateEmployeeResponse.php
+++ b/src/gen/lib/Model/UpdateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileRequest.php b/src/gen/lib/Model/UpdateFileRequest.php
index 788914d36b..c2a0d81538 100644
--- a/src/gen/lib/Model/UpdateFileRequest.php
+++ b/src/gen/lib/Model/UpdateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileResponse.php b/src/gen/lib/Model/UpdateFileResponse.php
index 504995905e..7e4aec2218 100644
--- a/src/gen/lib/Model/UpdateFileResponse.php
+++ b/src/gen/lib/Model/UpdateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderRequest.php b/src/gen/lib/Model/UpdateFolderRequest.php
index b3b1a3a29c..b0abf527a3 100644
--- a/src/gen/lib/Model/UpdateFolderRequest.php
+++ b/src/gen/lib/Model/UpdateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderResponse.php b/src/gen/lib/Model/UpdateFolderResponse.php
index 755f4641a0..22143a16fa 100644
--- a/src/gen/lib/Model/UpdateFolderResponse.php
+++ b/src/gen/lib/Model/UpdateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateHrisCompanyResponse.php b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
index a5b56a4412..7d800e0ac2 100644
--- a/src/gen/lib/Model/UpdateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
index 2ff6c85071..ec649ba184 100644
--- a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceResponse.php b/src/gen/lib/Model/UpdateInvoiceResponse.php
index bc731b0a81..a8e72f7263 100644
--- a/src/gen/lib/Model/UpdateInvoiceResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateItemResponse.php b/src/gen/lib/Model/UpdateItemResponse.php
index d12e17b5f1..9d2fffd745 100644
--- a/src/gen/lib/Model/UpdateItemResponse.php
+++ b/src/gen/lib/Model/UpdateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJobResponse.php b/src/gen/lib/Model/UpdateJobResponse.php
index 043987714c..026716d1be 100644
--- a/src/gen/lib/Model/UpdateJobResponse.php
+++ b/src/gen/lib/Model/UpdateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJournalEntryResponse.php b/src/gen/lib/Model/UpdateJournalEntryResponse.php
index 100430e156..19ddab1b57 100644
--- a/src/gen/lib/Model/UpdateJournalEntryResponse.php
+++ b/src/gen/lib/Model/UpdateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLeadResponse.php b/src/gen/lib/Model/UpdateLeadResponse.php
index a52292cbb2..7d09ae63f8 100644
--- a/src/gen/lib/Model/UpdateLeadResponse.php
+++ b/src/gen/lib/Model/UpdateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLedgerAccountResponse.php b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
index 7933c05847..1e4329f8a6 100644
--- a/src/gen/lib/Model/UpdateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLocationResponse.php b/src/gen/lib/Model/UpdateLocationResponse.php
index 6caeff0788..5f3204f597 100644
--- a/src/gen/lib/Model/UpdateLocationResponse.php
+++ b/src/gen/lib/Model/UpdateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMerchantResponse.php b/src/gen/lib/Model/UpdateMerchantResponse.php
index e9d6e0a023..2534143542 100644
--- a/src/gen/lib/Model/UpdateMerchantResponse.php
+++ b/src/gen/lib/Model/UpdateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMessageResponse.php b/src/gen/lib/Model/UpdateMessageResponse.php
index 78a38ab049..5623e44ea8 100644
--- a/src/gen/lib/Model/UpdateMessageResponse.php
+++ b/src/gen/lib/Model/UpdateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierGroupResponse.php b/src/gen/lib/Model/UpdateModifierGroupResponse.php
index 3fd4183479..cd73ae5beb 100644
--- a/src/gen/lib/Model/UpdateModifierGroupResponse.php
+++ b/src/gen/lib/Model/UpdateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierResponse.php b/src/gen/lib/Model/UpdateModifierResponse.php
index a9e50e95af..08eb9e8958 100644
--- a/src/gen/lib/Model/UpdateModifierResponse.php
+++ b/src/gen/lib/Model/UpdateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateNoteResponse.php b/src/gen/lib/Model/UpdateNoteResponse.php
index e68f5c29dd..37a1f9c34f 100644
--- a/src/gen/lib/Model/UpdateNoteResponse.php
+++ b/src/gen/lib/Model/UpdateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOpportunityResponse.php b/src/gen/lib/Model/UpdateOpportunityResponse.php
index bd2b420482..fd437ffe59 100644
--- a/src/gen/lib/Model/UpdateOpportunityResponse.php
+++ b/src/gen/lib/Model/UpdateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderResponse.php b/src/gen/lib/Model/UpdateOrderResponse.php
index 05842cda7a..3ba8d71b9b 100644
--- a/src/gen/lib/Model/UpdateOrderResponse.php
+++ b/src/gen/lib/Model/UpdateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderTypeResponse.php b/src/gen/lib/Model/UpdateOrderTypeResponse.php
index 6d28deb6d9..8843ca87ae 100644
--- a/src/gen/lib/Model/UpdateOrderTypeResponse.php
+++ b/src/gen/lib/Model/UpdateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePaymentResponse.php b/src/gen/lib/Model/UpdatePaymentResponse.php
index ca35521c05..57ba0a0be6 100644
--- a/src/gen/lib/Model/UpdatePaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePipelineResponse.php b/src/gen/lib/Model/UpdatePipelineResponse.php
index c78dd1e069..fc3d069a7a 100644
--- a/src/gen/lib/Model/UpdatePipelineResponse.php
+++ b/src/gen/lib/Model/UpdatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePosPaymentResponse.php b/src/gen/lib/Model/UpdatePosPaymentResponse.php
index 60cb421a96..09433a6335 100644
--- a/src/gen/lib/Model/UpdatePosPaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateProductResponse.php b/src/gen/lib/Model/UpdateProductResponse.php
index 9474edc5dc..3e9719ac66 100644
--- a/src/gen/lib/Model/UpdateProductResponse.php
+++ b/src/gen/lib/Model/UpdateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
index b7192d1e42..e6ad42f5e3 100644
--- a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSharedLinkResponse.php b/src/gen/lib/Model/UpdateSharedLinkResponse.php
index b780e9b3ac..034520c390 100644
--- a/src/gen/lib/Model/UpdateSharedLinkResponse.php
+++ b/src/gen/lib/Model/UpdateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSubsidiaryResponse.php b/src/gen/lib/Model/UpdateSubsidiaryResponse.php
index ef0171df7e..ae79bb43a0 100644
--- a/src/gen/lib/Model/UpdateSubsidiaryResponse.php
+++ b/src/gen/lib/Model/UpdateSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSupplierResponse.php b/src/gen/lib/Model/UpdateSupplierResponse.php
index 708c9c54a7..45ab1d0ebc 100644
--- a/src/gen/lib/Model/UpdateSupplierResponse.php
+++ b/src/gen/lib/Model/UpdateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTaxRateResponse.php b/src/gen/lib/Model/UpdateTaxRateResponse.php
index 0cc048deb9..7c90c87e9f 100644
--- a/src/gen/lib/Model/UpdateTaxRateResponse.php
+++ b/src/gen/lib/Model/UpdateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTenderResponse.php b/src/gen/lib/Model/UpdateTenderResponse.php
index aa47d7e3b7..0ea7f86a55 100644
--- a/src/gen/lib/Model/UpdateTenderResponse.php
+++ b/src/gen/lib/Model/UpdateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTicketResponse.php b/src/gen/lib/Model/UpdateTicketResponse.php
index 95c33bbfc2..e15f741f9b 100644
--- a/src/gen/lib/Model/UpdateTicketResponse.php
+++ b/src/gen/lib/Model/UpdateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
index ce9af8fd2a..89285025c6 100644
--- a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUploadSessionResponse.php b/src/gen/lib/Model/UpdateUploadSessionResponse.php
index b7294da737..3170bfba3f 100644
--- a/src/gen/lib/Model/UpdateUploadSessionResponse.php
+++ b/src/gen/lib/Model/UpdateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUserResponse.php b/src/gen/lib/Model/UpdateUserResponse.php
index 56e0d4e741..7e1c4c5c9e 100644
--- a/src/gen/lib/Model/UpdateUserResponse.php
+++ b/src/gen/lib/Model/UpdateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookRequest.php b/src/gen/lib/Model/UpdateWebhookRequest.php
index 00b3dea96a..9c4b215885 100644
--- a/src/gen/lib/Model/UpdateWebhookRequest.php
+++ b/src/gen/lib/Model/UpdateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookResponse.php b/src/gen/lib/Model/UpdateWebhookResponse.php
index 47f71a035f..89c96bc7a0 100644
--- a/src/gen/lib/Model/UpdateWebhookResponse.php
+++ b/src/gen/lib/Model/UpdateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UploadSession.php b/src/gen/lib/Model/UploadSession.php
index 2b2255ef28..36a3745c02 100644
--- a/src/gen/lib/Model/UploadSession.php
+++ b/src/gen/lib/Model/UploadSession.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/User.php b/src/gen/lib/Model/User.php
index 015f519292..e8844aaadf 100644
--- a/src/gen/lib/Model/User.php
+++ b/src/gen/lib/Model/User.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VaultEventType.php b/src/gen/lib/Model/VaultEventType.php
index 6f294bf10a..dcadd1152e 100644
--- a/src/gen/lib/Model/VaultEventType.php
+++ b/src/gen/lib/Model/VaultEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VirtualWebhooks.php b/src/gen/lib/Model/VirtualWebhooks.php
index be24805bf3..54604c963c 100644
--- a/src/gen/lib/Model/VirtualWebhooks.php
+++ b/src/gen/lib/Model/VirtualWebhooks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WalletDetails.php b/src/gen/lib/Model/WalletDetails.php
index eb28fc7fab..100278a4e2 100644
--- a/src/gen/lib/Model/WalletDetails.php
+++ b/src/gen/lib/Model/WalletDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Webhook.php b/src/gen/lib/Model/Webhook.php
index 85e70c5909..37ef798c48 100644
--- a/src/gen/lib/Model/Webhook.php
+++ b/src/gen/lib/Model/Webhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEvent.php b/src/gen/lib/Model/WebhookEvent.php
index 6b0c06d1d7..6b76c617b3 100644
--- a/src/gen/lib/Model/WebhookEvent.php
+++ b/src/gen/lib/Model/WebhookEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLog.php b/src/gen/lib/Model/WebhookEventLog.php
index 11b46317f0..d7124b923a 100644
--- a/src/gen/lib/Model/WebhookEventLog.php
+++ b/src/gen/lib/Model/WebhookEventLog.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogAttempts.php b/src/gen/lib/Model/WebhookEventLogAttempts.php
index 859bc88422..4eb639324a 100644
--- a/src/gen/lib/Model/WebhookEventLogAttempts.php
+++ b/src/gen/lib/Model/WebhookEventLogAttempts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogService.php b/src/gen/lib/Model/WebhookEventLogService.php
index fce7597c9d..ea0a36db93 100644
--- a/src/gen/lib/Model/WebhookEventLogService.php
+++ b/src/gen/lib/Model/WebhookEventLogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilter.php b/src/gen/lib/Model/WebhookEventLogsFilter.php
index 28e7aff7ae..22a2715663 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilter.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilterService.php b/src/gen/lib/Model/WebhookEventLogsFilterService.php
index 19a2f679b9..a1787ea856 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilterService.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilterService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventType.php b/src/gen/lib/Model/WebhookEventType.php
index 23dbba12b8..c5b4910bdf 100644
--- a/src/gen/lib/Model/WebhookEventType.php
+++ b/src/gen/lib/Model/WebhookEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSubscription.php b/src/gen/lib/Model/WebhookSubscription.php
index 9172853719..fc2df90d48 100644
--- a/src/gen/lib/Model/WebhookSubscription.php
+++ b/src/gen/lib/Model/WebhookSubscription.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSupport.php b/src/gen/lib/Model/WebhookSupport.php
index be65d3aeab..e5b738f71e 100644
--- a/src/gen/lib/Model/WebhookSupport.php
+++ b/src/gen/lib/Model/WebhookSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Website.php b/src/gen/lib/Model/Website.php
index 2dedaceb91..4fe1f494a7 100644
--- a/src/gen/lib/Model/Website.php
+++ b/src/gen/lib/Model/Website.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ObjectSerializer.php b/src/gen/lib/ObjectSerializer.php
index d84d6f37c6..be53a4acbc 100644
--- a/src/gen/lib/ObjectSerializer.php
+++ b/src/gen/lib/ObjectSerializer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/AccountingApiTest.php b/src/gen/test/Api/AccountingApiTest.php
index cb6241e776..1134d6701f 100644
--- a/src/gen/test/Api/AccountingApiTest.php
+++ b/src/gen/test/Api/AccountingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -275,6 +275,66 @@ public function testCustomersUpdate()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test case for departmentsAdd
+ *
+ * Create Department.
+ *
+ */
+ public function testDepartmentsAdd()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test case for departmentsAll
+ *
+ * List Departments.
+ *
+ */
+ public function testDepartmentsAll()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test case for departmentsDelete
+ *
+ * Delete Department.
+ *
+ */
+ public function testDepartmentsDelete()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test case for departmentsOne
+ *
+ * Get Department.
+ *
+ */
+ public function testDepartmentsOne()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test case for departmentsUpdate
+ *
+ * Update Department.
+ *
+ */
+ public function testDepartmentsUpdate()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test case for invoiceItemsAdd
*
@@ -515,6 +575,66 @@ public function testLedgerAccountsUpdate()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test case for locationsAdd
+ *
+ * Create Location.
+ *
+ */
+ public function testLocationsAdd()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test case for locationsAll
+ *
+ * List Locations.
+ *
+ */
+ public function testLocationsAll()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test case for locationsDelete
+ *
+ * Delete Location.
+ *
+ */
+ public function testLocationsDelete()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test case for locationsOne
+ *
+ * Get Location.
+ *
+ */
+ public function testLocationsOne()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test case for locationsUpdate
+ *
+ * Update Location.
+ *
+ */
+ public function testLocationsUpdate()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test case for paymentsAdd
*
diff --git a/src/gen/test/Api/AtsApiTest.php b/src/gen/test/Api/AtsApiTest.php
index c68813b935..2a31916766 100644
--- a/src/gen/test/Api/AtsApiTest.php
+++ b/src/gen/test/Api/AtsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/ConnectorApiTest.php b/src/gen/test/Api/ConnectorApiTest.php
index d6ef2377c3..4598ff3fc1 100644
--- a/src/gen/test/Api/ConnectorApiTest.php
+++ b/src/gen/test/Api/ConnectorApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/CrmApiTest.php b/src/gen/test/Api/CrmApiTest.php
index b6911c4519..c19d5d46c9 100644
--- a/src/gen/test/Api/CrmApiTest.php
+++ b/src/gen/test/Api/CrmApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/EcommerceApiTest.php b/src/gen/test/Api/EcommerceApiTest.php
index 253868cabb..19de3a645e 100644
--- a/src/gen/test/Api/EcommerceApiTest.php
+++ b/src/gen/test/Api/EcommerceApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/FileStorageApiTest.php b/src/gen/test/Api/FileStorageApiTest.php
index a42555e78b..458847caf8 100644
--- a/src/gen/test/Api/FileStorageApiTest.php
+++ b/src/gen/test/Api/FileStorageApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/HrisApiTest.php b/src/gen/test/Api/HrisApiTest.php
index c9c65e0bde..30c94b5b85 100644
--- a/src/gen/test/Api/HrisApiTest.php
+++ b/src/gen/test/Api/HrisApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/IssueTrackingApiTest.php b/src/gen/test/Api/IssueTrackingApiTest.php
index 6469bb1726..d9c148bf9e 100644
--- a/src/gen/test/Api/IssueTrackingApiTest.php
+++ b/src/gen/test/Api/IssueTrackingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/LeadApiTest.php b/src/gen/test/Api/LeadApiTest.php
index 0358646974..d190c3ad5d 100644
--- a/src/gen/test/Api/LeadApiTest.php
+++ b/src/gen/test/Api/LeadApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/PosApiTest.php b/src/gen/test/Api/PosApiTest.php
index 57e04b2c72..eef88f1d16 100644
--- a/src/gen/test/Api/PosApiTest.php
+++ b/src/gen/test/Api/PosApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/SmsApiTest.php b/src/gen/test/Api/SmsApiTest.php
index cfee96d87b..fe25f1f09e 100644
--- a/src/gen/test/Api/SmsApiTest.php
+++ b/src/gen/test/Api/SmsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/VaultApiTest.php b/src/gen/test/Api/VaultApiTest.php
index 6cea79b08a..c219cac5b2 100644
--- a/src/gen/test/Api/VaultApiTest.php
+++ b/src/gen/test/Api/VaultApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/WebhookApiTest.php b/src/gen/test/Api/WebhookApiTest.php
index 7439b0f4ae..9520148c81 100644
--- a/src/gen/test/Api/WebhookApiTest.php
+++ b/src/gen/test/Api/WebhookApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingDepartmentTest.php b/src/gen/test/Model/AccountingDepartmentTest.php
new file mode 100644
index 0000000000..b6a46786e0
--- /dev/null
+++ b/src/gen/test/Model/AccountingDepartmentTest.php
@@ -0,0 +1,180 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "id"
+ */
+ public function testPropertyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "parent_id"
+ */
+ public function testPropertyParentId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "name"
+ */
+ public function testPropertyName()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "subsidiaries"
+ */
+ public function testPropertySubsidiaries()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "custom_mappings"
+ */
+ public function testPropertyCustomMappings()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "row_version"
+ */
+ public function testPropertyRowVersion()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "updated_by"
+ */
+ public function testPropertyUpdatedBy()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "created_by"
+ */
+ public function testPropertyCreatedBy()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "updated_at"
+ */
+ public function testPropertyUpdatedAt()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "created_at"
+ */
+ public function testPropertyCreatedAt()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/AccountingDepartmentsFilterTest.php b/src/gen/test/Model/AccountingDepartmentsFilterTest.php
new file mode 100644
index 0000000000..c155ca8510
--- /dev/null
+++ b/src/gen/test/Model/AccountingDepartmentsFilterTest.php
@@ -0,0 +1,90 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "subsidiary"
+ */
+ public function testPropertySubsidiary()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/AccountingEventTypeTest.php b/src/gen/test/Model/AccountingEventTypeTest.php
index 744458e4b6..5a4c9b638e 100644
--- a/src/gen/test/Model/AccountingEventTypeTest.php
+++ b/src/gen/test/Model/AccountingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingLocationTest.php b/src/gen/test/Model/AccountingLocationTest.php
new file mode 100644
index 0000000000..8641978847
--- /dev/null
+++ b/src/gen/test/Model/AccountingLocationTest.php
@@ -0,0 +1,198 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "id"
+ */
+ public function testPropertyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "parent_id"
+ */
+ public function testPropertyParentId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "company_name"
+ */
+ public function testPropertyCompanyName()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "display_name"
+ */
+ public function testPropertyDisplayName()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "addresses"
+ */
+ public function testPropertyAddresses()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "subsidiaries"
+ */
+ public function testPropertySubsidiaries()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "custom_mappings"
+ */
+ public function testPropertyCustomMappings()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "row_version"
+ */
+ public function testPropertyRowVersion()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "updated_by"
+ */
+ public function testPropertyUpdatedBy()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "created_by"
+ */
+ public function testPropertyCreatedBy()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "updated_at"
+ */
+ public function testPropertyUpdatedAt()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "created_at"
+ */
+ public function testPropertyCreatedAt()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/AccountingLocationsFilterTest.php b/src/gen/test/Model/AccountingLocationsFilterTest.php
new file mode 100644
index 0000000000..cde6381377
--- /dev/null
+++ b/src/gen/test/Model/AccountingLocationsFilterTest.php
@@ -0,0 +1,90 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "subsidiary"
+ */
+ public function testPropertySubsidiary()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/ActivitiesFilterTest.php b/src/gen/test/Model/ActivitiesFilterTest.php
index 84193a8b9a..9e13d38e7a 100644
--- a/src/gen/test/Model/ActivitiesFilterTest.php
+++ b/src/gen/test/Model/ActivitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivitiesSortTest.php b/src/gen/test/Model/ActivitiesSortTest.php
index 3ef73ecdca..7879248c98 100644
--- a/src/gen/test/Model/ActivitiesSortTest.php
+++ b/src/gen/test/Model/ActivitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityAttendeeTest.php b/src/gen/test/Model/ActivityAttendeeTest.php
index 6a243c0a9d..d97c23b175 100644
--- a/src/gen/test/Model/ActivityAttendeeTest.php
+++ b/src/gen/test/Model/ActivityAttendeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityTest.php b/src/gen/test/Model/ActivityTest.php
index 78660da99a..fa9c3027ea 100644
--- a/src/gen/test/Model/ActivityTest.php
+++ b/src/gen/test/Model/ActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AddressTest.php b/src/gen/test/Model/AddressTest.php
index 17853b90ec..9794b35632 100644
--- a/src/gen/test/Model/AddressTest.php
+++ b/src/gen/test/Model/AddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
index 5d4d50029a..b740353b89 100644
--- a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageTest.php
index e03f36afe3..fc2c895277 100644
--- a/src/gen/test/Model/ApiResourceCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
index 4cda9ec144..1a57e248b5 100644
--- a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
+++ b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceTest.php b/src/gen/test/Model/ApiResourceTest.php
index 46fb1c2848..c6af00d595 100644
--- a/src/gen/test/Model/ApiResourceTest.php
+++ b/src/gen/test/Model/ApiResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourcesTest.php b/src/gen/test/Model/ApiResourcesTest.php
index 177c6f28d5..c9e60490a9 100644
--- a/src/gen/test/Model/ApiResourcesTest.php
+++ b/src/gen/test/Model/ApiResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiStatusTest.php b/src/gen/test/Model/ApiStatusTest.php
index 9d016afb53..fd562a407e 100644
--- a/src/gen/test/Model/ApiStatusTest.php
+++ b/src/gen/test/Model/ApiStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiTest.php b/src/gen/test/Model/ApiTest.php
index 614c1ec040..2377a7d181 100644
--- a/src/gen/test/Model/ApiTest.php
+++ b/src/gen/test/Model/ApiTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApisFilterTest.php b/src/gen/test/Model/ApisFilterTest.php
index ad4ffbca5f..414458bc2c 100644
--- a/src/gen/test/Model/ApisFilterTest.php
+++ b/src/gen/test/Model/ApisFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantSocialLinksTest.php b/src/gen/test/Model/ApplicantSocialLinksTest.php
index 93e08d4358..897047e13e 100644
--- a/src/gen/test/Model/ApplicantSocialLinksTest.php
+++ b/src/gen/test/Model/ApplicantSocialLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantTest.php b/src/gen/test/Model/ApplicantTest.php
index 499ce03dea..fc661db5ea 100644
--- a/src/gen/test/Model/ApplicantTest.php
+++ b/src/gen/test/Model/ApplicantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantWebsitesTest.php b/src/gen/test/Model/ApplicantWebsitesTest.php
index 6b8b8ecafc..b75925ae8e 100644
--- a/src/gen/test/Model/ApplicantWebsitesTest.php
+++ b/src/gen/test/Model/ApplicantWebsitesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantsFilterTest.php b/src/gen/test/Model/ApplicantsFilterTest.php
index b68551a42d..b2568d1991 100644
--- a/src/gen/test/Model/ApplicantsFilterTest.php
+++ b/src/gen/test/Model/ApplicantsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationStageTest.php b/src/gen/test/Model/ApplicationStageTest.php
index a3d2faa9cf..6d65c981b6 100644
--- a/src/gen/test/Model/ApplicationStageTest.php
+++ b/src/gen/test/Model/ApplicationStageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationTest.php b/src/gen/test/Model/ApplicationTest.php
index b1cc1da76c..23514b3806 100644
--- a/src/gen/test/Model/ApplicationTest.php
+++ b/src/gen/test/Model/ApplicationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AssigneeTest.php b/src/gen/test/Model/AssigneeTest.php
index d388bb4f2c..47da59b3dd 100644
--- a/src/gen/test/Model/AssigneeTest.php
+++ b/src/gen/test/Model/AssigneeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsActivityTest.php b/src/gen/test/Model/AtsActivityTest.php
index 8a277f3eb6..5a5357b3fb 100644
--- a/src/gen/test/Model/AtsActivityTest.php
+++ b/src/gen/test/Model/AtsActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsEventTypeTest.php b/src/gen/test/Model/AtsEventTypeTest.php
index 89642e5360..c8af02e0ff 100644
--- a/src/gen/test/Model/AtsEventTypeTest.php
+++ b/src/gen/test/Model/AtsEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AuthTypeTest.php b/src/gen/test/Model/AuthTypeTest.php
index c75d7d9dd8..cce77d2e9e 100644
--- a/src/gen/test/Model/AuthTypeTest.php
+++ b/src/gen/test/Model/AuthTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BadRequestResponseTest.php b/src/gen/test/Model/BadRequestResponseTest.php
index 98b396325d..ba604e273d 100644
--- a/src/gen/test/Model/BadRequestResponseTest.php
+++ b/src/gen/test/Model/BadRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
index f918e7241e..fcbb850e07 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
index 3074f5f521..3ae0f6dbc9 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
index 778a9e5885..95b82ab86f 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
index 22dce36bf3..8d3a9d8483 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsTest.php
index 0ad002a403..a914dd2785 100644
--- a/src/gen/test/Model/BalanceSheetAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityItemsTest.php b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
index 846b0d3537..bf8f70bb03 100644
--- a/src/gen/test/Model/BalanceSheetEquityItemsTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityTest.php b/src/gen/test/Model/BalanceSheetEquityTest.php
index 6cd172c745..d195b15940 100644
--- a/src/gen/test/Model/BalanceSheetEquityTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetFilterTest.php b/src/gen/test/Model/BalanceSheetFilterTest.php
index c30c9c8582..b8f32186fa 100644
--- a/src/gen/test/Model/BalanceSheetFilterTest.php
+++ b/src/gen/test/Model/BalanceSheetFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
index 5c3cefc562..2a21678795 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
index e9aa45c14c..632220420d 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetTest.php b/src/gen/test/Model/BalanceSheetTest.php
index 5e65588db1..55f4f12473 100644
--- a/src/gen/test/Model/BalanceSheetTest.php
+++ b/src/gen/test/Model/BalanceSheetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BankAccountTest.php b/src/gen/test/Model/BankAccountTest.php
index cd33fb4a4c..b591db0d08 100644
--- a/src/gen/test/Model/BankAccountTest.php
+++ b/src/gen/test/Model/BankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BenefitTest.php b/src/gen/test/Model/BenefitTest.php
index 54d258e5ad..a5a25b1450 100644
--- a/src/gen/test/Model/BenefitTest.php
+++ b/src/gen/test/Model/BenefitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillLineItemTest.php b/src/gen/test/Model/BillLineItemTest.php
index 9d43b3a765..569dc1ce6e 100644
--- a/src/gen/test/Model/BillLineItemTest.php
+++ b/src/gen/test/Model/BillLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillTest.php b/src/gen/test/Model/BillTest.php
index 9e84fca392..3ca57b6f0b 100644
--- a/src/gen/test/Model/BillTest.php
+++ b/src/gen/test/Model/BillTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsFilterTest.php b/src/gen/test/Model/BillsFilterTest.php
index 6d49aaa346..d3e81f1531 100644
--- a/src/gen/test/Model/BillsFilterTest.php
+++ b/src/gen/test/Model/BillsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsSortTest.php b/src/gen/test/Model/BillsSortTest.php
index 8e03ded7bc..cd79f00d3a 100644
--- a/src/gen/test/Model/BillsSortTest.php
+++ b/src/gen/test/Model/BillsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BranchTest.php b/src/gen/test/Model/BranchTest.php
index e7f3c5efa1..31c3351d59 100644
--- a/src/gen/test/Model/BranchTest.php
+++ b/src/gen/test/Model/BranchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CashDetailsTest.php b/src/gen/test/Model/CashDetailsTest.php
index 0161854dea..d9efcbd172 100644
--- a/src/gen/test/Model/CashDetailsTest.php
+++ b/src/gen/test/Model/CashDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTagTest.php b/src/gen/test/Model/CollectionTagTest.php
index a859e7be3a..f9a007bdfc 100644
--- a/src/gen/test/Model/CollectionTagTest.php
+++ b/src/gen/test/Model/CollectionTagTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTest.php b/src/gen/test/Model/CollectionTest.php
index f27fae27af..c3c5977889 100644
--- a/src/gen/test/Model/CollectionTest.php
+++ b/src/gen/test/Model/CollectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTicketCommentTest.php b/src/gen/test/Model/CollectionTicketCommentTest.php
index a7890b43b8..a656407a12 100644
--- a/src/gen/test/Model/CollectionTicketCommentTest.php
+++ b/src/gen/test/Model/CollectionTicketCommentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionUserTest.php b/src/gen/test/Model/CollectionUserTest.php
index 51417ff630..96492da0e1 100644
--- a/src/gen/test/Model/CollectionUserTest.php
+++ b/src/gen/test/Model/CollectionUserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionsSortTest.php b/src/gen/test/Model/CollectionsSortTest.php
index 5eb7f4790a..edfa07686a 100644
--- a/src/gen/test/Model/CollectionsSortTest.php
+++ b/src/gen/test/Model/CollectionsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CommentsSortTest.php b/src/gen/test/Model/CommentsSortTest.php
index 8dc69478d1..0d8f010f5c 100644
--- a/src/gen/test/Model/CommentsSortTest.php
+++ b/src/gen/test/Model/CommentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesFilterTest.php b/src/gen/test/Model/CompaniesFilterTest.php
index f5722142f9..da989ced93 100644
--- a/src/gen/test/Model/CompaniesFilterTest.php
+++ b/src/gen/test/Model/CompaniesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesSortTest.php b/src/gen/test/Model/CompaniesSortTest.php
index e9971a082c..f1d1f2dd0b 100644
--- a/src/gen/test/Model/CompaniesSortTest.php
+++ b/src/gen/test/Model/CompaniesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyInfoTest.php b/src/gen/test/Model/CompanyInfoTest.php
index 93e057b737..0bbcd6a7a7 100644
--- a/src/gen/test/Model/CompanyInfoTest.php
+++ b/src/gen/test/Model/CompanyInfoTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyRowTypeTest.php b/src/gen/test/Model/CompanyRowTypeTest.php
index dd69a650ad..b91485a29f 100644
--- a/src/gen/test/Model/CompanyRowTypeTest.php
+++ b/src/gen/test/Model/CompanyRowTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyTest.php b/src/gen/test/Model/CompanyTest.php
index d337438441..502fede273 100644
--- a/src/gen/test/Model/CompanyTest.php
+++ b/src/gen/test/Model/CompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompensationTest.php b/src/gen/test/Model/CompensationTest.php
index 45869ef71c..e06f53d6d6 100644
--- a/src/gen/test/Model/CompensationTest.php
+++ b/src/gen/test/Model/CompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionConfigurationTest.php b/src/gen/test/Model/ConnectionConfigurationTest.php
index 7db7c10872..048e0f6974 100644
--- a/src/gen/test/Model/ConnectionConfigurationTest.php
+++ b/src/gen/test/Model/ConnectionConfigurationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionDefaultsTest.php b/src/gen/test/Model/ConnectionDefaultsTest.php
index 5162061604..0fb6c4617b 100644
--- a/src/gen/test/Model/ConnectionDefaultsTest.php
+++ b/src/gen/test/Model/ConnectionDefaultsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
index abb495a0f4..ec1f2fcb25 100644
--- a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
+++ b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataTest.php b/src/gen/test/Model/ConnectionImportDataTest.php
index c7cc330461..292072ab49 100644
--- a/src/gen/test/Model/ConnectionImportDataTest.php
+++ b/src/gen/test/Model/ConnectionImportDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionMetadataTest.php b/src/gen/test/Model/ConnectionMetadataTest.php
index 5466443a13..71726367f4 100644
--- a/src/gen/test/Model/ConnectionMetadataTest.php
+++ b/src/gen/test/Model/ConnectionMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionStateTest.php b/src/gen/test/Model/ConnectionStateTest.php
index bd0146437f..4d36b7b0ae 100644
--- a/src/gen/test/Model/ConnectionStateTest.php
+++ b/src/gen/test/Model/ConnectionStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionTest.php b/src/gen/test/Model/ConnectionTest.php
index e5ee56a591..d7dccebe10 100644
--- a/src/gen/test/Model/ConnectionTest.php
+++ b/src/gen/test/Model/ConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionWebhookTest.php b/src/gen/test/Model/ConnectionWebhookTest.php
index 84b22ec4a8..959b19fb21 100644
--- a/src/gen/test/Model/ConnectionWebhookTest.php
+++ b/src/gen/test/Model/ConnectionWebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorDocTest.php b/src/gen/test/Model/ConnectorDocTest.php
index d08425f5e6..c2fd6a17c7 100644
--- a/src/gen/test/Model/ConnectorDocTest.php
+++ b/src/gen/test/Model/ConnectorDocTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorEventTest.php b/src/gen/test/Model/ConnectorEventTest.php
index de70a7bfc6..592e07d372 100644
--- a/src/gen/test/Model/ConnectorEventTest.php
+++ b/src/gen/test/Model/ConnectorEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopes1Test.php b/src/gen/test/Model/ConnectorOauthScopes1Test.php
index ce2f95295e..03d8be6ed5 100644
--- a/src/gen/test/Model/ConnectorOauthScopes1Test.php
+++ b/src/gen/test/Model/ConnectorOauthScopes1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopesTest.php b/src/gen/test/Model/ConnectorOauthScopesTest.php
index 1090f13809..aac6df264c 100644
--- a/src/gen/test/Model/ConnectorOauthScopesTest.php
+++ b/src/gen/test/Model/ConnectorOauthScopesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorResourceTest.php b/src/gen/test/Model/ConnectorResourceTest.php
index 8c0a4aa55a..33b4295c89 100644
--- a/src/gen/test/Model/ConnectorResourceTest.php
+++ b/src/gen/test/Model/ConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorSettingTest.php b/src/gen/test/Model/ConnectorSettingTest.php
index 92594498bd..ea96bf1c26 100644
--- a/src/gen/test/Model/ConnectorSettingTest.php
+++ b/src/gen/test/Model/ConnectorSettingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorStatusTest.php b/src/gen/test/Model/ConnectorStatusTest.php
index 253f8423a9..fbcb537123 100644
--- a/src/gen/test/Model/ConnectorStatusTest.php
+++ b/src/gen/test/Model/ConnectorStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTest.php b/src/gen/test/Model/ConnectorTest.php
index afce1d5a6c..822be3ab5d 100644
--- a/src/gen/test/Model/ConnectorTest.php
+++ b/src/gen/test/Model/ConnectorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTlsSupportTest.php b/src/gen/test/Model/ConnectorTlsSupportTest.php
index a5c5bf7035..0d46d499af 100644
--- a/src/gen/test/Model/ConnectorTlsSupportTest.php
+++ b/src/gen/test/Model/ConnectorTlsSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorUnifiedApisTest.php b/src/gen/test/Model/ConnectorUnifiedApisTest.php
index 129708aacb..20e309626b 100644
--- a/src/gen/test/Model/ConnectorUnifiedApisTest.php
+++ b/src/gen/test/Model/ConnectorUnifiedApisTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorsFilterTest.php b/src/gen/test/Model/ConnectorsFilterTest.php
index 3387b9189d..057a6a84c9 100644
--- a/src/gen/test/Model/ConnectorsFilterTest.php
+++ b/src/gen/test/Model/ConnectorsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerConnectionTest.php b/src/gen/test/Model/ConsumerConnectionTest.php
index 0a8384d421..be8c433109 100644
--- a/src/gen/test/Model/ConsumerConnectionTest.php
+++ b/src/gen/test/Model/ConsumerConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerMetadataTest.php b/src/gen/test/Model/ConsumerMetadataTest.php
index 09d49d6345..b899c4a4c7 100644
--- a/src/gen/test/Model/ConsumerMetadataTest.php
+++ b/src/gen/test/Model/ConsumerMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
index a22952ca89..454e7b2c9e 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
index 1808b3033b..c219939207 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerTest.php b/src/gen/test/Model/ConsumerTest.php
index 8f3f4ef826..f8792de904 100644
--- a/src/gen/test/Model/ConsumerTest.php
+++ b/src/gen/test/Model/ConsumerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactTest.php b/src/gen/test/Model/ContactTest.php
index e4f96080ab..15e91c9b85 100644
--- a/src/gen/test/Model/ContactTest.php
+++ b/src/gen/test/Model/ContactTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsFilterTest.php b/src/gen/test/Model/ContactsFilterTest.php
index 4ef838fe0f..3bc97073a9 100644
--- a/src/gen/test/Model/ContactsFilterTest.php
+++ b/src/gen/test/Model/ContactsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsSortTest.php b/src/gen/test/Model/ContactsSortTest.php
index cb84f09e4e..e5e3243904 100644
--- a/src/gen/test/Model/ContactsSortTest.php
+++ b/src/gen/test/Model/ContactsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CopyFolderRequestTest.php b/src/gen/test/Model/CopyFolderRequestTest.php
index ac73a30378..b7440a57d9 100644
--- a/src/gen/test/Model/CopyFolderRequestTest.php
+++ b/src/gen/test/Model/CopyFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateAccountingDepartmentResponseTest.php b/src/gen/test/Model/CreateAccountingDepartmentResponseTest.php
new file mode 100644
index 0000000000..739237e533
--- /dev/null
+++ b/src/gen/test/Model/CreateAccountingDepartmentResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/CreateAccountingLocationResponseTest.php b/src/gen/test/Model/CreateAccountingLocationResponseTest.php
new file mode 100644
index 0000000000..78e815d733
--- /dev/null
+++ b/src/gen/test/Model/CreateAccountingLocationResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/CreateActivityResponseTest.php b/src/gen/test/Model/CreateActivityResponseTest.php
index 8116ee7c5f..fb7a71d503 100644
--- a/src/gen/test/Model/CreateActivityResponseTest.php
+++ b/src/gen/test/Model/CreateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicantResponseTest.php b/src/gen/test/Model/CreateApplicantResponseTest.php
index 7f759016b0..6bb7c214cd 100644
--- a/src/gen/test/Model/CreateApplicantResponseTest.php
+++ b/src/gen/test/Model/CreateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicationResponseTest.php b/src/gen/test/Model/CreateApplicationResponseTest.php
index 19afc5eed2..83a28223aa 100644
--- a/src/gen/test/Model/CreateApplicationResponseTest.php
+++ b/src/gen/test/Model/CreateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateBillResponseTest.php b/src/gen/test/Model/CreateBillResponseTest.php
index 2a11a4219f..0c0f394607 100644
--- a/src/gen/test/Model/CreateBillResponseTest.php
+++ b/src/gen/test/Model/CreateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCommentResponseTest.php b/src/gen/test/Model/CreateCommentResponseTest.php
index d8cf2912d9..5166f36216 100644
--- a/src/gen/test/Model/CreateCommentResponseTest.php
+++ b/src/gen/test/Model/CreateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCompanyResponseTest.php b/src/gen/test/Model/CreateCompanyResponseTest.php
index 8d89bb9d78..f491fec4a6 100644
--- a/src/gen/test/Model/CreateCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConnectionResponseTest.php b/src/gen/test/Model/CreateConnectionResponseTest.php
index 178b4e0e47..f542c7d4ba 100644
--- a/src/gen/test/Model/CreateConnectionResponseTest.php
+++ b/src/gen/test/Model/CreateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConsumerResponseTest.php b/src/gen/test/Model/CreateConsumerResponseTest.php
index cca8734497..a3f0ad31fb 100644
--- a/src/gen/test/Model/CreateConsumerResponseTest.php
+++ b/src/gen/test/Model/CreateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateContactResponseTest.php b/src/gen/test/Model/CreateContactResponseTest.php
index 655ede28b1..a397fc6592 100644
--- a/src/gen/test/Model/CreateContactResponseTest.php
+++ b/src/gen/test/Model/CreateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCreditNoteResponseTest.php b/src/gen/test/Model/CreateCreditNoteResponseTest.php
index dfe5b9e2e1..553546593f 100644
--- a/src/gen/test/Model/CreateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/CreateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingRequestTest.php b/src/gen/test/Model/CreateCustomMappingRequestTest.php
index e76aa7c164..905f7fca75 100644
--- a/src/gen/test/Model/CreateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/CreateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingResponseTest.php b/src/gen/test/Model/CreateCustomMappingResponseTest.php
index 2fcd62a858..d048d8b040 100644
--- a/src/gen/test/Model/CreateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/CreateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomerResponseTest.php b/src/gen/test/Model/CreateCustomerResponseTest.php
index 272cc33da5..620952cad9 100644
--- a/src/gen/test/Model/CreateCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDepartmentResponseTest.php b/src/gen/test/Model/CreateDepartmentResponseTest.php
index 9365589d70..3f38fdd47d 100644
--- a/src/gen/test/Model/CreateDepartmentResponseTest.php
+++ b/src/gen/test/Model/CreateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveGroupResponseTest.php b/src/gen/test/Model/CreateDriveGroupResponseTest.php
index 1ec0d4561d..9ad7b003f3 100644
--- a/src/gen/test/Model/CreateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/CreateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveResponseTest.php b/src/gen/test/Model/CreateDriveResponseTest.php
index 435903c639..bfd6b7f692 100644
--- a/src/gen/test/Model/CreateDriveResponseTest.php
+++ b/src/gen/test/Model/CreateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
index 6d82bde3e3..9764799d75 100644
--- a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
index cd5bb11d4a..7ce66dbd8d 100644
--- a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEmployeeResponseTest.php b/src/gen/test/Model/CreateEmployeeResponseTest.php
index 8bc8054949..827b5f5b21 100644
--- a/src/gen/test/Model/CreateEmployeeResponseTest.php
+++ b/src/gen/test/Model/CreateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileRequestTest.php b/src/gen/test/Model/CreateFileRequestTest.php
index e3e04f09f3..eb2763997c 100644
--- a/src/gen/test/Model/CreateFileRequestTest.php
+++ b/src/gen/test/Model/CreateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileResponseTest.php b/src/gen/test/Model/CreateFileResponseTest.php
index 06eebe96a5..d9d63ed620 100644
--- a/src/gen/test/Model/CreateFileResponseTest.php
+++ b/src/gen/test/Model/CreateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderRequestTest.php b/src/gen/test/Model/CreateFolderRequestTest.php
index 44de234f41..f524aca69b 100644
--- a/src/gen/test/Model/CreateFolderRequestTest.php
+++ b/src/gen/test/Model/CreateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderResponseTest.php b/src/gen/test/Model/CreateFolderResponseTest.php
index 19f8fecbc0..5eeb493ebf 100644
--- a/src/gen/test/Model/CreateFolderResponseTest.php
+++ b/src/gen/test/Model/CreateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateHrisCompanyResponseTest.php b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
index ebaf2a24e3..81298dd053 100644
--- a/src/gen/test/Model/CreateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceItemResponseTest.php b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
index 071668406e..b26ba6d624 100644
--- a/src/gen/test/Model/CreateInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceResponseTest.php b/src/gen/test/Model/CreateInvoiceResponseTest.php
index ae9bc34e74..22b920d938 100644
--- a/src/gen/test/Model/CreateInvoiceResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateItemResponseTest.php b/src/gen/test/Model/CreateItemResponseTest.php
index 67e682bd34..8ad153c6c3 100644
--- a/src/gen/test/Model/CreateItemResponseTest.php
+++ b/src/gen/test/Model/CreateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJobResponseTest.php b/src/gen/test/Model/CreateJobResponseTest.php
index 85569db615..2e439f070e 100644
--- a/src/gen/test/Model/CreateJobResponseTest.php
+++ b/src/gen/test/Model/CreateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJournalEntryResponseTest.php b/src/gen/test/Model/CreateJournalEntryResponseTest.php
index 20e57ccbfa..4110259ee4 100644
--- a/src/gen/test/Model/CreateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/CreateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLeadResponseTest.php b/src/gen/test/Model/CreateLeadResponseTest.php
index 9d71e5a992..bd2edbabff 100644
--- a/src/gen/test/Model/CreateLeadResponseTest.php
+++ b/src/gen/test/Model/CreateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLedgerAccountResponseTest.php b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
index a9e805c484..c381f9bc5c 100644
--- a/src/gen/test/Model/CreateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLocationResponseTest.php b/src/gen/test/Model/CreateLocationResponseTest.php
index ce0ef08d74..82a5f5bc56 100644
--- a/src/gen/test/Model/CreateLocationResponseTest.php
+++ b/src/gen/test/Model/CreateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMerchantResponseTest.php b/src/gen/test/Model/CreateMerchantResponseTest.php
index c47f17f6de..a3c5c434bc 100644
--- a/src/gen/test/Model/CreateMerchantResponseTest.php
+++ b/src/gen/test/Model/CreateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMessageResponseTest.php b/src/gen/test/Model/CreateMessageResponseTest.php
index a5d25d6268..7f6da4e915 100644
--- a/src/gen/test/Model/CreateMessageResponseTest.php
+++ b/src/gen/test/Model/CreateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierGroupResponseTest.php b/src/gen/test/Model/CreateModifierGroupResponseTest.php
index 0bc1675807..5ca408a2b1 100644
--- a/src/gen/test/Model/CreateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/CreateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierResponseTest.php b/src/gen/test/Model/CreateModifierResponseTest.php
index eeda742388..839943aa7a 100644
--- a/src/gen/test/Model/CreateModifierResponseTest.php
+++ b/src/gen/test/Model/CreateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateNoteResponseTest.php b/src/gen/test/Model/CreateNoteResponseTest.php
index 6e39bd74b5..cd18ab12d9 100644
--- a/src/gen/test/Model/CreateNoteResponseTest.php
+++ b/src/gen/test/Model/CreateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOpportunityResponseTest.php b/src/gen/test/Model/CreateOpportunityResponseTest.php
index 695d45c6b7..229266835f 100644
--- a/src/gen/test/Model/CreateOpportunityResponseTest.php
+++ b/src/gen/test/Model/CreateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderResponseTest.php b/src/gen/test/Model/CreateOrderResponseTest.php
index 97eb73f3bb..a19475cd3f 100644
--- a/src/gen/test/Model/CreateOrderResponseTest.php
+++ b/src/gen/test/Model/CreateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderTypeResponseTest.php b/src/gen/test/Model/CreateOrderTypeResponseTest.php
index 4976b51ddd..1d16667440 100644
--- a/src/gen/test/Model/CreateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/CreateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePaymentResponseTest.php b/src/gen/test/Model/CreatePaymentResponseTest.php
index 607a5005fb..97c0cb7942 100644
--- a/src/gen/test/Model/CreatePaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePipelineResponseTest.php b/src/gen/test/Model/CreatePipelineResponseTest.php
index ce562a5016..1eddfb86df 100644
--- a/src/gen/test/Model/CreatePipelineResponseTest.php
+++ b/src/gen/test/Model/CreatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePosPaymentResponseTest.php b/src/gen/test/Model/CreatePosPaymentResponseTest.php
index 76f2e823ab..8755d369da 100644
--- a/src/gen/test/Model/CreatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateProductResponseTest.php b/src/gen/test/Model/CreateProductResponseTest.php
index 383055b0d4..7ab4afd4aa 100644
--- a/src/gen/test/Model/CreateProductResponseTest.php
+++ b/src/gen/test/Model/CreateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
index 15e89593e0..3a88754152 100644
--- a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseDataTest.php b/src/gen/test/Model/CreateSessionResponseDataTest.php
index 5d5bf6163b..a9eaafb1ad 100644
--- a/src/gen/test/Model/CreateSessionResponseDataTest.php
+++ b/src/gen/test/Model/CreateSessionResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseTest.php b/src/gen/test/Model/CreateSessionResponseTest.php
index 81797f7386..fcdd6b0be2 100644
--- a/src/gen/test/Model/CreateSessionResponseTest.php
+++ b/src/gen/test/Model/CreateSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSharedLinkResponseTest.php b/src/gen/test/Model/CreateSharedLinkResponseTest.php
index 0fd7548fed..7996cbcf64 100644
--- a/src/gen/test/Model/CreateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/CreateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSubsidiaryResponseTest.php b/src/gen/test/Model/CreateSubsidiaryResponseTest.php
index efea5bb466..c113ebac97 100644
--- a/src/gen/test/Model/CreateSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/CreateSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSupplierResponseTest.php b/src/gen/test/Model/CreateSupplierResponseTest.php
index b30d0aeaf2..164b38cc41 100644
--- a/src/gen/test/Model/CreateSupplierResponseTest.php
+++ b/src/gen/test/Model/CreateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTaxRateResponseTest.php b/src/gen/test/Model/CreateTaxRateResponseTest.php
index c3d252390f..35b5bc7329 100644
--- a/src/gen/test/Model/CreateTaxRateResponseTest.php
+++ b/src/gen/test/Model/CreateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTenderResponseTest.php b/src/gen/test/Model/CreateTenderResponseTest.php
index 4a623ec22a..ca72f95224 100644
--- a/src/gen/test/Model/CreateTenderResponseTest.php
+++ b/src/gen/test/Model/CreateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTicketResponseTest.php b/src/gen/test/Model/CreateTicketResponseTest.php
index eed4365672..00be35663d 100644
--- a/src/gen/test/Model/CreateTicketResponseTest.php
+++ b/src/gen/test/Model/CreateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
index e16d614d47..457785399f 100644
--- a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionRequestTest.php b/src/gen/test/Model/CreateUploadSessionRequestTest.php
index 681358192b..51ca1604a6 100644
--- a/src/gen/test/Model/CreateUploadSessionRequestTest.php
+++ b/src/gen/test/Model/CreateUploadSessionRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionResponseTest.php b/src/gen/test/Model/CreateUploadSessionResponseTest.php
index c286546185..87d8f0516f 100644
--- a/src/gen/test/Model/CreateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/CreateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUserResponseTest.php b/src/gen/test/Model/CreateUserResponseTest.php
index fa4064cebf..a49f71dc14 100644
--- a/src/gen/test/Model/CreateUserResponseTest.php
+++ b/src/gen/test/Model/CreateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookRequestTest.php b/src/gen/test/Model/CreateWebhookRequestTest.php
index f32f438b37..4050905f37 100644
--- a/src/gen/test/Model/CreateWebhookRequestTest.php
+++ b/src/gen/test/Model/CreateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookResponseTest.php b/src/gen/test/Model/CreateWebhookResponseTest.php
index a9075dca14..a0e2934ece 100644
--- a/src/gen/test/Model/CreateWebhookResponseTest.php
+++ b/src/gen/test/Model/CreateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNoteTest.php b/src/gen/test/Model/CreditNoteTest.php
index 221524ce64..9640a51d93 100644
--- a/src/gen/test/Model/CreditNoteTest.php
+++ b/src/gen/test/Model/CreditNoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesFilterTest.php b/src/gen/test/Model/CreditNotesFilterTest.php
index dd27ffb2ba..89e7558a0c 100644
--- a/src/gen/test/Model/CreditNotesFilterTest.php
+++ b/src/gen/test/Model/CreditNotesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesSortTest.php b/src/gen/test/Model/CreditNotesSortTest.php
index e5f030c2e4..dcdb98bdf0 100644
--- a/src/gen/test/Model/CreditNotesSortTest.php
+++ b/src/gen/test/Model/CreditNotesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CrmEventTypeTest.php b/src/gen/test/Model/CrmEventTypeTest.php
index 9a3cb40947..d06853d814 100644
--- a/src/gen/test/Model/CrmEventTypeTest.php
+++ b/src/gen/test/Model/CrmEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CurrencyTest.php b/src/gen/test/Model/CurrencyTest.php
index 9ecc5a4bb3..008a8c936e 100644
--- a/src/gen/test/Model/CurrencyTest.php
+++ b/src/gen/test/Model/CurrencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldFinderTest.php b/src/gen/test/Model/CustomFieldFinderTest.php
index ee9a026831..c464cef8be 100644
--- a/src/gen/test/Model/CustomFieldFinderTest.php
+++ b/src/gen/test/Model/CustomFieldFinderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldTest.php b/src/gen/test/Model/CustomFieldTest.php
index 91f7c4411b..7ea5597621 100644
--- a/src/gen/test/Model/CustomFieldTest.php
+++ b/src/gen/test/Model/CustomFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomMappingTest.php b/src/gen/test/Model/CustomMappingTest.php
index 8ee084df7c..48e90dd6df 100644
--- a/src/gen/test/Model/CustomMappingTest.php
+++ b/src/gen/test/Model/CustomMappingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomerTest.php b/src/gen/test/Model/CustomerTest.php
index f71c52e051..b437eb97e1 100644
--- a/src/gen/test/Model/CustomerTest.php
+++ b/src/gen/test/Model/CustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersFilterTest.php b/src/gen/test/Model/CustomersFilterTest.php
index 8c2d2dca05..d4855d864a 100644
--- a/src/gen/test/Model/CustomersFilterTest.php
+++ b/src/gen/test/Model/CustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersSortTest.php b/src/gen/test/Model/CustomersSortTest.php
index 09aa124d45..066e35db84 100644
--- a/src/gen/test/Model/CustomersSortTest.php
+++ b/src/gen/test/Model/CustomersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeductionTest.php b/src/gen/test/Model/DeductionTest.php
index 53e24a0a3c..745a950e57 100644
--- a/src/gen/test/Model/DeductionTest.php
+++ b/src/gen/test/Model/DeductionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteAccountingDepartmentResponseTest.php b/src/gen/test/Model/DeleteAccountingDepartmentResponseTest.php
new file mode 100644
index 0000000000..61ff73f8ac
--- /dev/null
+++ b/src/gen/test/Model/DeleteAccountingDepartmentResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/DeleteAccountingLocationResponseTest.php b/src/gen/test/Model/DeleteAccountingLocationResponseTest.php
new file mode 100644
index 0000000000..4045353122
--- /dev/null
+++ b/src/gen/test/Model/DeleteAccountingLocationResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/DeleteActivityResponseTest.php b/src/gen/test/Model/DeleteActivityResponseTest.php
index 4ce3c7f35a..f8545e096a 100644
--- a/src/gen/test/Model/DeleteActivityResponseTest.php
+++ b/src/gen/test/Model/DeleteActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicantResponseTest.php b/src/gen/test/Model/DeleteApplicantResponseTest.php
index af07b1a116..0410423d19 100644
--- a/src/gen/test/Model/DeleteApplicantResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicationResponseTest.php b/src/gen/test/Model/DeleteApplicationResponseTest.php
index ae4fbda1f3..34fe2eb880 100644
--- a/src/gen/test/Model/DeleteApplicationResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteBillResponseTest.php b/src/gen/test/Model/DeleteBillResponseTest.php
index c4265304c2..ab4fe2c7e9 100644
--- a/src/gen/test/Model/DeleteBillResponseTest.php
+++ b/src/gen/test/Model/DeleteBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCommentResponseTest.php b/src/gen/test/Model/DeleteCommentResponseTest.php
index 4ddd9fb982..76ea0bdb03 100644
--- a/src/gen/test/Model/DeleteCommentResponseTest.php
+++ b/src/gen/test/Model/DeleteCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCompanyResponseTest.php b/src/gen/test/Model/DeleteCompanyResponseTest.php
index 22f6bdc6b2..ec5772d34b 100644
--- a/src/gen/test/Model/DeleteCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteConsumerResponseTest.php b/src/gen/test/Model/DeleteConsumerResponseTest.php
index f77b646456..d4370286dd 100644
--- a/src/gen/test/Model/DeleteConsumerResponseTest.php
+++ b/src/gen/test/Model/DeleteConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteContactResponseTest.php b/src/gen/test/Model/DeleteContactResponseTest.php
index a79e5b1a12..8d7088037b 100644
--- a/src/gen/test/Model/DeleteContactResponseTest.php
+++ b/src/gen/test/Model/DeleteContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCreditNoteResponseTest.php b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
index 65e5d3dc2b..8f0931ac1e 100644
--- a/src/gen/test/Model/DeleteCreditNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCustomerResponseTest.php b/src/gen/test/Model/DeleteCustomerResponseTest.php
index 75ed478242..3fe6676b68 100644
--- a/src/gen/test/Model/DeleteCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDepartmentResponseTest.php b/src/gen/test/Model/DeleteDepartmentResponseTest.php
index 1751584e98..46a65ed72a 100644
--- a/src/gen/test/Model/DeleteDepartmentResponseTest.php
+++ b/src/gen/test/Model/DeleteDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveGroupResponseTest.php b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
index 414542d292..554f86a799 100644
--- a/src/gen/test/Model/DeleteDriveGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveResponseTest.php b/src/gen/test/Model/DeleteDriveResponseTest.php
index 51820b92ab..71291735ec 100644
--- a/src/gen/test/Model/DeleteDriveResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
index 980988e5d6..845d4fe374 100644
--- a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
index eaa132c7c5..36d491b583 100644
--- a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEmployeeResponseTest.php b/src/gen/test/Model/DeleteEmployeeResponseTest.php
index 6e9a329354..d015d025d1 100644
--- a/src/gen/test/Model/DeleteEmployeeResponseTest.php
+++ b/src/gen/test/Model/DeleteEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFileResponseTest.php b/src/gen/test/Model/DeleteFileResponseTest.php
index 8cccdc2491..683cbbf341 100644
--- a/src/gen/test/Model/DeleteFileResponseTest.php
+++ b/src/gen/test/Model/DeleteFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFolderResponseTest.php b/src/gen/test/Model/DeleteFolderResponseTest.php
index 5917dd0e8b..7662d601d1 100644
--- a/src/gen/test/Model/DeleteFolderResponseTest.php
+++ b/src/gen/test/Model/DeleteFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
index 81dfe7d4fd..683ba433ea 100644
--- a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteInvoiceResponseTest.php b/src/gen/test/Model/DeleteInvoiceResponseTest.php
index ecf611d48d..372d18ba7a 100644
--- a/src/gen/test/Model/DeleteInvoiceResponseTest.php
+++ b/src/gen/test/Model/DeleteInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteItemResponseTest.php b/src/gen/test/Model/DeleteItemResponseTest.php
index c5dc83348c..5e47b9c9d4 100644
--- a/src/gen/test/Model/DeleteItemResponseTest.php
+++ b/src/gen/test/Model/DeleteItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJobResponseTest.php b/src/gen/test/Model/DeleteJobResponseTest.php
index 37125b7010..bea6dfedde 100644
--- a/src/gen/test/Model/DeleteJobResponseTest.php
+++ b/src/gen/test/Model/DeleteJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJournalEntryResponseTest.php b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
index 18dcda069e..87a001bf58 100644
--- a/src/gen/test/Model/DeleteJournalEntryResponseTest.php
+++ b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLeadResponseTest.php b/src/gen/test/Model/DeleteLeadResponseTest.php
index a1f749b8d2..55286dfa74 100644
--- a/src/gen/test/Model/DeleteLeadResponseTest.php
+++ b/src/gen/test/Model/DeleteLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
index 9a456a1e22..b22e793136 100644
--- a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLocationResponseTest.php b/src/gen/test/Model/DeleteLocationResponseTest.php
index 7f2b41cc99..401ff279dc 100644
--- a/src/gen/test/Model/DeleteLocationResponseTest.php
+++ b/src/gen/test/Model/DeleteLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMerchantResponseTest.php b/src/gen/test/Model/DeleteMerchantResponseTest.php
index 2cf42d87c1..01b5bdf7e5 100644
--- a/src/gen/test/Model/DeleteMerchantResponseTest.php
+++ b/src/gen/test/Model/DeleteMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMessageResponseTest.php b/src/gen/test/Model/DeleteMessageResponseTest.php
index 1388ba670a..ce907ffa2e 100644
--- a/src/gen/test/Model/DeleteMessageResponseTest.php
+++ b/src/gen/test/Model/DeleteMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierGroupResponseTest.php b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
index b697b4f3ec..68ad0ba003 100644
--- a/src/gen/test/Model/DeleteModifierGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierResponseTest.php b/src/gen/test/Model/DeleteModifierResponseTest.php
index 24a81e0315..a433d754ab 100644
--- a/src/gen/test/Model/DeleteModifierResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteNoteResponseTest.php b/src/gen/test/Model/DeleteNoteResponseTest.php
index acc8a7f632..942674acc2 100644
--- a/src/gen/test/Model/DeleteNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOpportunityResponseTest.php b/src/gen/test/Model/DeleteOpportunityResponseTest.php
index 6beabde59a..7e52615222 100644
--- a/src/gen/test/Model/DeleteOpportunityResponseTest.php
+++ b/src/gen/test/Model/DeleteOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderResponseTest.php b/src/gen/test/Model/DeleteOrderResponseTest.php
index c2bc70b23c..91b43327e6 100644
--- a/src/gen/test/Model/DeleteOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderTypeResponseTest.php b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
index 0748a07a43..e5b10bc1c7 100644
--- a/src/gen/test/Model/DeleteOrderTypeResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePaymentResponseTest.php b/src/gen/test/Model/DeletePaymentResponseTest.php
index f8fe754100..46a40ac480 100644
--- a/src/gen/test/Model/DeletePaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePipelineResponseTest.php b/src/gen/test/Model/DeletePipelineResponseTest.php
index b20f2edc6d..b67327ccba 100644
--- a/src/gen/test/Model/DeletePipelineResponseTest.php
+++ b/src/gen/test/Model/DeletePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePosPaymentResponseTest.php b/src/gen/test/Model/DeletePosPaymentResponseTest.php
index f634c74aba..0fdb5b565b 100644
--- a/src/gen/test/Model/DeletePosPaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteProductResponseTest.php b/src/gen/test/Model/DeleteProductResponseTest.php
index 92f8611104..a2642dcf84 100644
--- a/src/gen/test/Model/DeleteProductResponseTest.php
+++ b/src/gen/test/Model/DeleteProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
index eb5691b642..4958918230 100644
--- a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSharedLinkResponseTest.php b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
index e17cc54f4b..2239df543c 100644
--- a/src/gen/test/Model/DeleteSharedLinkResponseTest.php
+++ b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSubsidiaryResponseTest.php b/src/gen/test/Model/DeleteSubsidiaryResponseTest.php
index 58f4e2e6ab..6e55c7ed23 100644
--- a/src/gen/test/Model/DeleteSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/DeleteSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSupplierResponseTest.php b/src/gen/test/Model/DeleteSupplierResponseTest.php
index bef9c65b16..3637f4757f 100644
--- a/src/gen/test/Model/DeleteSupplierResponseTest.php
+++ b/src/gen/test/Model/DeleteSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTaxRateResponseTest.php b/src/gen/test/Model/DeleteTaxRateResponseTest.php
index b27619f288..759fa67b38 100644
--- a/src/gen/test/Model/DeleteTaxRateResponseTest.php
+++ b/src/gen/test/Model/DeleteTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTenderResponseTest.php b/src/gen/test/Model/DeleteTenderResponseTest.php
index 7eae2e9a20..8d0cc62440 100644
--- a/src/gen/test/Model/DeleteTenderResponseTest.php
+++ b/src/gen/test/Model/DeleteTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTicketResponseTest.php b/src/gen/test/Model/DeleteTicketResponseTest.php
index dc36712bdf..53080eae3a 100644
--- a/src/gen/test/Model/DeleteTicketResponseTest.php
+++ b/src/gen/test/Model/DeleteTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
index be107f6762..81cb10d58f 100644
--- a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUploadSessionResponseTest.php b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
index 6abf518d30..ca2f8e023c 100644
--- a/src/gen/test/Model/DeleteUploadSessionResponseTest.php
+++ b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUserResponseTest.php b/src/gen/test/Model/DeleteUserResponseTest.php
index 462031eab8..806139eb07 100644
--- a/src/gen/test/Model/DeleteUserResponseTest.php
+++ b/src/gen/test/Model/DeleteUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteWebhookResponseTest.php b/src/gen/test/Model/DeleteWebhookResponseTest.php
index b387559ed0..4031f85e3b 100644
--- a/src/gen/test/Model/DeleteWebhookResponseTest.php
+++ b/src/gen/test/Model/DeleteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DepartmentTest.php b/src/gen/test/Model/DepartmentTest.php
index 3243f14393..7b254e417a 100644
--- a/src/gen/test/Model/DepartmentTest.php
+++ b/src/gen/test/Model/DepartmentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupTest.php b/src/gen/test/Model/DriveGroupTest.php
index 0580d09d0b..dead56a893 100644
--- a/src/gen/test/Model/DriveGroupTest.php
+++ b/src/gen/test/Model/DriveGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupsFilterTest.php b/src/gen/test/Model/DriveGroupsFilterTest.php
index 8acacb5c72..fc5b5a7752 100644
--- a/src/gen/test/Model/DriveGroupsFilterTest.php
+++ b/src/gen/test/Model/DriveGroupsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveTest.php b/src/gen/test/Model/DriveTest.php
index 8c63012bff..97448e3521 100644
--- a/src/gen/test/Model/DriveTest.php
+++ b/src/gen/test/Model/DriveTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DrivesFilterTest.php b/src/gen/test/Model/DrivesFilterTest.php
index 90ae5625e8..c37981e14b 100644
--- a/src/gen/test/Model/DrivesFilterTest.php
+++ b/src/gen/test/Model/DrivesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceAddressTest.php b/src/gen/test/Model/EcommerceAddressTest.php
index 88fcde4c82..0dcdfc9d3f 100644
--- a/src/gen/test/Model/EcommerceAddressTest.php
+++ b/src/gen/test/Model/EcommerceAddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerAddressesTest.php b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
index dfc89354e6..da0cf91e46 100644
--- a/src/gen/test/Model/EcommerceCustomerAddressesTest.php
+++ b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerTest.php b/src/gen/test/Model/EcommerceCustomerTest.php
index b90ff16631..6f3cd91558 100644
--- a/src/gen/test/Model/EcommerceCustomerTest.php
+++ b/src/gen/test/Model/EcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomersFilterTest.php b/src/gen/test/Model/EcommerceCustomersFilterTest.php
index de80ef39f9..e250de154d 100644
--- a/src/gen/test/Model/EcommerceCustomersFilterTest.php
+++ b/src/gen/test/Model/EcommerceCustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceDiscountTest.php b/src/gen/test/Model/EcommerceDiscountTest.php
index 77bd5892a2..6de7ead614 100644
--- a/src/gen/test/Model/EcommerceDiscountTest.php
+++ b/src/gen/test/Model/EcommerceDiscountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderLineItemTest.php b/src/gen/test/Model/EcommerceOrderLineItemTest.php
index 90717a90fa..7ab9b091d2 100644
--- a/src/gen/test/Model/EcommerceOrderLineItemTest.php
+++ b/src/gen/test/Model/EcommerceOrderLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderStatusTest.php b/src/gen/test/Model/EcommerceOrderStatusTest.php
index 87929dfc57..1731cd0c8c 100644
--- a/src/gen/test/Model/EcommerceOrderStatusTest.php
+++ b/src/gen/test/Model/EcommerceOrderStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderTest.php b/src/gen/test/Model/EcommerceOrderTest.php
index 14deb716e7..b8a9e2ac29 100644
--- a/src/gen/test/Model/EcommerceOrderTest.php
+++ b/src/gen/test/Model/EcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrdersFilterTest.php b/src/gen/test/Model/EcommerceOrdersFilterTest.php
index bdbdbe3f73..e1b3398741 100644
--- a/src/gen/test/Model/EcommerceOrdersFilterTest.php
+++ b/src/gen/test/Model/EcommerceOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductCategoriesTest.php b/src/gen/test/Model/EcommerceProductCategoriesTest.php
index 4b2d2924af..12f623ae42 100644
--- a/src/gen/test/Model/EcommerceProductCategoriesTest.php
+++ b/src/gen/test/Model/EcommerceProductCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImages1Test.php b/src/gen/test/Model/EcommerceProductImages1Test.php
index 1e789ac10b..a89d6101bc 100644
--- a/src/gen/test/Model/EcommerceProductImages1Test.php
+++ b/src/gen/test/Model/EcommerceProductImages1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImagesTest.php b/src/gen/test/Model/EcommerceProductImagesTest.php
index 0da0ca7cd0..f0373d79c5 100644
--- a/src/gen/test/Model/EcommerceProductImagesTest.php
+++ b/src/gen/test/Model/EcommerceProductImagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptions1Test.php b/src/gen/test/Model/EcommerceProductOptions1Test.php
index 552d8db408..55d795d8dd 100644
--- a/src/gen/test/Model/EcommerceProductOptions1Test.php
+++ b/src/gen/test/Model/EcommerceProductOptions1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptionsTest.php b/src/gen/test/Model/EcommerceProductOptionsTest.php
index 2037ce2f6d..e962b31f7d 100644
--- a/src/gen/test/Model/EcommerceProductOptionsTest.php
+++ b/src/gen/test/Model/EcommerceProductOptionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductTest.php b/src/gen/test/Model/EcommerceProductTest.php
index e6927d9dda..5dfbe9839c 100644
--- a/src/gen/test/Model/EcommerceProductTest.php
+++ b/src/gen/test/Model/EcommerceProductTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductVariantsTest.php b/src/gen/test/Model/EcommerceProductVariantsTest.php
index b037edc2f0..b9e5686c7a 100644
--- a/src/gen/test/Model/EcommerceProductVariantsTest.php
+++ b/src/gen/test/Model/EcommerceProductVariantsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceStoreTest.php b/src/gen/test/Model/EcommerceStoreTest.php
index 8fb9c1f8a3..81b6a3137f 100644
--- a/src/gen/test/Model/EcommerceStoreTest.php
+++ b/src/gen/test/Model/EcommerceStoreTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmailTest.php b/src/gen/test/Model/EmailTest.php
index 35ad4b894c..801593bf23 100644
--- a/src/gen/test/Model/EmailTest.php
+++ b/src/gen/test/Model/EmailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeCompensationTest.php b/src/gen/test/Model/EmployeeCompensationTest.php
index c19e91d83f..2c9e68b782 100644
--- a/src/gen/test/Model/EmployeeCompensationTest.php
+++ b/src/gen/test/Model/EmployeeCompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeEmploymentRoleTest.php b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
index 7b6a0d84ad..05a29ec910 100644
--- a/src/gen/test/Model/EmployeeEmploymentRoleTest.php
+++ b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeJobTest.php b/src/gen/test/Model/EmployeeJobTest.php
index 6ebf397264..cbf2b09935 100644
--- a/src/gen/test/Model/EmployeeJobTest.php
+++ b/src/gen/test/Model/EmployeeJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeListTest.php b/src/gen/test/Model/EmployeeListTest.php
index 1b11abfd7b..5707e8482d 100644
--- a/src/gen/test/Model/EmployeeListTest.php
+++ b/src/gen/test/Model/EmployeeListTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeManagerTest.php b/src/gen/test/Model/EmployeeManagerTest.php
index 74bbe29196..32d8656b03 100644
--- a/src/gen/test/Model/EmployeeManagerTest.php
+++ b/src/gen/test/Model/EmployeeManagerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeePayrollTest.php b/src/gen/test/Model/EmployeePayrollTest.php
index 57d063c904..2fcf5ba195 100644
--- a/src/gen/test/Model/EmployeePayrollTest.php
+++ b/src/gen/test/Model/EmployeePayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeSchedulesTest.php b/src/gen/test/Model/EmployeeSchedulesTest.php
index cf52ebfeeb..0e9f906208 100644
--- a/src/gen/test/Model/EmployeeSchedulesTest.php
+++ b/src/gen/test/Model/EmployeeSchedulesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeTest.php b/src/gen/test/Model/EmployeeTest.php
index 133a25424e..3c83148a3a 100644
--- a/src/gen/test/Model/EmployeeTest.php
+++ b/src/gen/test/Model/EmployeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesFilterTest.php b/src/gen/test/Model/EmployeesFilterTest.php
index a2273ab255..a830c48d77 100644
--- a/src/gen/test/Model/EmployeesFilterTest.php
+++ b/src/gen/test/Model/EmployeesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesSortTest.php b/src/gen/test/Model/EmployeesSortTest.php
index bfb7f4ad86..db652febed 100644
--- a/src/gen/test/Model/EmployeesSortTest.php
+++ b/src/gen/test/Model/EmployeesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmploymentStatusTest.php b/src/gen/test/Model/EmploymentStatusTest.php
index ade0cdfadc..643afcc09d 100644
--- a/src/gen/test/Model/EmploymentStatusTest.php
+++ b/src/gen/test/Model/EmploymentStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ErrorTest.php b/src/gen/test/Model/ErrorTest.php
index 047bf413ec..aa7822414e 100644
--- a/src/gen/test/Model/ErrorTest.php
+++ b/src/gen/test/Model/ErrorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ExecuteWebhookResponseTest.php b/src/gen/test/Model/ExecuteWebhookResponseTest.php
index 8e53090715..8eb4c1de59 100644
--- a/src/gen/test/Model/ExecuteWebhookResponseTest.php
+++ b/src/gen/test/Model/ExecuteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileStorageEventTypeTest.php b/src/gen/test/Model/FileStorageEventTypeTest.php
index 2864e3edbb..e5f7dbdbcc 100644
--- a/src/gen/test/Model/FileStorageEventTypeTest.php
+++ b/src/gen/test/Model/FileStorageEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileTypeTest.php b/src/gen/test/Model/FileTypeTest.php
index 3bf6073349..2b57a3d9b9 100644
--- a/src/gen/test/Model/FileTypeTest.php
+++ b/src/gen/test/Model/FileTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesFilterTest.php b/src/gen/test/Model/FilesFilterTest.php
index 1d947952d8..d6a4e515a2 100644
--- a/src/gen/test/Model/FilesFilterTest.php
+++ b/src/gen/test/Model/FilesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSearchTest.php b/src/gen/test/Model/FilesSearchTest.php
index e6f994c496..c4f1232f7e 100644
--- a/src/gen/test/Model/FilesSearchTest.php
+++ b/src/gen/test/Model/FilesSearchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSortTest.php b/src/gen/test/Model/FilesSortTest.php
index 2404404496..e9959539ac 100644
--- a/src/gen/test/Model/FilesSortTest.php
+++ b/src/gen/test/Model/FilesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FolderTest.php b/src/gen/test/Model/FolderTest.php
index 34368c2576..d8bcd08d5c 100644
--- a/src/gen/test/Model/FolderTest.php
+++ b/src/gen/test/Model/FolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionGroupTest.php b/src/gen/test/Model/FormFieldOptionGroupTest.php
index a9fb994b56..ddef0b4f72 100644
--- a/src/gen/test/Model/FormFieldOptionGroupTest.php
+++ b/src/gen/test/Model/FormFieldOptionGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionTest.php b/src/gen/test/Model/FormFieldOptionTest.php
index f693d55c92..ed44a22785 100644
--- a/src/gen/test/Model/FormFieldOptionTest.php
+++ b/src/gen/test/Model/FormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldTest.php b/src/gen/test/Model/FormFieldTest.php
index be65f7afc1..1d547bbef3 100644
--- a/src/gen/test/Model/FormFieldTest.php
+++ b/src/gen/test/Model/FormFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GenderTest.php b/src/gen/test/Model/GenderTest.php
index 7f561bc953..c1d2370460 100644
--- a/src/gen/test/Model/GenderTest.php
+++ b/src/gen/test/Model/GenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetAccountingDepartmentResponseTest.php b/src/gen/test/Model/GetAccountingDepartmentResponseTest.php
new file mode 100644
index 0000000000..15c96431f5
--- /dev/null
+++ b/src/gen/test/Model/GetAccountingDepartmentResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/GetAccountingDepartmentsResponseTest.php b/src/gen/test/Model/GetAccountingDepartmentsResponseTest.php
new file mode 100644
index 0000000000..120988ecea
--- /dev/null
+++ b/src/gen/test/Model/GetAccountingDepartmentsResponseTest.php
@@ -0,0 +1,153 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "meta"
+ */
+ public function testPropertyMeta()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "links"
+ */
+ public function testPropertyLinks()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/GetAccountingLocationResponseTest.php b/src/gen/test/Model/GetAccountingLocationResponseTest.php
new file mode 100644
index 0000000000..b62afe3653
--- /dev/null
+++ b/src/gen/test/Model/GetAccountingLocationResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/GetAccountingLocationsResponseTest.php b/src/gen/test/Model/GetAccountingLocationsResponseTest.php
new file mode 100644
index 0000000000..77965bac10
--- /dev/null
+++ b/src/gen/test/Model/GetAccountingLocationsResponseTest.php
@@ -0,0 +1,153 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "meta"
+ */
+ public function testPropertyMeta()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "links"
+ */
+ public function testPropertyLinks()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/GetActivitiesResponseTest.php b/src/gen/test/Model/GetActivitiesResponseTest.php
index 9c7bf78dcf..e2804fb221 100644
--- a/src/gen/test/Model/GetActivitiesResponseTest.php
+++ b/src/gen/test/Model/GetActivitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetActivityResponseTest.php b/src/gen/test/Model/GetActivityResponseTest.php
index f17775df96..c5d1795130 100644
--- a/src/gen/test/Model/GetActivityResponseTest.php
+++ b/src/gen/test/Model/GetActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
index 9340c2dffc..ebe897e065 100644
--- a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceResponseTest.php b/src/gen/test/Model/GetApiResourceResponseTest.php
index 104764fd22..fd65a37b83 100644
--- a/src/gen/test/Model/GetApiResourceResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResponseTest.php b/src/gen/test/Model/GetApiResponseTest.php
index 22f2ddcfe8..b207377734 100644
--- a/src/gen/test/Model/GetApiResponseTest.php
+++ b/src/gen/test/Model/GetApiResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApisResponseTest.php b/src/gen/test/Model/GetApisResponseTest.php
index 99e21ae52e..280526f704 100644
--- a/src/gen/test/Model/GetApisResponseTest.php
+++ b/src/gen/test/Model/GetApisResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantResponseTest.php b/src/gen/test/Model/GetApplicantResponseTest.php
index 00f58f938c..b06ce698d4 100644
--- a/src/gen/test/Model/GetApplicantResponseTest.php
+++ b/src/gen/test/Model/GetApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantsResponseTest.php b/src/gen/test/Model/GetApplicantsResponseTest.php
index 3856fc2969..30bbf6961a 100644
--- a/src/gen/test/Model/GetApplicantsResponseTest.php
+++ b/src/gen/test/Model/GetApplicantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationResponseTest.php b/src/gen/test/Model/GetApplicationResponseTest.php
index 529d1ef110..8ffefe5195 100644
--- a/src/gen/test/Model/GetApplicationResponseTest.php
+++ b/src/gen/test/Model/GetApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationsResponseTest.php b/src/gen/test/Model/GetApplicationsResponseTest.php
index 65db81d308..bc8fb9684d 100644
--- a/src/gen/test/Model/GetApplicationsResponseTest.php
+++ b/src/gen/test/Model/GetApplicationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBalanceSheetResponseTest.php b/src/gen/test/Model/GetBalanceSheetResponseTest.php
index f9fbd2ba9d..cfab80c9e6 100644
--- a/src/gen/test/Model/GetBalanceSheetResponseTest.php
+++ b/src/gen/test/Model/GetBalanceSheetResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillResponseTest.php b/src/gen/test/Model/GetBillResponseTest.php
index 2256364e32..6f2d4511cc 100644
--- a/src/gen/test/Model/GetBillResponseTest.php
+++ b/src/gen/test/Model/GetBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillsResponseTest.php b/src/gen/test/Model/GetBillsResponseTest.php
index f107630681..4945b7651a 100644
--- a/src/gen/test/Model/GetBillsResponseTest.php
+++ b/src/gen/test/Model/GetBillsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionResponseTest.php b/src/gen/test/Model/GetCollectionResponseTest.php
index 5bab9424b8..abf0968d5d 100644
--- a/src/gen/test/Model/GetCollectionResponseTest.php
+++ b/src/gen/test/Model/GetCollectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionTagsResponseTest.php b/src/gen/test/Model/GetCollectionTagsResponseTest.php
index d7bd069e3a..c540ee9b54 100644
--- a/src/gen/test/Model/GetCollectionTagsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionTagsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUserResponseTest.php b/src/gen/test/Model/GetCollectionUserResponseTest.php
index 8c22035ac1..6d60c70b7d 100644
--- a/src/gen/test/Model/GetCollectionUserResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUsersResponseTest.php b/src/gen/test/Model/GetCollectionUsersResponseTest.php
index 07f81b1b2d..1c0105c5cc 100644
--- a/src/gen/test/Model/GetCollectionUsersResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionsResponseTest.php b/src/gen/test/Model/GetCollectionsResponseTest.php
index f4c19f96ea..d0f613d0ec 100644
--- a/src/gen/test/Model/GetCollectionsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentResponseTest.php b/src/gen/test/Model/GetCommentResponseTest.php
index 3f53eb043e..b55b84eb6f 100644
--- a/src/gen/test/Model/GetCommentResponseTest.php
+++ b/src/gen/test/Model/GetCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentsResponseTest.php b/src/gen/test/Model/GetCommentsResponseTest.php
index 089201984c..3a9f698034 100644
--- a/src/gen/test/Model/GetCommentsResponseTest.php
+++ b/src/gen/test/Model/GetCommentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompaniesResponseTest.php b/src/gen/test/Model/GetCompaniesResponseTest.php
index 81f9895466..4dc9fecf98 100644
--- a/src/gen/test/Model/GetCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyInfoResponseTest.php b/src/gen/test/Model/GetCompanyInfoResponseTest.php
index fc00a11228..208e8d2a50 100644
--- a/src/gen/test/Model/GetCompanyInfoResponseTest.php
+++ b/src/gen/test/Model/GetCompanyInfoResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyResponseTest.php b/src/gen/test/Model/GetCompanyResponseTest.php
index 76957990f2..70075472c2 100644
--- a/src/gen/test/Model/GetCompanyResponseTest.php
+++ b/src/gen/test/Model/GetCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionResponseTest.php b/src/gen/test/Model/GetConnectionResponseTest.php
index 76e6dfb92e..a53d66c6dc 100644
--- a/src/gen/test/Model/GetConnectionResponseTest.php
+++ b/src/gen/test/Model/GetConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionsResponseTest.php b/src/gen/test/Model/GetConnectionsResponseTest.php
index 20cd7610b2..741d276727 100644
--- a/src/gen/test/Model/GetConnectionsResponseTest.php
+++ b/src/gen/test/Model/GetConnectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
index ea018928fd..abbd158951 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
index 69ea5fceaa..c879019134 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceResponseTest.php b/src/gen/test/Model/GetConnectorResourceResponseTest.php
index 876e4e6af3..0d25edf107 100644
--- a/src/gen/test/Model/GetConnectorResourceResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
index 5b1828376d..089659d68f 100644
--- a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResponseTest.php b/src/gen/test/Model/GetConnectorResponseTest.php
index 9e9ec8cb58..39db2b6c04 100644
--- a/src/gen/test/Model/GetConnectorResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorsResponseTest.php b/src/gen/test/Model/GetConnectorsResponseTest.php
index cc08f7204f..c1fd9a3aa0 100644
--- a/src/gen/test/Model/GetConnectorsResponseTest.php
+++ b/src/gen/test/Model/GetConnectorsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumerResponseTest.php b/src/gen/test/Model/GetConsumerResponseTest.php
index ddf4581b84..f963f04c53 100644
--- a/src/gen/test/Model/GetConsumerResponseTest.php
+++ b/src/gen/test/Model/GetConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseDataTest.php b/src/gen/test/Model/GetConsumersResponseDataTest.php
index 0b97da7f03..8918b7bd06 100644
--- a/src/gen/test/Model/GetConsumersResponseDataTest.php
+++ b/src/gen/test/Model/GetConsumersResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseTest.php b/src/gen/test/Model/GetConsumersResponseTest.php
index 340dbf77f0..05a140f46d 100644
--- a/src/gen/test/Model/GetConsumersResponseTest.php
+++ b/src/gen/test/Model/GetConsumersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactResponseTest.php b/src/gen/test/Model/GetContactResponseTest.php
index 8a2db35919..e1ba02f42d 100644
--- a/src/gen/test/Model/GetContactResponseTest.php
+++ b/src/gen/test/Model/GetContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactsResponseTest.php b/src/gen/test/Model/GetContactsResponseTest.php
index cde61fd3a6..e02ebd8682 100644
--- a/src/gen/test/Model/GetContactsResponseTest.php
+++ b/src/gen/test/Model/GetContactsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNoteResponseTest.php b/src/gen/test/Model/GetCreditNoteResponseTest.php
index 35c8b03b68..38e4775a3d 100644
--- a/src/gen/test/Model/GetCreditNoteResponseTest.php
+++ b/src/gen/test/Model/GetCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNotesResponseTest.php b/src/gen/test/Model/GetCreditNotesResponseTest.php
index ce1cb8850e..9019e224d2 100644
--- a/src/gen/test/Model/GetCreditNotesResponseTest.php
+++ b/src/gen/test/Model/GetCreditNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomFieldsResponseTest.php b/src/gen/test/Model/GetCustomFieldsResponseTest.php
index 8a4eb47a7c..069c6f4e58 100644
--- a/src/gen/test/Model/GetCustomFieldsResponseTest.php
+++ b/src/gen/test/Model/GetCustomFieldsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomMappingResponseTest.php b/src/gen/test/Model/GetCustomMappingResponseTest.php
index c59336a0a6..44301e75ba 100644
--- a/src/gen/test/Model/GetCustomMappingResponseTest.php
+++ b/src/gen/test/Model/GetCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomerResponseTest.php b/src/gen/test/Model/GetCustomerResponseTest.php
index 11f4aa36a9..56153aede1 100644
--- a/src/gen/test/Model/GetCustomerResponseTest.php
+++ b/src/gen/test/Model/GetCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomersResponseTest.php b/src/gen/test/Model/GetCustomersResponseTest.php
index da308937be..c41d468b68 100644
--- a/src/gen/test/Model/GetCustomersResponseTest.php
+++ b/src/gen/test/Model/GetCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentResponseTest.php b/src/gen/test/Model/GetDepartmentResponseTest.php
index feffe82057..9bcd45b4e8 100644
--- a/src/gen/test/Model/GetDepartmentResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentsResponseTest.php b/src/gen/test/Model/GetDepartmentsResponseTest.php
index cc377a7e55..931a1f0a36 100644
--- a/src/gen/test/Model/GetDepartmentsResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupResponseTest.php b/src/gen/test/Model/GetDriveGroupResponseTest.php
index 6f407b7246..17563c0889 100644
--- a/src/gen/test/Model/GetDriveGroupResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupsResponseTest.php b/src/gen/test/Model/GetDriveGroupsResponseTest.php
index 954e170a58..f3d308bd35 100644
--- a/src/gen/test/Model/GetDriveGroupsResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveResponseTest.php b/src/gen/test/Model/GetDriveResponseTest.php
index a5fb29eef1..78a26ec193 100644
--- a/src/gen/test/Model/GetDriveResponseTest.php
+++ b/src/gen/test/Model/GetDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDrivesResponseTest.php b/src/gen/test/Model/GetDrivesResponseTest.php
index 7c34d10b45..a208a17f07 100644
--- a/src/gen/test/Model/GetDrivesResponseTest.php
+++ b/src/gen/test/Model/GetDrivesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
index 321ac6bee2..7dd2c32d83 100644
--- a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
index d1aa051647..b50f204f7f 100644
--- a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrderResponseTest.php b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
index 30d88bf760..f6dd545413 100644
--- a/src/gen/test/Model/GetEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
index d20addb6c2..02e0b39dd7 100644
--- a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollResponseTest.php b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
index 05e4205ec9..c53210197c 100644
--- a/src/gen/test/Model/GetEmployeePayrollResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
index 0b16ee2ae3..e246b35dea 100644
--- a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeResponseTest.php b/src/gen/test/Model/GetEmployeeResponseTest.php
index 065e0c6d2a..3da539fe09 100644
--- a/src/gen/test/Model/GetEmployeeResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
index 83f326b2e6..10d4090f13 100644
--- a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeesResponseTest.php b/src/gen/test/Model/GetEmployeesResponseTest.php
index 801cb277d9..4b115d1853 100644
--- a/src/gen/test/Model/GetEmployeesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFileResponseTest.php b/src/gen/test/Model/GetFileResponseTest.php
index 7bb7cc7f9c..b64ba60f18 100644
--- a/src/gen/test/Model/GetFileResponseTest.php
+++ b/src/gen/test/Model/GetFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFilesResponseTest.php b/src/gen/test/Model/GetFilesResponseTest.php
index 2f181d92f5..eb4d87bd7d 100644
--- a/src/gen/test/Model/GetFilesResponseTest.php
+++ b/src/gen/test/Model/GetFilesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFolderResponseTest.php b/src/gen/test/Model/GetFolderResponseTest.php
index 43041594ad..924c96eefa 100644
--- a/src/gen/test/Model/GetFolderResponseTest.php
+++ b/src/gen/test/Model/GetFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFoldersResponseTest.php b/src/gen/test/Model/GetFoldersResponseTest.php
index 1921d75b8a..c8e6974431 100644
--- a/src/gen/test/Model/GetFoldersResponseTest.php
+++ b/src/gen/test/Model/GetFoldersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompaniesResponseTest.php b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
index 6443655304..0e338d12a4 100644
--- a/src/gen/test/Model/GetHrisCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompanyResponseTest.php b/src/gen/test/Model/GetHrisCompanyResponseTest.php
index e8072db6db..75b6b9efb4 100644
--- a/src/gen/test/Model/GetHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobResponseTest.php b/src/gen/test/Model/GetHrisJobResponseTest.php
index 667a876b74..4c4c65d721 100644
--- a/src/gen/test/Model/GetHrisJobResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobsResponseTest.php b/src/gen/test/Model/GetHrisJobsResponseTest.php
index d654dfa955..adb0d73c2a 100644
--- a/src/gen/test/Model/GetHrisJobsResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemResponseTest.php b/src/gen/test/Model/GetInvoiceItemResponseTest.php
index 5dab15fa81..60367cde7f 100644
--- a/src/gen/test/Model/GetInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemsResponseTest.php b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
index 190739d9b1..04838be7af 100644
--- a/src/gen/test/Model/GetInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceResponseTest.php b/src/gen/test/Model/GetInvoiceResponseTest.php
index 9c0ff6e768..623072e4a3 100644
--- a/src/gen/test/Model/GetInvoiceResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoicesResponseTest.php b/src/gen/test/Model/GetInvoicesResponseTest.php
index ccacfaf108..d4a3a6ede1 100644
--- a/src/gen/test/Model/GetInvoicesResponseTest.php
+++ b/src/gen/test/Model/GetInvoicesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemResponseTest.php b/src/gen/test/Model/GetItemResponseTest.php
index 52b4b1f406..47b99fc8d0 100644
--- a/src/gen/test/Model/GetItemResponseTest.php
+++ b/src/gen/test/Model/GetItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemsResponseTest.php b/src/gen/test/Model/GetItemsResponseTest.php
index 384e23b55c..12e2a45cce 100644
--- a/src/gen/test/Model/GetItemsResponseTest.php
+++ b/src/gen/test/Model/GetItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobResponseTest.php b/src/gen/test/Model/GetJobResponseTest.php
index d072f1e680..2843b2c93b 100644
--- a/src/gen/test/Model/GetJobResponseTest.php
+++ b/src/gen/test/Model/GetJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobsResponseTest.php b/src/gen/test/Model/GetJobsResponseTest.php
index 179870d38c..64bc8d39f9 100644
--- a/src/gen/test/Model/GetJobsResponseTest.php
+++ b/src/gen/test/Model/GetJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntriesResponseTest.php b/src/gen/test/Model/GetJournalEntriesResponseTest.php
index c4a7b08a3d..56ecf2be3d 100644
--- a/src/gen/test/Model/GetJournalEntriesResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntriesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntryResponseTest.php b/src/gen/test/Model/GetJournalEntryResponseTest.php
index ac7f04354d..848e109145 100644
--- a/src/gen/test/Model/GetJournalEntryResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadResponseTest.php b/src/gen/test/Model/GetLeadResponseTest.php
index 90b5de7094..3e6cebc245 100644
--- a/src/gen/test/Model/GetLeadResponseTest.php
+++ b/src/gen/test/Model/GetLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadsResponseTest.php b/src/gen/test/Model/GetLeadsResponseTest.php
index 454a2e523f..393a3588ed 100644
--- a/src/gen/test/Model/GetLeadsResponseTest.php
+++ b/src/gen/test/Model/GetLeadsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountResponseTest.php b/src/gen/test/Model/GetLedgerAccountResponseTest.php
index 2a72de2f05..6a8abcdccb 100644
--- a/src/gen/test/Model/GetLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountsResponseTest.php b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
index 21bfc6961c..2c474c50dd 100644
--- a/src/gen/test/Model/GetLedgerAccountsResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationResponseTest.php b/src/gen/test/Model/GetLocationResponseTest.php
index 08ac1c2481..ee73bfd10c 100644
--- a/src/gen/test/Model/GetLocationResponseTest.php
+++ b/src/gen/test/Model/GetLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationsResponseTest.php b/src/gen/test/Model/GetLocationsResponseTest.php
index 4f6631fb7c..f09dc72c86 100644
--- a/src/gen/test/Model/GetLocationsResponseTest.php
+++ b/src/gen/test/Model/GetLocationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLogsResponseTest.php b/src/gen/test/Model/GetLogsResponseTest.php
index 6cd030602e..f937787f09 100644
--- a/src/gen/test/Model/GetLogsResponseTest.php
+++ b/src/gen/test/Model/GetLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantResponseTest.php b/src/gen/test/Model/GetMerchantResponseTest.php
index db7bf03f99..6d68118848 100644
--- a/src/gen/test/Model/GetMerchantResponseTest.php
+++ b/src/gen/test/Model/GetMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantsResponseTest.php b/src/gen/test/Model/GetMerchantsResponseTest.php
index d917a95516..002321cb96 100644
--- a/src/gen/test/Model/GetMerchantsResponseTest.php
+++ b/src/gen/test/Model/GetMerchantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessageResponseTest.php b/src/gen/test/Model/GetMessageResponseTest.php
index e79d4be4e2..9af0418fc2 100644
--- a/src/gen/test/Model/GetMessageResponseTest.php
+++ b/src/gen/test/Model/GetMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessagesResponseTest.php b/src/gen/test/Model/GetMessagesResponseTest.php
index 86681e1406..8d98b7798d 100644
--- a/src/gen/test/Model/GetMessagesResponseTest.php
+++ b/src/gen/test/Model/GetMessagesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupResponseTest.php b/src/gen/test/Model/GetModifierGroupResponseTest.php
index 56c79c9e05..399f9a9036 100644
--- a/src/gen/test/Model/GetModifierGroupResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupsResponseTest.php b/src/gen/test/Model/GetModifierGroupsResponseTest.php
index 3181d847ce..eabe79148b 100644
--- a/src/gen/test/Model/GetModifierGroupsResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierResponseTest.php b/src/gen/test/Model/GetModifierResponseTest.php
index 0da9e45681..998bff8c5f 100644
--- a/src/gen/test/Model/GetModifierResponseTest.php
+++ b/src/gen/test/Model/GetModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifiersResponseTest.php b/src/gen/test/Model/GetModifiersResponseTest.php
index 4a272d5fa9..9670fbb363 100644
--- a/src/gen/test/Model/GetModifiersResponseTest.php
+++ b/src/gen/test/Model/GetModifiersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNoteResponseTest.php b/src/gen/test/Model/GetNoteResponseTest.php
index 8e5e5b52bd..f31fd0a7b4 100644
--- a/src/gen/test/Model/GetNoteResponseTest.php
+++ b/src/gen/test/Model/GetNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNotesResponseTest.php b/src/gen/test/Model/GetNotesResponseTest.php
index ffc0b4046e..28c224990c 100644
--- a/src/gen/test/Model/GetNotesResponseTest.php
+++ b/src/gen/test/Model/GetNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunitiesResponseTest.php b/src/gen/test/Model/GetOpportunitiesResponseTest.php
index f629363f9e..8be0fa2036 100644
--- a/src/gen/test/Model/GetOpportunitiesResponseTest.php
+++ b/src/gen/test/Model/GetOpportunitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunityResponseTest.php b/src/gen/test/Model/GetOpportunityResponseTest.php
index 51522d8c8a..3e309f39af 100644
--- a/src/gen/test/Model/GetOpportunityResponseTest.php
+++ b/src/gen/test/Model/GetOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderResponseTest.php b/src/gen/test/Model/GetOrderResponseTest.php
index 2570ad5dd1..fcadcf467e 100644
--- a/src/gen/test/Model/GetOrderResponseTest.php
+++ b/src/gen/test/Model/GetOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypeResponseTest.php b/src/gen/test/Model/GetOrderTypeResponseTest.php
index 02f1f47ff8..50df53534a 100644
--- a/src/gen/test/Model/GetOrderTypeResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypesResponseTest.php b/src/gen/test/Model/GetOrderTypesResponseTest.php
index d62acf649a..3ba5905993 100644
--- a/src/gen/test/Model/GetOrderTypesResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrdersResponseTest.php b/src/gen/test/Model/GetOrdersResponseTest.php
index 6e8d58a844..07ac605df5 100644
--- a/src/gen/test/Model/GetOrdersResponseTest.php
+++ b/src/gen/test/Model/GetOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentResponseTest.php b/src/gen/test/Model/GetPaymentResponseTest.php
index f63e117333..662df9efdc 100644
--- a/src/gen/test/Model/GetPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentsResponseTest.php b/src/gen/test/Model/GetPaymentsResponseTest.php
index 1cc8a17cd7..5c1b0c57e3 100644
--- a/src/gen/test/Model/GetPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollResponseTest.php b/src/gen/test/Model/GetPayrollResponseTest.php
index 1af067099a..657e2ba9fe 100644
--- a/src/gen/test/Model/GetPayrollResponseTest.php
+++ b/src/gen/test/Model/GetPayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollsResponseTest.php b/src/gen/test/Model/GetPayrollsResponseTest.php
index d9c258f269..a116fb5593 100644
--- a/src/gen/test/Model/GetPayrollsResponseTest.php
+++ b/src/gen/test/Model/GetPayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelineResponseTest.php b/src/gen/test/Model/GetPipelineResponseTest.php
index 911e435755..7446219f4b 100644
--- a/src/gen/test/Model/GetPipelineResponseTest.php
+++ b/src/gen/test/Model/GetPipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelinesResponseTest.php b/src/gen/test/Model/GetPipelinesResponseTest.php
index bf73e8a990..106ecd6054 100644
--- a/src/gen/test/Model/GetPipelinesResponseTest.php
+++ b/src/gen/test/Model/GetPipelinesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentResponseTest.php b/src/gen/test/Model/GetPosPaymentResponseTest.php
index 970156e118..50960f26ba 100644
--- a/src/gen/test/Model/GetPosPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentsResponseTest.php b/src/gen/test/Model/GetPosPaymentsResponseTest.php
index 585345e2a1..9cbd471236 100644
--- a/src/gen/test/Model/GetPosPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductResponseTest.php b/src/gen/test/Model/GetProductResponseTest.php
index 820756bf4e..34e144a1f1 100644
--- a/src/gen/test/Model/GetProductResponseTest.php
+++ b/src/gen/test/Model/GetProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductsResponseTest.php b/src/gen/test/Model/GetProductsResponseTest.php
index 57d9708b0b..b692ff172b 100644
--- a/src/gen/test/Model/GetProductsResponseTest.php
+++ b/src/gen/test/Model/GetProductsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProfitAndLossResponseTest.php b/src/gen/test/Model/GetProfitAndLossResponseTest.php
index a2800f0e5b..fe6985a587 100644
--- a/src/gen/test/Model/GetProfitAndLossResponseTest.php
+++ b/src/gen/test/Model/GetProfitAndLossResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrderResponseTest.php b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
index 5ad4795268..1b854f1529 100644
--- a/src/gen/test/Model/GetPurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
index 97652c3d8c..45e45ddb8a 100644
--- a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceExampleResponseTest.php b/src/gen/test/Model/GetResourceExampleResponseTest.php
index 4b5b57533d..98154907b0 100644
--- a/src/gen/test/Model/GetResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceSchemaResponseTest.php b/src/gen/test/Model/GetResourceSchemaResponseTest.php
index 7af876eb63..27d07a3467 100644
--- a/src/gen/test/Model/GetResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinkResponseTest.php b/src/gen/test/Model/GetSharedLinkResponseTest.php
index 826fea71b2..370ad9d3c2 100644
--- a/src/gen/test/Model/GetSharedLinkResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinksResponseTest.php b/src/gen/test/Model/GetSharedLinksResponseTest.php
index f597c67a0b..2189a93c45 100644
--- a/src/gen/test/Model/GetSharedLinksResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoreResponseTest.php b/src/gen/test/Model/GetStoreResponseTest.php
index f2d2b08837..1a204b94c5 100644
--- a/src/gen/test/Model/GetStoreResponseTest.php
+++ b/src/gen/test/Model/GetStoreResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoresResponseTest.php b/src/gen/test/Model/GetStoresResponseTest.php
index 12df7bf79f..482a7147bf 100644
--- a/src/gen/test/Model/GetStoresResponseTest.php
+++ b/src/gen/test/Model/GetStoresResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSubsidiariesResponseTest.php b/src/gen/test/Model/GetSubsidiariesResponseTest.php
index 3275aacf6a..33137b899d 100644
--- a/src/gen/test/Model/GetSubsidiariesResponseTest.php
+++ b/src/gen/test/Model/GetSubsidiariesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSubsidiaryResponseTest.php b/src/gen/test/Model/GetSubsidiaryResponseTest.php
index b7e013afc2..0a4acb8ca0 100644
--- a/src/gen/test/Model/GetSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/GetSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSupplierResponseTest.php b/src/gen/test/Model/GetSupplierResponseTest.php
index 35801e5c87..12f829ac5c 100644
--- a/src/gen/test/Model/GetSupplierResponseTest.php
+++ b/src/gen/test/Model/GetSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSuppliersResponseTest.php b/src/gen/test/Model/GetSuppliersResponseTest.php
index 7d9e63d4de..ca658c8959 100644
--- a/src/gen/test/Model/GetSuppliersResponseTest.php
+++ b/src/gen/test/Model/GetSuppliersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRateResponseTest.php b/src/gen/test/Model/GetTaxRateResponseTest.php
index 6248632e70..27593929f1 100644
--- a/src/gen/test/Model/GetTaxRateResponseTest.php
+++ b/src/gen/test/Model/GetTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRatesResponseTest.php b/src/gen/test/Model/GetTaxRatesResponseTest.php
index ae920f415e..a1b211b1f5 100644
--- a/src/gen/test/Model/GetTaxRatesResponseTest.php
+++ b/src/gen/test/Model/GetTaxRatesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTenderResponseTest.php b/src/gen/test/Model/GetTenderResponseTest.php
index 97c5819799..8ee2f0ba8b 100644
--- a/src/gen/test/Model/GetTenderResponseTest.php
+++ b/src/gen/test/Model/GetTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTendersResponseTest.php b/src/gen/test/Model/GetTendersResponseTest.php
index 3e48167cf1..55c9272363 100644
--- a/src/gen/test/Model/GetTendersResponseTest.php
+++ b/src/gen/test/Model/GetTendersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketResponseTest.php b/src/gen/test/Model/GetTicketResponseTest.php
index b52a323930..519073e5b7 100644
--- a/src/gen/test/Model/GetTicketResponseTest.php
+++ b/src/gen/test/Model/GetTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketsResponseTest.php b/src/gen/test/Model/GetTicketsResponseTest.php
index 2ad2185ef1..8fdbac3b53 100644
--- a/src/gen/test/Model/GetTicketsResponseTest.php
+++ b/src/gen/test/Model/GetTicketsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestResponseTest.php b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
index bdadbaf74b..fbcd138f4c 100644
--- a/src/gen/test/Model/GetTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
index d5f578a0c5..2366a53007 100644
--- a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUploadSessionResponseTest.php b/src/gen/test/Model/GetUploadSessionResponseTest.php
index 7df8cf6a55..bddd2789f8 100644
--- a/src/gen/test/Model/GetUploadSessionResponseTest.php
+++ b/src/gen/test/Model/GetUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUserResponseTest.php b/src/gen/test/Model/GetUserResponseTest.php
index 36eca1bea2..4f45487dd1 100644
--- a/src/gen/test/Model/GetUserResponseTest.php
+++ b/src/gen/test/Model/GetUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUsersResponseTest.php b/src/gen/test/Model/GetUsersResponseTest.php
index e596aa3733..9a8414b6b0 100644
--- a/src/gen/test/Model/GetUsersResponseTest.php
+++ b/src/gen/test/Model/GetUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
index 9b76d630b3..ef8086748f 100644
--- a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
+++ b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookResponseTest.php b/src/gen/test/Model/GetWebhookResponseTest.php
index fda2eafc12..6313aef8ba 100644
--- a/src/gen/test/Model/GetWebhookResponseTest.php
+++ b/src/gen/test/Model/GetWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhooksResponseTest.php b/src/gen/test/Model/GetWebhooksResponseTest.php
index 73ea254ccc..89a53fd836 100644
--- a/src/gen/test/Model/GetWebhooksResponseTest.php
+++ b/src/gen/test/Model/GetWebhooksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisCompanyTest.php b/src/gen/test/Model/HrisCompanyTest.php
index 30138e6ef1..0ada0a155a 100644
--- a/src/gen/test/Model/HrisCompanyTest.php
+++ b/src/gen/test/Model/HrisCompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisEventTypeTest.php b/src/gen/test/Model/HrisEventTypeTest.php
index 17dd15a950..59afb241c6 100644
--- a/src/gen/test/Model/HrisEventTypeTest.php
+++ b/src/gen/test/Model/HrisEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobLocationTest.php b/src/gen/test/Model/HrisJobLocationTest.php
index 867fc7b695..73afd9b0d7 100644
--- a/src/gen/test/Model/HrisJobLocationTest.php
+++ b/src/gen/test/Model/HrisJobLocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobTest.php b/src/gen/test/Model/HrisJobTest.php
index 3a4fd7f0c7..400e8b936a 100644
--- a/src/gen/test/Model/HrisJobTest.php
+++ b/src/gen/test/Model/HrisJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobsTest.php b/src/gen/test/Model/HrisJobsTest.php
index d9a7c2f570..a1ecf575aa 100644
--- a/src/gen/test/Model/HrisJobsTest.php
+++ b/src/gen/test/Model/HrisJobsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IntegrationStateTest.php b/src/gen/test/Model/IntegrationStateTest.php
index 8e93dea302..ac4ea782ed 100644
--- a/src/gen/test/Model/IntegrationStateTest.php
+++ b/src/gen/test/Model/IntegrationStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
index 384c72caa5..8feebb95dd 100644
--- a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
+++ b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemTest.php b/src/gen/test/Model/InvoiceItemTest.php
index 04cef31fae..fca33c7eab 100644
--- a/src/gen/test/Model/InvoiceItemTest.php
+++ b/src/gen/test/Model/InvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemsFilterTest.php b/src/gen/test/Model/InvoiceItemsFilterTest.php
index 28ec1eba38..98d1c0979e 100644
--- a/src/gen/test/Model/InvoiceItemsFilterTest.php
+++ b/src/gen/test/Model/InvoiceItemsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceLineItemTest.php b/src/gen/test/Model/InvoiceLineItemTest.php
index 439b0fc411..238a15a331 100644
--- a/src/gen/test/Model/InvoiceLineItemTest.php
+++ b/src/gen/test/Model/InvoiceLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceResponseTest.php b/src/gen/test/Model/InvoiceResponseTest.php
index 628cb6cc87..7d6638e94e 100644
--- a/src/gen/test/Model/InvoiceResponseTest.php
+++ b/src/gen/test/Model/InvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceTest.php b/src/gen/test/Model/InvoiceTest.php
index 81fe4d6a2d..4f4043370c 100644
--- a/src/gen/test/Model/InvoiceTest.php
+++ b/src/gen/test/Model/InvoiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesFilterTest.php b/src/gen/test/Model/InvoicesFilterTest.php
index 840544db29..3024022139 100644
--- a/src/gen/test/Model/InvoicesFilterTest.php
+++ b/src/gen/test/Model/InvoicesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesSortTest.php b/src/gen/test/Model/InvoicesSortTest.php
index 721bd2a295..c5ce7dce93 100644
--- a/src/gen/test/Model/InvoicesSortTest.php
+++ b/src/gen/test/Model/InvoicesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssueTrackingEventTypeTest.php b/src/gen/test/Model/IssueTrackingEventTypeTest.php
index 60c04091f7..2113de8309 100644
--- a/src/gen/test/Model/IssueTrackingEventTypeTest.php
+++ b/src/gen/test/Model/IssueTrackingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssuesFilterTest.php b/src/gen/test/Model/IssuesFilterTest.php
index a159cdf150..4dacd5192b 100644
--- a/src/gen/test/Model/IssuesFilterTest.php
+++ b/src/gen/test/Model/IssuesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ItemTest.php b/src/gen/test/Model/ItemTest.php
index ce4d3b3edf..4a05bc265d 100644
--- a/src/gen/test/Model/ItemTest.php
+++ b/src/gen/test/Model/ItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobLinksTest.php b/src/gen/test/Model/JobLinksTest.php
index cd44a869e0..4ee648ff7c 100644
--- a/src/gen/test/Model/JobLinksTest.php
+++ b/src/gen/test/Model/JobLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobSalaryTest.php b/src/gen/test/Model/JobSalaryTest.php
index d8738eae87..a5d2576d09 100644
--- a/src/gen/test/Model/JobSalaryTest.php
+++ b/src/gen/test/Model/JobSalaryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobStatusTest.php b/src/gen/test/Model/JobStatusTest.php
index 91ac203a30..25e9866835 100644
--- a/src/gen/test/Model/JobStatusTest.php
+++ b/src/gen/test/Model/JobStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobTest.php b/src/gen/test/Model/JobTest.php
index d3aa84c3db..2926742d47 100644
--- a/src/gen/test/Model/JobTest.php
+++ b/src/gen/test/Model/JobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesFilterTest.php b/src/gen/test/Model/JournalEntriesFilterTest.php
index a5a6821b4d..a1f9035db8 100644
--- a/src/gen/test/Model/JournalEntriesFilterTest.php
+++ b/src/gen/test/Model/JournalEntriesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesSortTest.php b/src/gen/test/Model/JournalEntriesSortTest.php
index 229ad41b82..e6798b2969 100644
--- a/src/gen/test/Model/JournalEntriesSortTest.php
+++ b/src/gen/test/Model/JournalEntriesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryLineItemTest.php b/src/gen/test/Model/JournalEntryLineItemTest.php
index b16cb8c221..3beb8dab21 100644
--- a/src/gen/test/Model/JournalEntryLineItemTest.php
+++ b/src/gen/test/Model/JournalEntryLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryTest.php b/src/gen/test/Model/JournalEntryTest.php
index b3441b61cf..768b49ebc3 100644
--- a/src/gen/test/Model/JournalEntryTest.php
+++ b/src/gen/test/Model/JournalEntryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadEventTypeTest.php b/src/gen/test/Model/LeadEventTypeTest.php
index ce9f43707c..ceb589140a 100644
--- a/src/gen/test/Model/LeadEventTypeTest.php
+++ b/src/gen/test/Model/LeadEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadTest.php b/src/gen/test/Model/LeadTest.php
index 67a7019476..15c81a4a41 100644
--- a/src/gen/test/Model/LeadTest.php
+++ b/src/gen/test/Model/LeadTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsFilterTest.php b/src/gen/test/Model/LeadsFilterTest.php
index 8a5ad10b36..e84e2e3dbb 100644
--- a/src/gen/test/Model/LeadsFilterTest.php
+++ b/src/gen/test/Model/LeadsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsSortTest.php b/src/gen/test/Model/LeadsSortTest.php
index 72c0229c9f..5085a6cd9c 100644
--- a/src/gen/test/Model/LeadsSortTest.php
+++ b/src/gen/test/Model/LeadsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountCategoriesTest.php b/src/gen/test/Model/LedgerAccountCategoriesTest.php
index 250e376a6f..1ebf66bbf5 100644
--- a/src/gen/test/Model/LedgerAccountCategoriesTest.php
+++ b/src/gen/test/Model/LedgerAccountCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountParentAccountTest.php b/src/gen/test/Model/LedgerAccountParentAccountTest.php
index 206938734e..f479eda18b 100644
--- a/src/gen/test/Model/LedgerAccountParentAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountParentAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountTest.php b/src/gen/test/Model/LedgerAccountTest.php
index 0922ec68db..b3fd719245 100644
--- a/src/gen/test/Model/LedgerAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsFilterTest.php b/src/gen/test/Model/LedgerAccountsFilterTest.php
index b145c35a07..08e0fa6565 100644
--- a/src/gen/test/Model/LedgerAccountsFilterTest.php
+++ b/src/gen/test/Model/LedgerAccountsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsSortTest.php b/src/gen/test/Model/LedgerAccountsSortTest.php
index ff7c406653..22942ea26c 100644
--- a/src/gen/test/Model/LedgerAccountsSortTest.php
+++ b/src/gen/test/Model/LedgerAccountsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedConnectorResourceTest.php b/src/gen/test/Model/LinkedConnectorResourceTest.php
index 6385dd199d..e4a0664970 100644
--- a/src/gen/test/Model/LinkedConnectorResourceTest.php
+++ b/src/gen/test/Model/LinkedConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedCustomerTest.php b/src/gen/test/Model/LinkedCustomerTest.php
index 6bdd975b8a..ff092d92d5 100644
--- a/src/gen/test/Model/LinkedCustomerTest.php
+++ b/src/gen/test/Model/LinkedCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceCustomerTest.php b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
index ad1bd11e8b..6c3503e5fc 100644
--- a/src/gen/test/Model/LinkedEcommerceCustomerTest.php
+++ b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceOrderTest.php b/src/gen/test/Model/LinkedEcommerceOrderTest.php
index a70538b609..37e3644fc2 100644
--- a/src/gen/test/Model/LinkedEcommerceOrderTest.php
+++ b/src/gen/test/Model/LinkedEcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedFolderTest.php b/src/gen/test/Model/LinkedFolderTest.php
index bf08eeac12..ccf0e7eecf 100644
--- a/src/gen/test/Model/LinkedFolderTest.php
+++ b/src/gen/test/Model/LinkedFolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedInvoiceItemTest.php b/src/gen/test/Model/LinkedInvoiceItemTest.php
index f3b590b422..df527136ca 100644
--- a/src/gen/test/Model/LinkedInvoiceItemTest.php
+++ b/src/gen/test/Model/LinkedInvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedLedgerAccountTest.php b/src/gen/test/Model/LinkedLedgerAccountTest.php
index ef360d1972..f4bd283e35 100644
--- a/src/gen/test/Model/LinkedLedgerAccountTest.php
+++ b/src/gen/test/Model/LinkedLedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedParentCustomerTest.php b/src/gen/test/Model/LinkedParentCustomerTest.php
index 54098de1d2..30a88478c3 100644
--- a/src/gen/test/Model/LinkedParentCustomerTest.php
+++ b/src/gen/test/Model/LinkedParentCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedSupplierTest.php b/src/gen/test/Model/LinkedSupplierTest.php
index c9613f6c12..bcdea080e4 100644
--- a/src/gen/test/Model/LinkedSupplierTest.php
+++ b/src/gen/test/Model/LinkedSupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTaxRateTest.php b/src/gen/test/Model/LinkedTaxRateTest.php
index 21ff0c8ead..ab7dea2edd 100644
--- a/src/gen/test/Model/LinkedTaxRateTest.php
+++ b/src/gen/test/Model/LinkedTaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTrackingCategoryTest.php b/src/gen/test/Model/LinkedTrackingCategoryTest.php
index 7e62089dc5..a3808722d6 100644
--- a/src/gen/test/Model/LinkedTrackingCategoryTest.php
+++ b/src/gen/test/Model/LinkedTrackingCategoryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinksTest.php b/src/gen/test/Model/LinksTest.php
index 3c7f7afbdc..4a7fcaa910 100644
--- a/src/gen/test/Model/LinksTest.php
+++ b/src/gen/test/Model/LinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LocationTest.php b/src/gen/test/Model/LocationTest.php
index 57840bbb9c..703c9d551c 100644
--- a/src/gen/test/Model/LocationTest.php
+++ b/src/gen/test/Model/LocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogOperationTest.php b/src/gen/test/Model/LogOperationTest.php
index b53fb383a5..d0675fc211 100644
--- a/src/gen/test/Model/LogOperationTest.php
+++ b/src/gen/test/Model/LogOperationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogServiceTest.php b/src/gen/test/Model/LogServiceTest.php
index 7d77deab20..a0b4cf53b1 100644
--- a/src/gen/test/Model/LogServiceTest.php
+++ b/src/gen/test/Model/LogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogTest.php b/src/gen/test/Model/LogTest.php
index e75318f6cc..f0d42672ef 100644
--- a/src/gen/test/Model/LogTest.php
+++ b/src/gen/test/Model/LogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogsFilterTest.php b/src/gen/test/Model/LogsFilterTest.php
index 6c32084888..1c1d48a6d2 100644
--- a/src/gen/test/Model/LogsFilterTest.php
+++ b/src/gen/test/Model/LogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MerchantTest.php b/src/gen/test/Model/MerchantTest.php
index 82ef6dac6b..b3b65d8b96 100644
--- a/src/gen/test/Model/MerchantTest.php
+++ b/src/gen/test/Model/MerchantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MessageTest.php b/src/gen/test/Model/MessageTest.php
index 5df1c10113..c90ef80b02 100644
--- a/src/gen/test/Model/MessageTest.php
+++ b/src/gen/test/Model/MessageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaCursorsTest.php b/src/gen/test/Model/MetaCursorsTest.php
index b27d786ef0..ce1d171905 100644
--- a/src/gen/test/Model/MetaCursorsTest.php
+++ b/src/gen/test/Model/MetaCursorsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaTest.php b/src/gen/test/Model/MetaTest.php
index 2af5c7e6a1..c27e63c7d9 100644
--- a/src/gen/test/Model/MetaTest.php
+++ b/src/gen/test/Model/MetaTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupFilterTest.php b/src/gen/test/Model/ModifierGroupFilterTest.php
index 9100050c39..6883d85a27 100644
--- a/src/gen/test/Model/ModifierGroupFilterTest.php
+++ b/src/gen/test/Model/ModifierGroupFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupTest.php b/src/gen/test/Model/ModifierGroupTest.php
index b99452fc0d..9de0dc00ed 100644
--- a/src/gen/test/Model/ModifierGroupTest.php
+++ b/src/gen/test/Model/ModifierGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierTest.php b/src/gen/test/Model/ModifierTest.php
index e8e46d7237..bf76e09757 100644
--- a/src/gen/test/Model/ModifierTest.php
+++ b/src/gen/test/Model/ModifierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotFoundResponseTest.php b/src/gen/test/Model/NotFoundResponseTest.php
index 49004d1fc0..ee944bd920 100644
--- a/src/gen/test/Model/NotFoundResponseTest.php
+++ b/src/gen/test/Model/NotFoundResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotImplementedResponseTest.php b/src/gen/test/Model/NotImplementedResponseTest.php
index 88af9726b8..72795de3e9 100644
--- a/src/gen/test/Model/NotImplementedResponseTest.php
+++ b/src/gen/test/Model/NotImplementedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NoteTest.php b/src/gen/test/Model/NoteTest.php
index 11c8ec79cc..75dfc43d0c 100644
--- a/src/gen/test/Model/NoteTest.php
+++ b/src/gen/test/Model/NoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OAuthGrantTypeTest.php b/src/gen/test/Model/OAuthGrantTypeTest.php
index 43588ba1df..0cfc96fa00 100644
--- a/src/gen/test/Model/OAuthGrantTypeTest.php
+++ b/src/gen/test/Model/OAuthGrantTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OfferTest.php b/src/gen/test/Model/OfferTest.php
index 90ca25a10a..2037cc6da7 100644
--- a/src/gen/test/Model/OfferTest.php
+++ b/src/gen/test/Model/OfferTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesFilterTest.php b/src/gen/test/Model/OpportunitiesFilterTest.php
index 83d11ba7a2..dda75f6a3c 100644
--- a/src/gen/test/Model/OpportunitiesFilterTest.php
+++ b/src/gen/test/Model/OpportunitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesSortTest.php b/src/gen/test/Model/OpportunitiesSortTest.php
index 5ed74004a7..e447a9f783 100644
--- a/src/gen/test/Model/OpportunitiesSortTest.php
+++ b/src/gen/test/Model/OpportunitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunityTest.php b/src/gen/test/Model/OpportunityTest.php
index 9038cb581e..f4ca869f24 100644
--- a/src/gen/test/Model/OpportunityTest.php
+++ b/src/gen/test/Model/OpportunityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderCustomersTest.php b/src/gen/test/Model/OrderCustomersTest.php
index d75da310e2..16b0256ca7 100644
--- a/src/gen/test/Model/OrderCustomersTest.php
+++ b/src/gen/test/Model/OrderCustomersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderDiscountsTest.php b/src/gen/test/Model/OrderDiscountsTest.php
index 6d040d8ad3..1906ed61f2 100644
--- a/src/gen/test/Model/OrderDiscountsTest.php
+++ b/src/gen/test/Model/OrderDiscountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderFulfillmentsTest.php b/src/gen/test/Model/OrderFulfillmentsTest.php
index 5d1865aa06..d92c4e9afc 100644
--- a/src/gen/test/Model/OrderFulfillmentsTest.php
+++ b/src/gen/test/Model/OrderFulfillmentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderLineItemsTest.php b/src/gen/test/Model/OrderLineItemsTest.php
index ec84575541..aa0727ed74 100644
--- a/src/gen/test/Model/OrderLineItemsTest.php
+++ b/src/gen/test/Model/OrderLineItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPaymentsTest.php b/src/gen/test/Model/OrderPaymentsTest.php
index 9e71e617f6..5a2be8eade 100644
--- a/src/gen/test/Model/OrderPaymentsTest.php
+++ b/src/gen/test/Model/OrderPaymentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
index 218932fd2f..16f495e0fd 100644
--- a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
index 1a1216f788..5545a57520 100644
--- a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsTest.php
index e53e76972d..7e59371918 100644
--- a/src/gen/test/Model/OrderPickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderRefundsTest.php b/src/gen/test/Model/OrderRefundsTest.php
index 5f38cabdbb..c229121358 100644
--- a/src/gen/test/Model/OrderRefundsTest.php
+++ b/src/gen/test/Model/OrderRefundsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTendersTest.php b/src/gen/test/Model/OrderTendersTest.php
index 2ef5c69561..b5334c4b4a 100644
--- a/src/gen/test/Model/OrderTendersTest.php
+++ b/src/gen/test/Model/OrderTendersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTest.php b/src/gen/test/Model/OrderTest.php
index 5bebd1cd9e..2390107ae2 100644
--- a/src/gen/test/Model/OrderTest.php
+++ b/src/gen/test/Model/OrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTypeTest.php b/src/gen/test/Model/OrderTypeTest.php
index 8d272d2ed3..4ebea1dd38 100644
--- a/src/gen/test/Model/OrderTypeTest.php
+++ b/src/gen/test/Model/OrderTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OwnerTest.php b/src/gen/test/Model/OwnerTest.php
index 9f150b46ff..f905e5c28f 100644
--- a/src/gen/test/Model/OwnerTest.php
+++ b/src/gen/test/Model/OwnerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaginationCoverageTest.php b/src/gen/test/Model/PaginationCoverageTest.php
index d499697234..2376170c7e 100644
--- a/src/gen/test/Model/PaginationCoverageTest.php
+++ b/src/gen/test/Model/PaginationCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PassThroughQueryTest.php b/src/gen/test/Model/PassThroughQueryTest.php
index 356833ff10..a9facbfb44 100644
--- a/src/gen/test/Model/PassThroughQueryTest.php
+++ b/src/gen/test/Model/PassThroughQueryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentAllocationsTest.php b/src/gen/test/Model/PaymentAllocationsTest.php
index 38e92b7b91..0b6d8be062 100644
--- a/src/gen/test/Model/PaymentAllocationsTest.php
+++ b/src/gen/test/Model/PaymentAllocationsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentCardTest.php b/src/gen/test/Model/PaymentCardTest.php
index 989256f71b..e3b4f9f1bb 100644
--- a/src/gen/test/Model/PaymentCardTest.php
+++ b/src/gen/test/Model/PaymentCardTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentFrequencyTest.php b/src/gen/test/Model/PaymentFrequencyTest.php
index 8c56281c7d..1309764028 100644
--- a/src/gen/test/Model/PaymentFrequencyTest.php
+++ b/src/gen/test/Model/PaymentFrequencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentRequiredResponseTest.php b/src/gen/test/Model/PaymentRequiredResponseTest.php
index 4c894bb374..5261e0ed99 100644
--- a/src/gen/test/Model/PaymentRequiredResponseTest.php
+++ b/src/gen/test/Model/PaymentRequiredResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentTest.php b/src/gen/test/Model/PaymentTest.php
index f20c263f5e..8a7130b9f5 100644
--- a/src/gen/test/Model/PaymentTest.php
+++ b/src/gen/test/Model/PaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentUnitTest.php b/src/gen/test/Model/PaymentUnitTest.php
index 6239b47ec6..68d869354a 100644
--- a/src/gen/test/Model/PaymentUnitTest.php
+++ b/src/gen/test/Model/PaymentUnitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsFilterTest.php b/src/gen/test/Model/PaymentsFilterTest.php
index b0d3d45696..49bc4db628 100644
--- a/src/gen/test/Model/PaymentsFilterTest.php
+++ b/src/gen/test/Model/PaymentsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsSortTest.php b/src/gen/test/Model/PaymentsSortTest.php
index 01d2d05474..6227b11c2e 100644
--- a/src/gen/test/Model/PaymentsSortTest.php
+++ b/src/gen/test/Model/PaymentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTest.php b/src/gen/test/Model/PayrollTest.php
index c1f5fe79c3..eaac2ee463 100644
--- a/src/gen/test/Model/PayrollTest.php
+++ b/src/gen/test/Model/PayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTotalsTest.php b/src/gen/test/Model/PayrollTotalsTest.php
index 6a2e3636fe..14238b80ba 100644
--- a/src/gen/test/Model/PayrollTotalsTest.php
+++ b/src/gen/test/Model/PayrollTotalsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollsFilterTest.php b/src/gen/test/Model/PayrollsFilterTest.php
index f5c08d152e..86dfaf4341 100644
--- a/src/gen/test/Model/PayrollsFilterTest.php
+++ b/src/gen/test/Model/PayrollsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PersonTest.php b/src/gen/test/Model/PersonTest.php
index 3e7716b93f..f23ad90793 100644
--- a/src/gen/test/Model/PersonTest.php
+++ b/src/gen/test/Model/PersonTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PhoneNumberTest.php b/src/gen/test/Model/PhoneNumberTest.php
index 48be5f8f8a..d0a4dd3262 100644
--- a/src/gen/test/Model/PhoneNumberTest.php
+++ b/src/gen/test/Model/PhoneNumberTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineStagesTest.php b/src/gen/test/Model/PipelineStagesTest.php
index 5a223cd181..0f3be313c0 100644
--- a/src/gen/test/Model/PipelineStagesTest.php
+++ b/src/gen/test/Model/PipelineStagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineTest.php b/src/gen/test/Model/PipelineTest.php
index 7de1cfeddb..5f8704f696 100644
--- a/src/gen/test/Model/PipelineTest.php
+++ b/src/gen/test/Model/PipelineTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountAchDetailsTest.php b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
index 0f6c5b93c4..e7b0ac25e5 100644
--- a/src/gen/test/Model/PosBankAccountAchDetailsTest.php
+++ b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountTest.php b/src/gen/test/Model/PosBankAccountTest.php
index 234761c417..2332730fd3 100644
--- a/src/gen/test/Model/PosBankAccountTest.php
+++ b/src/gen/test/Model/PosBankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentCardDetailsTest.php b/src/gen/test/Model/PosPaymentCardDetailsTest.php
index df16628836..1da75f1374 100644
--- a/src/gen/test/Model/PosPaymentCardDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentCardDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentExternalDetailsTest.php b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
index 0f61d990a7..29fa164fc1 100644
--- a/src/gen/test/Model/PosPaymentExternalDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentTest.php b/src/gen/test/Model/PosPaymentTest.php
index 7a1a43e0c8..db3f06b7a5 100644
--- a/src/gen/test/Model/PosPaymentTest.php
+++ b/src/gen/test/Model/PosPaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PriceTest.php b/src/gen/test/Model/PriceTest.php
index 3a1f90abb1..8f66b470ef 100644
--- a/src/gen/test/Model/PriceTest.php
+++ b/src/gen/test/Model/PriceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProbationPeriodTest.php b/src/gen/test/Model/ProbationPeriodTest.php
index 886f1e0349..0efce76cc0 100644
--- a/src/gen/test/Model/ProbationPeriodTest.php
+++ b/src/gen/test/Model/ProbationPeriodTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossExpensesTest.php b/src/gen/test/Model/ProfitAndLossExpensesTest.php
index 3254ccf251..15ffcba303 100644
--- a/src/gen/test/Model/ProfitAndLossExpensesTest.php
+++ b/src/gen/test/Model/ProfitAndLossExpensesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossFilterTest.php b/src/gen/test/Model/ProfitAndLossFilterTest.php
index c91992e023..a5af2c05a2 100644
--- a/src/gen/test/Model/ProfitAndLossFilterTest.php
+++ b/src/gen/test/Model/ProfitAndLossFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
index b5f8a52394..f8a186ebd0 100644
--- a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
+++ b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossIncomeTest.php b/src/gen/test/Model/ProfitAndLossIncomeTest.php
index f109d3a1bf..79931c98f0 100644
--- a/src/gen/test/Model/ProfitAndLossIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
index 8ac4e17b87..e1dc87913a 100644
--- a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
index e4922e143e..eccd1a9058 100644
--- a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossRecordTest.php b/src/gen/test/Model/ProfitAndLossRecordTest.php
index afee002886..26b596d264 100644
--- a/src/gen/test/Model/ProfitAndLossRecordTest.php
+++ b/src/gen/test/Model/ProfitAndLossRecordTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossSectionTest.php b/src/gen/test/Model/ProfitAndLossSectionTest.php
index e0cdd691c1..63d86f407f 100644
--- a/src/gen/test/Model/ProfitAndLossSectionTest.php
+++ b/src/gen/test/Model/ProfitAndLossSectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossTest.php b/src/gen/test/Model/ProfitAndLossTest.php
index 61ca8d3d85..9406540696 100644
--- a/src/gen/test/Model/ProfitAndLossTest.php
+++ b/src/gen/test/Model/ProfitAndLossTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrderTest.php b/src/gen/test/Model/PurchaseOrderTest.php
index 11a3686980..321f3a1b4c 100644
--- a/src/gen/test/Model/PurchaseOrderTest.php
+++ b/src/gen/test/Model/PurchaseOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersFilterTest.php b/src/gen/test/Model/PurchaseOrdersFilterTest.php
index 1b94a7e577..e770239ab2 100644
--- a/src/gen/test/Model/PurchaseOrdersFilterTest.php
+++ b/src/gen/test/Model/PurchaseOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersSortTest.php b/src/gen/test/Model/PurchaseOrdersSortTest.php
index 5b58043baf..dd88e1b737 100644
--- a/src/gen/test/Model/PurchaseOrdersSortTest.php
+++ b/src/gen/test/Model/PurchaseOrdersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestCountAllocationTest.php b/src/gen/test/Model/RequestCountAllocationTest.php
index a793e6f2e9..425863f08f 100644
--- a/src/gen/test/Model/RequestCountAllocationTest.php
+++ b/src/gen/test/Model/RequestCountAllocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestRateTest.php b/src/gen/test/Model/RequestRateTest.php
index 83be8804fa..37f577f3ca 100644
--- a/src/gen/test/Model/RequestRateTest.php
+++ b/src/gen/test/Model/RequestRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResolveWebhookResponseTest.php b/src/gen/test/Model/ResolveWebhookResponseTest.php
index 8396ae6d0b..1b7c9c483e 100644
--- a/src/gen/test/Model/ResolveWebhookResponseTest.php
+++ b/src/gen/test/Model/ResolveWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceExampleTest.php b/src/gen/test/Model/ResourceExampleTest.php
index 5550480672..466b044166 100644
--- a/src/gen/test/Model/ResourceExampleTest.php
+++ b/src/gen/test/Model/ResourceExampleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceStatusTest.php b/src/gen/test/Model/ResourceStatusTest.php
index db6681ad13..c33eef64c9 100644
--- a/src/gen/test/Model/ResourceStatusTest.php
+++ b/src/gen/test/Model/ResourceStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleTest.php b/src/gen/test/Model/ScheduleTest.php
index f16ca23afc..0e54760c69 100644
--- a/src/gen/test/Model/ScheduleTest.php
+++ b/src/gen/test/Model/ScheduleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
index 1072084ebc..2be6c3bf50 100644
--- a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternTest.php b/src/gen/test/Model/ScheduleWorkPatternTest.php
index 1b76f01d2e..d53f4621c6 100644
--- a/src/gen/test/Model/ScheduleWorkPatternTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SchemaSupportTest.php b/src/gen/test/Model/SchemaSupportTest.php
index d89953c164..b2399752bc 100644
--- a/src/gen/test/Model/SchemaSupportTest.php
+++ b/src/gen/test/Model/SchemaSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ServiceChargeTest.php b/src/gen/test/Model/ServiceChargeTest.php
index b2293ee021..345fa95362 100644
--- a/src/gen/test/Model/ServiceChargeTest.php
+++ b/src/gen/test/Model/ServiceChargeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionSettingsTest.php b/src/gen/test/Model/SessionSettingsTest.php
index c40e1143e5..b955b3503f 100644
--- a/src/gen/test/Model/SessionSettingsTest.php
+++ b/src/gen/test/Model/SessionSettingsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionTest.php b/src/gen/test/Model/SessionTest.php
index 8a63ad93ca..936da01f61 100644
--- a/src/gen/test/Model/SessionTest.php
+++ b/src/gen/test/Model/SessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionThemeTest.php b/src/gen/test/Model/SessionThemeTest.php
index a2210427ac..d10233419e 100644
--- a/src/gen/test/Model/SessionThemeTest.php
+++ b/src/gen/test/Model/SessionThemeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTargetTest.php b/src/gen/test/Model/SharedLinkTargetTest.php
index 5902748cc4..c1abf56609 100644
--- a/src/gen/test/Model/SharedLinkTargetTest.php
+++ b/src/gen/test/Model/SharedLinkTargetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTest.php b/src/gen/test/Model/SharedLinkTest.php
index ffc6978cb4..366c97936a 100644
--- a/src/gen/test/Model/SharedLinkTest.php
+++ b/src/gen/test/Model/SharedLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SimpleFormFieldOptionTest.php b/src/gen/test/Model/SimpleFormFieldOptionTest.php
index 650d4ab52e..2350708b73 100644
--- a/src/gen/test/Model/SimpleFormFieldOptionTest.php
+++ b/src/gen/test/Model/SimpleFormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SocialLinkTest.php b/src/gen/test/Model/SocialLinkTest.php
index e0b93cd0d1..89e00f27c8 100644
--- a/src/gen/test/Model/SocialLinkTest.php
+++ b/src/gen/test/Model/SocialLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SortDirectionTest.php b/src/gen/test/Model/SortDirectionTest.php
index cd76accddc..99cd3dfa2a 100644
--- a/src/gen/test/Model/SortDirectionTest.php
+++ b/src/gen/test/Model/SortDirectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/StatusTest.php b/src/gen/test/Model/StatusTest.php
index acaa528756..e391999842 100644
--- a/src/gen/test/Model/StatusTest.php
+++ b/src/gen/test/Model/StatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SubsidiaryReferenceTest.php b/src/gen/test/Model/SubsidiaryReferenceTest.php
new file mode 100644
index 0000000000..05d33081ed
--- /dev/null
+++ b/src/gen/test/Model/SubsidiaryReferenceTest.php
@@ -0,0 +1,99 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "id"
+ */
+ public function testPropertyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "name"
+ */
+ public function testPropertyName()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/SubsidiaryTest.php b/src/gen/test/Model/SubsidiaryTest.php
index 8da83f17f0..5b77649e66 100644
--- a/src/gen/test/Model/SubsidiaryTest.php
+++ b/src/gen/test/Model/SubsidiaryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SupplierTest.php b/src/gen/test/Model/SupplierTest.php
index 017475ba87..89e189e03b 100644
--- a/src/gen/test/Model/SupplierTest.php
+++ b/src/gen/test/Model/SupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersFilterTest.php b/src/gen/test/Model/SuppliersFilterTest.php
index 29e8bc775d..167d1043a2 100644
--- a/src/gen/test/Model/SuppliersFilterTest.php
+++ b/src/gen/test/Model/SuppliersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersSortTest.php b/src/gen/test/Model/SuppliersSortTest.php
index fe30ce0a28..273fb940a9 100644
--- a/src/gen/test/Model/SuppliersSortTest.php
+++ b/src/gen/test/Model/SuppliersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SupportedPropertyTest.php b/src/gen/test/Model/SupportedPropertyTest.php
index 1766750fac..6c1e7ab7a6 100644
--- a/src/gen/test/Model/SupportedPropertyTest.php
+++ b/src/gen/test/Model/SupportedPropertyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRateTest.php b/src/gen/test/Model/TaxRateTest.php
index 5302e2e0e3..543565a072 100644
--- a/src/gen/test/Model/TaxRateTest.php
+++ b/src/gen/test/Model/TaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRatesFilterTest.php b/src/gen/test/Model/TaxRatesFilterTest.php
index 57629ccced..6174be4651 100644
--- a/src/gen/test/Model/TaxRatesFilterTest.php
+++ b/src/gen/test/Model/TaxRatesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxTest.php b/src/gen/test/Model/TaxTest.php
index ba3cd67aa0..da84f64d38 100644
--- a/src/gen/test/Model/TaxTest.php
+++ b/src/gen/test/Model/TaxTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TeamTest.php b/src/gen/test/Model/TeamTest.php
index 9ec80b01aa..797a0c5169 100644
--- a/src/gen/test/Model/TeamTest.php
+++ b/src/gen/test/Model/TeamTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TenderTest.php b/src/gen/test/Model/TenderTest.php
index e934c7f547..ee98d6b142 100644
--- a/src/gen/test/Model/TenderTest.php
+++ b/src/gen/test/Model/TenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketTest.php b/src/gen/test/Model/TicketTest.php
index 48147ff23a..31d1b46016 100644
--- a/src/gen/test/Model/TicketTest.php
+++ b/src/gen/test/Model/TicketTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketsSortTest.php b/src/gen/test/Model/TicketsSortTest.php
index ea8d00f574..150b328bfc 100644
--- a/src/gen/test/Model/TicketsSortTest.php
+++ b/src/gen/test/Model/TicketsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestNotesTest.php b/src/gen/test/Model/TimeOffRequestNotesTest.php
index 8b790324ae..6af001a071 100644
--- a/src/gen/test/Model/TimeOffRequestNotesTest.php
+++ b/src/gen/test/Model/TimeOffRequestNotesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestTest.php b/src/gen/test/Model/TimeOffRequestTest.php
index c61fa04130..ab0578318f 100644
--- a/src/gen/test/Model/TimeOffRequestTest.php
+++ b/src/gen/test/Model/TimeOffRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestsFilterTest.php b/src/gen/test/Model/TimeOffRequestsFilterTest.php
index e23107483d..001f93ccca 100644
--- a/src/gen/test/Model/TimeOffRequestsFilterTest.php
+++ b/src/gen/test/Model/TimeOffRequestsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
index afa656ff99..362dac9694 100644
--- a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseTest.php b/src/gen/test/Model/TooManyRequestsResponseTest.php
index 7912181652..c2b9ee2aa6 100644
--- a/src/gen/test/Model/TooManyRequestsResponseTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TrackingItemTest.php b/src/gen/test/Model/TrackingItemTest.php
index cfcaf045cb..16835d17c5 100644
--- a/src/gen/test/Model/TrackingItemTest.php
+++ b/src/gen/test/Model/TrackingItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnauthorizedResponseTest.php b/src/gen/test/Model/UnauthorizedResponseTest.php
index 69769eee4f..649784ee2f 100644
--- a/src/gen/test/Model/UnauthorizedResponseTest.php
+++ b/src/gen/test/Model/UnauthorizedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnexpectedErrorResponseTest.php b/src/gen/test/Model/UnexpectedErrorResponseTest.php
index e38c92b916..6bfa088494 100644
--- a/src/gen/test/Model/UnexpectedErrorResponseTest.php
+++ b/src/gen/test/Model/UnexpectedErrorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedApiIdTest.php b/src/gen/test/Model/UnifiedApiIdTest.php
index f4287bc43b..1d7dec97c3 100644
--- a/src/gen/test/Model/UnifiedApiIdTest.php
+++ b/src/gen/test/Model/UnifiedApiIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFilePermissionsTest.php b/src/gen/test/Model/UnifiedFilePermissionsTest.php
index 2836a85be3..a9a89405a3 100644
--- a/src/gen/test/Model/UnifiedFilePermissionsTest.php
+++ b/src/gen/test/Model/UnifiedFilePermissionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFileTest.php b/src/gen/test/Model/UnifiedFileTest.php
index 75dcc6efe2..62498da16f 100644
--- a/src/gen/test/Model/UnifiedFileTest.php
+++ b/src/gen/test/Model/UnifiedFileTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedIdTest.php b/src/gen/test/Model/UnifiedIdTest.php
index 0b996601fe..ab5744295e 100644
--- a/src/gen/test/Model/UnifiedIdTest.php
+++ b/src/gen/test/Model/UnifiedIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnprocessableResponseTest.php b/src/gen/test/Model/UnprocessableResponseTest.php
index 64b24bd402..4eb771d159 100644
--- a/src/gen/test/Model/UnprocessableResponseTest.php
+++ b/src/gen/test/Model/UnprocessableResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateAccountingDepartmentResponseTest.php b/src/gen/test/Model/UpdateAccountingDepartmentResponseTest.php
new file mode 100644
index 0000000000..9dc49d2624
--- /dev/null
+++ b/src/gen/test/Model/UpdateAccountingDepartmentResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/UpdateAccountingLocationResponseTest.php b/src/gen/test/Model/UpdateAccountingLocationResponseTest.php
new file mode 100644
index 0000000000..6add375dd6
--- /dev/null
+++ b/src/gen/test/Model/UpdateAccountingLocationResponseTest.php
@@ -0,0 +1,135 @@
+markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status_code"
+ */
+ public function testPropertyStatusCode()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "status"
+ */
+ public function testPropertyStatus()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "service"
+ */
+ public function testPropertyService()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "resource"
+ */
+ public function testPropertyResource()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "operation"
+ */
+ public function testPropertyOperation()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
+ /**
+ * Test attribute "data"
+ */
+ public function testPropertyData()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+}
diff --git a/src/gen/test/Model/UpdateActivityResponseTest.php b/src/gen/test/Model/UpdateActivityResponseTest.php
index 6c11c89f17..49956aa272 100644
--- a/src/gen/test/Model/UpdateActivityResponseTest.php
+++ b/src/gen/test/Model/UpdateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicantResponseTest.php b/src/gen/test/Model/UpdateApplicantResponseTest.php
index cead95ffe1..94126aaaf9 100644
--- a/src/gen/test/Model/UpdateApplicantResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicationResponseTest.php b/src/gen/test/Model/UpdateApplicationResponseTest.php
index 0589d9644d..4e396544bc 100644
--- a/src/gen/test/Model/UpdateApplicationResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateBillResponseTest.php b/src/gen/test/Model/UpdateBillResponseTest.php
index 280e7c6ba4..189248ffc3 100644
--- a/src/gen/test/Model/UpdateBillResponseTest.php
+++ b/src/gen/test/Model/UpdateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCommentResponseTest.php b/src/gen/test/Model/UpdateCommentResponseTest.php
index c9cf1d30f7..1daae524e2 100644
--- a/src/gen/test/Model/UpdateCommentResponseTest.php
+++ b/src/gen/test/Model/UpdateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCompanyResponseTest.php b/src/gen/test/Model/UpdateCompanyResponseTest.php
index 18e7ce8a78..8389a2b32b 100644
--- a/src/gen/test/Model/UpdateCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConnectionResponseTest.php b/src/gen/test/Model/UpdateConnectionResponseTest.php
index d934ba637c..351d3c9933 100644
--- a/src/gen/test/Model/UpdateConnectionResponseTest.php
+++ b/src/gen/test/Model/UpdateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerRequestTest.php b/src/gen/test/Model/UpdateConsumerRequestTest.php
index 166c78a2a6..f17e6bdce4 100644
--- a/src/gen/test/Model/UpdateConsumerRequestTest.php
+++ b/src/gen/test/Model/UpdateConsumerRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerResponseTest.php b/src/gen/test/Model/UpdateConsumerResponseTest.php
index f1747b73b6..82f193d88b 100644
--- a/src/gen/test/Model/UpdateConsumerResponseTest.php
+++ b/src/gen/test/Model/UpdateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateContactResponseTest.php b/src/gen/test/Model/UpdateContactResponseTest.php
index 59c5c2839b..e1dafd39a2 100644
--- a/src/gen/test/Model/UpdateContactResponseTest.php
+++ b/src/gen/test/Model/UpdateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCreditNoteResponseTest.php b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
index 25305d6ea4..4039bd12ef 100644
--- a/src/gen/test/Model/UpdateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingRequestTest.php b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
index 01b5ba2764..96d45928f4 100644
--- a/src/gen/test/Model/UpdateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingResponseTest.php b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
index 9a423d0fe8..9364f881b3 100644
--- a/src/gen/test/Model/UpdateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomerResponseTest.php b/src/gen/test/Model/UpdateCustomerResponseTest.php
index 1d67448101..83cc306efb 100644
--- a/src/gen/test/Model/UpdateCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDepartmentResponseTest.php b/src/gen/test/Model/UpdateDepartmentResponseTest.php
index a8cb89f543..895514c8c5 100644
--- a/src/gen/test/Model/UpdateDepartmentResponseTest.php
+++ b/src/gen/test/Model/UpdateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveGroupResponseTest.php b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
index 999b1e448b..853797ac1c 100644
--- a/src/gen/test/Model/UpdateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveResponseTest.php b/src/gen/test/Model/UpdateDriveResponseTest.php
index 3f6520eefc..fabc62b2d1 100644
--- a/src/gen/test/Model/UpdateDriveResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
index 302d1071ed..c163280acc 100644
--- a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
index 5836897122..c646c6a7f0 100644
--- a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEmployeeResponseTest.php b/src/gen/test/Model/UpdateEmployeeResponseTest.php
index 9d6ee8f71b..9a86d41985 100644
--- a/src/gen/test/Model/UpdateEmployeeResponseTest.php
+++ b/src/gen/test/Model/UpdateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileRequestTest.php b/src/gen/test/Model/UpdateFileRequestTest.php
index e32c45dba4..7200432929 100644
--- a/src/gen/test/Model/UpdateFileRequestTest.php
+++ b/src/gen/test/Model/UpdateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileResponseTest.php b/src/gen/test/Model/UpdateFileResponseTest.php
index b80ed18a28..130ca6b7fd 100644
--- a/src/gen/test/Model/UpdateFileResponseTest.php
+++ b/src/gen/test/Model/UpdateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderRequestTest.php b/src/gen/test/Model/UpdateFolderRequestTest.php
index c26856c8ab..9569d2015f 100644
--- a/src/gen/test/Model/UpdateFolderRequestTest.php
+++ b/src/gen/test/Model/UpdateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderResponseTest.php b/src/gen/test/Model/UpdateFolderResponseTest.php
index e970d1b5e2..b8458ecacc 100644
--- a/src/gen/test/Model/UpdateFolderResponseTest.php
+++ b/src/gen/test/Model/UpdateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
index cbf0396577..e89294822a 100644
--- a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
index 154af3d0c3..56749e2733 100644
--- a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceResponseTest.php b/src/gen/test/Model/UpdateInvoiceResponseTest.php
index e6f0a063bd..469f861b76 100644
--- a/src/gen/test/Model/UpdateInvoiceResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateItemResponseTest.php b/src/gen/test/Model/UpdateItemResponseTest.php
index bef6dec304..447cc0adf4 100644
--- a/src/gen/test/Model/UpdateItemResponseTest.php
+++ b/src/gen/test/Model/UpdateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJobResponseTest.php b/src/gen/test/Model/UpdateJobResponseTest.php
index 48f61309a9..a54556bdec 100644
--- a/src/gen/test/Model/UpdateJobResponseTest.php
+++ b/src/gen/test/Model/UpdateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJournalEntryResponseTest.php b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
index f44a3a3459..f4054c1552 100644
--- a/src/gen/test/Model/UpdateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLeadResponseTest.php b/src/gen/test/Model/UpdateLeadResponseTest.php
index 2b2d933335..e117843a85 100644
--- a/src/gen/test/Model/UpdateLeadResponseTest.php
+++ b/src/gen/test/Model/UpdateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
index 6ce5e0c034..9a08eab64b 100644
--- a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLocationResponseTest.php b/src/gen/test/Model/UpdateLocationResponseTest.php
index d85c662de4..7cbff11ee8 100644
--- a/src/gen/test/Model/UpdateLocationResponseTest.php
+++ b/src/gen/test/Model/UpdateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMerchantResponseTest.php b/src/gen/test/Model/UpdateMerchantResponseTest.php
index 9405987f5e..57e968e9e2 100644
--- a/src/gen/test/Model/UpdateMerchantResponseTest.php
+++ b/src/gen/test/Model/UpdateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMessageResponseTest.php b/src/gen/test/Model/UpdateMessageResponseTest.php
index 7dc8721552..3439625dc4 100644
--- a/src/gen/test/Model/UpdateMessageResponseTest.php
+++ b/src/gen/test/Model/UpdateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierGroupResponseTest.php b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
index f98d91ca40..d5c9b2e5d6 100644
--- a/src/gen/test/Model/UpdateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierResponseTest.php b/src/gen/test/Model/UpdateModifierResponseTest.php
index e10400fed3..f0d58fea15 100644
--- a/src/gen/test/Model/UpdateModifierResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateNoteResponseTest.php b/src/gen/test/Model/UpdateNoteResponseTest.php
index 074de82f3e..65e6c04a4d 100644
--- a/src/gen/test/Model/UpdateNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOpportunityResponseTest.php b/src/gen/test/Model/UpdateOpportunityResponseTest.php
index d0e95bd856..a163ec19ee 100644
--- a/src/gen/test/Model/UpdateOpportunityResponseTest.php
+++ b/src/gen/test/Model/UpdateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderResponseTest.php b/src/gen/test/Model/UpdateOrderResponseTest.php
index 56bb373e40..027d3d6e15 100644
--- a/src/gen/test/Model/UpdateOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderTypeResponseTest.php b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
index 7502da1b04..a8c0e07608 100644
--- a/src/gen/test/Model/UpdateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePaymentResponseTest.php b/src/gen/test/Model/UpdatePaymentResponseTest.php
index 057e9b90e6..9fa83d8b35 100644
--- a/src/gen/test/Model/UpdatePaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePipelineResponseTest.php b/src/gen/test/Model/UpdatePipelineResponseTest.php
index c19455f44e..c6875f424b 100644
--- a/src/gen/test/Model/UpdatePipelineResponseTest.php
+++ b/src/gen/test/Model/UpdatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePosPaymentResponseTest.php b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
index 5bd8fc4c1b..07d538231d 100644
--- a/src/gen/test/Model/UpdatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateProductResponseTest.php b/src/gen/test/Model/UpdateProductResponseTest.php
index 5087737fe1..e33d12a6d9 100644
--- a/src/gen/test/Model/UpdateProductResponseTest.php
+++ b/src/gen/test/Model/UpdateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
index 82ee0cb5bf..fc20faf9fe 100644
--- a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSharedLinkResponseTest.php b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
index b4682e9bbd..23715517c0 100644
--- a/src/gen/test/Model/UpdateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSubsidiaryResponseTest.php b/src/gen/test/Model/UpdateSubsidiaryResponseTest.php
index f9a7934696..9992a214ff 100644
--- a/src/gen/test/Model/UpdateSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/UpdateSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSupplierResponseTest.php b/src/gen/test/Model/UpdateSupplierResponseTest.php
index 034835d0de..f163079ebe 100644
--- a/src/gen/test/Model/UpdateSupplierResponseTest.php
+++ b/src/gen/test/Model/UpdateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTaxRateResponseTest.php b/src/gen/test/Model/UpdateTaxRateResponseTest.php
index 033a75ed7d..53bac22449 100644
--- a/src/gen/test/Model/UpdateTaxRateResponseTest.php
+++ b/src/gen/test/Model/UpdateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTenderResponseTest.php b/src/gen/test/Model/UpdateTenderResponseTest.php
index 6832d13f36..2fa8e7aadb 100644
--- a/src/gen/test/Model/UpdateTenderResponseTest.php
+++ b/src/gen/test/Model/UpdateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTicketResponseTest.php b/src/gen/test/Model/UpdateTicketResponseTest.php
index 932de75a1c..d35aee80be 100644
--- a/src/gen/test/Model/UpdateTicketResponseTest.php
+++ b/src/gen/test/Model/UpdateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
index 9205600e9e..b5492792ae 100644
--- a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUploadSessionResponseTest.php b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
index e5ff0208fc..570b3ba2c9 100644
--- a/src/gen/test/Model/UpdateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUserResponseTest.php b/src/gen/test/Model/UpdateUserResponseTest.php
index 572a79a1ed..32a5094d0a 100644
--- a/src/gen/test/Model/UpdateUserResponseTest.php
+++ b/src/gen/test/Model/UpdateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookRequestTest.php b/src/gen/test/Model/UpdateWebhookRequestTest.php
index 4df6842a17..2909871a33 100644
--- a/src/gen/test/Model/UpdateWebhookRequestTest.php
+++ b/src/gen/test/Model/UpdateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookResponseTest.php b/src/gen/test/Model/UpdateWebhookResponseTest.php
index 5ccdf4e7cc..99087776a8 100644
--- a/src/gen/test/Model/UpdateWebhookResponseTest.php
+++ b/src/gen/test/Model/UpdateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UploadSessionTest.php b/src/gen/test/Model/UploadSessionTest.php
index b2f026faba..a573386951 100644
--- a/src/gen/test/Model/UploadSessionTest.php
+++ b/src/gen/test/Model/UploadSessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UserTest.php b/src/gen/test/Model/UserTest.php
index 2f5c123172..97e8833561 100644
--- a/src/gen/test/Model/UserTest.php
+++ b/src/gen/test/Model/UserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VaultEventTypeTest.php b/src/gen/test/Model/VaultEventTypeTest.php
index fc7dadc8a0..48bd5156fd 100644
--- a/src/gen/test/Model/VaultEventTypeTest.php
+++ b/src/gen/test/Model/VaultEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VirtualWebhooksTest.php b/src/gen/test/Model/VirtualWebhooksTest.php
index ee194444c8..40b27d5caa 100644
--- a/src/gen/test/Model/VirtualWebhooksTest.php
+++ b/src/gen/test/Model/VirtualWebhooksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WalletDetailsTest.php b/src/gen/test/Model/WalletDetailsTest.php
index 780ec7b744..c43132b0ab 100644
--- a/src/gen/test/Model/WalletDetailsTest.php
+++ b/src/gen/test/Model/WalletDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogAttemptsTest.php b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
index c105f4b673..028f1e0ec8 100644
--- a/src/gen/test/Model/WebhookEventLogAttemptsTest.php
+++ b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogServiceTest.php b/src/gen/test/Model/WebhookEventLogServiceTest.php
index e6739fb394..9c089b6255 100644
--- a/src/gen/test/Model/WebhookEventLogServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogTest.php b/src/gen/test/Model/WebhookEventLogTest.php
index 933d14f4e4..6d3ebe3fb9 100644
--- a/src/gen/test/Model/WebhookEventLogTest.php
+++ b/src/gen/test/Model/WebhookEventLogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
index eb47ec9ede..8d6ffd8750 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterTest.php b/src/gen/test/Model/WebhookEventLogsFilterTest.php
index 84068f8f1c..1eaecc66a9 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTest.php b/src/gen/test/Model/WebhookEventTest.php
index 05f90458fe..f980e06c71 100644
--- a/src/gen/test/Model/WebhookEventTest.php
+++ b/src/gen/test/Model/WebhookEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTypeTest.php b/src/gen/test/Model/WebhookEventTypeTest.php
index a4ed1da969..5afb874b8c 100644
--- a/src/gen/test/Model/WebhookEventTypeTest.php
+++ b/src/gen/test/Model/WebhookEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSubscriptionTest.php b/src/gen/test/Model/WebhookSubscriptionTest.php
index ecd0b35601..2e089c44bd 100644
--- a/src/gen/test/Model/WebhookSubscriptionTest.php
+++ b/src/gen/test/Model/WebhookSubscriptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSupportTest.php b/src/gen/test/Model/WebhookSupportTest.php
index d42f9f0b1a..bc3584680e 100644
--- a/src/gen/test/Model/WebhookSupportTest.php
+++ b/src/gen/test/Model/WebhookSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookTest.php b/src/gen/test/Model/WebhookTest.php
index a33593c125..741d2063ab 100644
--- a/src/gen/test/Model/WebhookTest.php
+++ b/src/gen/test/Model/WebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebsiteTest.php b/src/gen/test/Model/WebsiteTest.php
index 9652de6ff3..71565bd5c6 100644
--- a/src/gen/test/Model/WebsiteTest.php
+++ b/src/gen/test/Model/WebsiteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.2.2
+ * The version of the OpenAPI document: 10.3.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
From 9a2f9da870f8987de265328e91ee201dfe2cfa43 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 7 Feb 2024 21:01:02 +0000
Subject: [PATCH 7/9] Automated update by SDK Generator version:3.2.0
commit:47c5be7
---
src/gen/docs/models/BillLineItem.md | 6 ++++--
src/gen/docs/models/InvoiceLineItem.md | 2 ++
src/gen/lib/Model/BillLineItem.php | 10 ++++++----
src/gen/lib/Model/InvoiceLineItem.php | 2 ++
4 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/src/gen/docs/models/BillLineItem.md b/src/gen/docs/models/BillLineItem.md
index bf1a71129e..a6ed25b836 100644
--- a/src/gen/docs/models/BillLineItem.md
+++ b/src/gen/docs/models/BillLineItem.md
@@ -37,9 +37,11 @@ Name | Type | Description | Notes
## Enum: BillLineItem.type
-* `ITEM` (value: `'expense_item'`)
+* `EXPENSE_ITEM` (value: `'expense_item'`)
-* `ACCOUNT` (value: `'expense_account'`)
+* `EXPENSE_ACCOUNT` (value: `'expense_account'`)
+
+* `OTHER` (value: `'other'`)
diff --git a/src/gen/docs/models/InvoiceLineItem.md b/src/gen/docs/models/InvoiceLineItem.md
index 759f198937..94df2c46dc 100644
--- a/src/gen/docs/models/InvoiceLineItem.md
+++ b/src/gen/docs/models/InvoiceLineItem.md
@@ -45,6 +45,8 @@ Name | Type | Description | Notes
* `SUB_TOTAL` (value: `'sub_total'`)
+* `OTHER` (value: `'other'`)
+
diff --git a/src/gen/lib/Model/BillLineItem.php b/src/gen/lib/Model/BillLineItem.php
index b7f6e5112d..82ec2f126c 100644
--- a/src/gen/lib/Model/BillLineItem.php
+++ b/src/gen/lib/Model/BillLineItem.php
@@ -272,8 +272,9 @@ public function getModelName()
return self::$openAPIModelName;
}
- const TYPE_ITEM = 'expense_item';
- const TYPE_ACCOUNT = 'expense_account';
+ const TYPE_EXPENSE_ITEM = 'expense_item';
+ const TYPE_EXPENSE_ACCOUNT = 'expense_account';
+ const TYPE_OTHER = 'other';
/**
* Gets allowable values of the enum
@@ -283,8 +284,9 @@ public function getModelName()
public function getTypeAllowableValues()
{
return [
- self::TYPE_ITEM,
- self::TYPE_ACCOUNT,
+ self::TYPE_EXPENSE_ITEM,
+ self::TYPE_EXPENSE_ACCOUNT,
+ self::TYPE_OTHER,
];
}
diff --git a/src/gen/lib/Model/InvoiceLineItem.php b/src/gen/lib/Model/InvoiceLineItem.php
index 028c664db6..c617093995 100644
--- a/src/gen/lib/Model/InvoiceLineItem.php
+++ b/src/gen/lib/Model/InvoiceLineItem.php
@@ -276,6 +276,7 @@ public function getModelName()
const TYPE_DISCOUNT = 'discount';
const TYPE_INFO = 'info';
const TYPE_SUB_TOTAL = 'sub_total';
+ const TYPE_OTHER = 'other';
/**
* Gets allowable values of the enum
@@ -289,6 +290,7 @@ public function getTypeAllowableValues()
self::TYPE_DISCOUNT,
self::TYPE_INFO,
self::TYPE_SUB_TOTAL,
+ self::TYPE_OTHER,
];
}
From 483686edfa2e0f2d83e612e5c71a77041fd74dd1 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 15 Feb 2024 22:37:28 +0000
Subject: [PATCH 8/9] Automated update by SDK Generator version:3.2.0
commit:9144b5b
---
src/gen/docs/models/Bill.md | 2 ++
src/gen/docs/models/CreditNote.md | 2 ++
src/gen/docs/models/Customer.md | 2 ++
src/gen/docs/models/Invoice.md | 2 ++
src/gen/docs/models/JournalEntry.md | 2 +-
src/gen/docs/models/Payment.md | 2 ++
src/gen/docs/models/PurchaseOrder.md | 2 ++
src/gen/docs/models/Supplier.md | 2 ++
src/gen/lib/Model/Bill.php | 30 ++++++++++++++++++++++++
src/gen/lib/Model/CreditNote.php | 30 ++++++++++++++++++++++++
src/gen/lib/Model/Customer.php | 30 ++++++++++++++++++++++++
src/gen/lib/Model/Invoice.php | 30 ++++++++++++++++++++++++
src/gen/lib/Model/JournalEntry.php | 2 +-
src/gen/lib/Model/Payment.php | 30 ++++++++++++++++++++++++
src/gen/lib/Model/PurchaseOrder.php | 30 ++++++++++++++++++++++++
src/gen/lib/Model/Supplier.php | 30 ++++++++++++++++++++++++
src/gen/test/Model/BillTest.php | 9 +++++++
src/gen/test/Model/CreditNoteTest.php | 9 +++++++
src/gen/test/Model/CustomerTest.php | 9 +++++++
src/gen/test/Model/InvoiceTest.php | 9 +++++++
src/gen/test/Model/PaymentTest.php | 9 +++++++
src/gen/test/Model/PurchaseOrderTest.php | 9 +++++++
src/gen/test/Model/SupplierTest.php | 9 +++++++
23 files changed, 289 insertions(+), 2 deletions(-)
diff --git a/src/gen/docs/models/Bill.md b/src/gen/docs/models/Bill.md
index 5ad2b97486..ed7b16d4ea 100644
--- a/src/gen/docs/models/Bill.md
+++ b/src/gen/docs/models/Bill.md
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
`downstream_id` | **string** | The third-party API ID of original entity | [optional]
`bill_number` | **string** | Reference to supplier bill number | [optional]
`supplier` | [**\Apideck\Client\Model\LinkedSupplier**](LinkedSupplier.md) | | [optional]
+`company_id` | **string** | The company or subsidiary id the transaction belongs to | [optional]
`currency` | [**\Apideck\Client\Model\Currency**](Currency.md) | | [optional]
`currency_rate` | **float** | Currency Exchange Rate at the time entity was recorded/generated. | [optional]
`tax_inclusive` | **bool** | Amounts are including tax | [optional]
@@ -73,6 +74,7 @@ Name | Type | Description | Notes
* [`LinkedSupplier`](LinkedSupplier.md)
+
* [`Currency`](Currency.md)
diff --git a/src/gen/docs/models/CreditNote.md b/src/gen/docs/models/CreditNote.md
index e53d21240e..8520f1b28b 100644
--- a/src/gen/docs/models/CreditNote.md
+++ b/src/gen/docs/models/CreditNote.md
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
`total_amount` | **float** | Amount of transaction |
`number` | **string** | Credit note number. | [optional]
`customer` | [**\Apideck\Client\Model\LinkedCustomer**](LinkedCustomer.md) | | [optional]
+`company_id` | **string** | The company or subsidiary id the transaction belongs to | [optional]
`currency` | [**\Apideck\Client\Model\Currency**](Currency.md) | | [optional]
`currency_rate` | **float** | Currency Exchange Rate at the time entity was recorded/generated. | [optional]
`tax_inclusive` | **bool** | Amounts are including tax | [optional]
@@ -71,6 +72,7 @@ Name | Type | Description | Notes
* [`LinkedCustomer`](LinkedCustomer.md)
+
* [`Currency`](Currency.md)
diff --git a/src/gen/docs/models/Customer.md b/src/gen/docs/models/Customer.md
index 314e73ba24..e3920a664e 100644
--- a/src/gen/docs/models/Customer.md
+++ b/src/gen/docs/models/Customer.md
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
`display_id` | **string** | Display ID | [optional]
`display_name` | **string** | Display name | [optional]
`company_name` | **string** | The name of the company. | [optional]
+`company_id` | **string** | The company or subsidiary id the transaction belongs to | [optional]
`title` | **string** | The job title of the person. | [optional]
`first_name` | **string** | The first name of the person. | [optional]
`middle_name` | **string** | Middle name of the person. | [optional]
@@ -72,6 +73,7 @@ Name | Type | Description | Notes
+
* [`Address`](Address.md)
* [`PhoneNumber`](PhoneNumber.md)
* [`Email`](Email.md)
diff --git a/src/gen/docs/models/Invoice.md b/src/gen/docs/models/Invoice.md
index 41259e36de..2f747c9135 100644
--- a/src/gen/docs/models/Invoice.md
+++ b/src/gen/docs/models/Invoice.md
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
`type` | **string** | Invoice type | [optional]
`number` | **string** | Invoice number. | [optional]
`customer` | [**\Apideck\Client\Model\LinkedCustomer**](LinkedCustomer.md) | | [optional]
+`company_id` | **string** | The company or subsidiary id the transaction belongs to | [optional]
`invoice_date` | **\DateTime** | Date invoice was issued - YYYY-MM-DD. | [optional]
`due_date` | **\DateTime** | The invoice due date is the date on which a payment or invoice is scheduled to be received by the seller - YYYY-MM-DD. | [optional]
`terms` | **string** | Terms of payment. | [optional]
@@ -107,6 +108,7 @@ Name | Type | Description | Notes
+
* [`Currency`](Currency.md)
diff --git a/src/gen/docs/models/JournalEntry.md b/src/gen/docs/models/JournalEntry.md
index 9a580a425e..ab198bf9a2 100644
--- a/src/gen/docs/models/JournalEntry.md
+++ b/src/gen/docs/models/JournalEntry.md
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
`title` | **string** | Journal entry title | [optional]
`currency_rate` | **float** | Currency Exchange Rate at the time entity was recorded/generated. | [optional]
`currency` | [**\Apideck\Client\Model\Currency**](Currency.md) | | [optional]
-`company_id` | **string** | The company or subsidiary the journal entry belongs to | [optional]
+`company_id` | **string** | The company or subsidiary id the transaction belongs to | [optional]
`line_items` | [**\Apideck\Client\Model\JournalEntryLineItem[]**](JournalEntryLineItem.md) | Requires a minimum of 2 line items that sum to 0 | [optional]
`memo` | **string** | Reference for the journal entry. | [optional]
`posted_at` | **\DateTime** | This is the date on which the journal entry was added. This can be different from the creation date and can also be backdated. | [optional]
diff --git a/src/gen/docs/models/Payment.md b/src/gen/docs/models/Payment.md
index 682f2a5395..f268f183cb 100644
--- a/src/gen/docs/models/Payment.md
+++ b/src/gen/docs/models/Payment.md
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
`account` | [**\Apideck\Client\Model\LinkedLedgerAccount**](LinkedLedgerAccount.md) | | [optional]
`customer` | [**\Apideck\Client\Model\LinkedCustomer**](LinkedCustomer.md) | | [optional]
`supplier` | [**\Apideck\Client\Model\LinkedSupplier**](LinkedSupplier.md) | | [optional]
+`company_id` | **string** | The company or subsidiary id the transaction belongs to | [optional]
`reconciled` | **bool** | Payment has been reconciled | [optional]
`status` | **string** | Status of payment | [optional]
`type` | **string** | Type of payment | [optional]
@@ -94,6 +95,7 @@ Name | Type | Description | Notes
+
* [`PaymentAllocations`](PaymentAllocations.md)
diff --git a/src/gen/docs/models/PurchaseOrder.md b/src/gen/docs/models/PurchaseOrder.md
index 81b29880f3..6a98c6f244 100644
--- a/src/gen/docs/models/PurchaseOrder.md
+++ b/src/gen/docs/models/PurchaseOrder.md
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
`po_number` | **string** | A PO Number uniquely identifies a purchase order and is generally defined by the buyer. | [optional]
`reference` | **string** | Optional purchase order reference. | [optional]
`supplier` | [**\Apideck\Client\Model\LinkedSupplier**](LinkedSupplier.md) | | [optional]
+`company_id` | **string** | The company or subsidiary id the transaction belongs to | [optional]
`status` | **string** | | [optional]
`issued_date` | **\DateTime** | Date purchase order was issued - YYYY-MM-DD. | [optional]
`delivery_date` | **\DateTime** | The date on which the purchase order is to be delivered - YYYY-MM-DD. | [optional]
@@ -72,6 +73,7 @@ Name | Type | Description | Notes
+
* [`Currency`](Currency.md)
diff --git a/src/gen/docs/models/Supplier.md b/src/gen/docs/models/Supplier.md
index a256911d09..cd6712ff35 100644
--- a/src/gen/docs/models/Supplier.md
+++ b/src/gen/docs/models/Supplier.md
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
`display_id` | **string** | Display ID | [optional]
`display_name` | **string** | Display name | [optional]
`company_name` | **string** | The name of the company. | [optional]
+`company_id` | **string** | The company or subsidiary id the transaction belongs to | [optional]
`title` | **string** | The job title of the person. | [optional]
`first_name` | **string** | The first name of the person. | [optional]
`middle_name` | **string** | Middle name of the person. | [optional]
@@ -69,6 +70,7 @@ Name | Type | Description | Notes
+
* [`Address`](Address.md)
* [`PhoneNumber`](PhoneNumber.md)
* [`Email`](Email.md)
diff --git a/src/gen/lib/Model/Bill.php b/src/gen/lib/Model/Bill.php
index 90d2d9a2ea..0305e698c1 100644
--- a/src/gen/lib/Model/Bill.php
+++ b/src/gen/lib/Model/Bill.php
@@ -63,6 +63,7 @@ class Bill implements ModelInterface, ArrayAccess, \JsonSerializable
'downstream_id' => 'string',
'bill_number' => 'string',
'supplier' => '\Apideck\Client\Model\LinkedSupplier',
+ 'company_id' => 'string',
'currency' => '\Apideck\Client\Model\Currency',
'currency_rate' => 'float',
'tax_inclusive' => 'bool',
@@ -108,6 +109,7 @@ class Bill implements ModelInterface, ArrayAccess, \JsonSerializable
'downstream_id' => null,
'bill_number' => null,
'supplier' => null,
+ 'company_id' => null,
'currency' => null,
'currency_rate' => null,
'tax_inclusive' => null,
@@ -172,6 +174,7 @@ public static function openAPIFormats()
'downstream_id' => 'downstream_id',
'bill_number' => 'bill_number',
'supplier' => 'supplier',
+ 'company_id' => 'company_id',
'currency' => 'currency',
'currency_rate' => 'currency_rate',
'tax_inclusive' => 'tax_inclusive',
@@ -215,6 +218,7 @@ public static function openAPIFormats()
'downstream_id' => 'setDownstreamId',
'bill_number' => 'setBillNumber',
'supplier' => 'setSupplier',
+ 'company_id' => 'setCompanyId',
'currency' => 'setCurrency',
'currency_rate' => 'setCurrencyRate',
'tax_inclusive' => 'setTaxInclusive',
@@ -258,6 +262,7 @@ public static function openAPIFormats()
'downstream_id' => 'getDownstreamId',
'bill_number' => 'getBillNumber',
'supplier' => 'getSupplier',
+ 'company_id' => 'getCompanyId',
'currency' => 'getCurrency',
'currency_rate' => 'getCurrencyRate',
'tax_inclusive' => 'getTaxInclusive',
@@ -379,6 +384,7 @@ public function __construct(array $data = null)
$this->container['downstream_id'] = $data['downstream_id'] ?? null;
$this->container['bill_number'] = $data['bill_number'] ?? null;
$this->container['supplier'] = $data['supplier'] ?? null;
+ $this->container['company_id'] = $data['company_id'] ?? null;
$this->container['currency'] = $data['currency'] ?? null;
$this->container['currency_rate'] = $data['currency_rate'] ?? null;
$this->container['tax_inclusive'] = $data['tax_inclusive'] ?? null;
@@ -541,6 +547,30 @@ public function setSupplier($supplier)
return $this;
}
+ /**
+ * Gets company_id
+ *
+ * @return string|null
+ */
+ public function getCompanyId()
+ {
+ return $this->container['company_id'];
+ }
+
+ /**
+ * Sets company_id
+ *
+ * @param string|null $company_id The company or subsidiary id the transaction belongs to
+ *
+ * @return self
+ */
+ public function setCompanyId($company_id)
+ {
+ $this->container['company_id'] = $company_id;
+
+ return $this;
+ }
+
/**
* Gets currency
*
diff --git a/src/gen/lib/Model/CreditNote.php b/src/gen/lib/Model/CreditNote.php
index cd649191e3..16d84bace9 100644
--- a/src/gen/lib/Model/CreditNote.php
+++ b/src/gen/lib/Model/CreditNote.php
@@ -63,6 +63,7 @@ class CreditNote implements ModelInterface, ArrayAccess, \JsonSerializable
'total_amount' => 'float',
'number' => 'string',
'customer' => '\Apideck\Client\Model\LinkedCustomer',
+ 'company_id' => 'string',
'currency' => '\Apideck\Client\Model\Currency',
'currency_rate' => 'float',
'tax_inclusive' => 'bool',
@@ -101,6 +102,7 @@ class CreditNote implements ModelInterface, ArrayAccess, \JsonSerializable
'total_amount' => null,
'number' => null,
'customer' => null,
+ 'company_id' => null,
'currency' => null,
'currency_rate' => null,
'tax_inclusive' => null,
@@ -158,6 +160,7 @@ public static function openAPIFormats()
'total_amount' => 'total_amount',
'number' => 'number',
'customer' => 'customer',
+ 'company_id' => 'company_id',
'currency' => 'currency',
'currency_rate' => 'currency_rate',
'tax_inclusive' => 'tax_inclusive',
@@ -194,6 +197,7 @@ public static function openAPIFormats()
'total_amount' => 'setTotalAmount',
'number' => 'setNumber',
'customer' => 'setCustomer',
+ 'company_id' => 'setCompanyId',
'currency' => 'setCurrency',
'currency_rate' => 'setCurrencyRate',
'tax_inclusive' => 'setTaxInclusive',
@@ -230,6 +234,7 @@ public static function openAPIFormats()
'total_amount' => 'getTotalAmount',
'number' => 'getNumber',
'customer' => 'getCustomer',
+ 'company_id' => 'getCompanyId',
'currency' => 'getCurrency',
'currency_rate' => 'getCurrencyRate',
'tax_inclusive' => 'getTaxInclusive',
@@ -353,6 +358,7 @@ public function __construct(array $data = null)
$this->container['total_amount'] = $data['total_amount'] ?? null;
$this->container['number'] = $data['number'] ?? null;
$this->container['customer'] = $data['customer'] ?? null;
+ $this->container['company_id'] = $data['company_id'] ?? null;
$this->container['currency'] = $data['currency'] ?? null;
$this->container['currency_rate'] = $data['currency_rate'] ?? null;
$this->container['tax_inclusive'] = $data['tax_inclusive'] ?? null;
@@ -523,6 +529,30 @@ public function setCustomer($customer)
return $this;
}
+ /**
+ * Gets company_id
+ *
+ * @return string|null
+ */
+ public function getCompanyId()
+ {
+ return $this->container['company_id'];
+ }
+
+ /**
+ * Sets company_id
+ *
+ * @param string|null $company_id The company or subsidiary id the transaction belongs to
+ *
+ * @return self
+ */
+ public function setCompanyId($company_id)
+ {
+ $this->container['company_id'] = $company_id;
+
+ return $this;
+ }
+
/**
* Gets currency
*
diff --git a/src/gen/lib/Model/Customer.php b/src/gen/lib/Model/Customer.php
index c222056a55..03e624ca8f 100644
--- a/src/gen/lib/Model/Customer.php
+++ b/src/gen/lib/Model/Customer.php
@@ -64,6 +64,7 @@ class Customer implements ModelInterface, ArrayAccess, \JsonSerializable
'display_id' => 'string',
'display_name' => 'string',
'company_name' => 'string',
+ 'company_id' => 'string',
'title' => 'string',
'first_name' => 'string',
'middle_name' => 'string',
@@ -106,6 +107,7 @@ class Customer implements ModelInterface, ArrayAccess, \JsonSerializable
'display_id' => null,
'display_name' => null,
'company_name' => null,
+ 'company_id' => null,
'title' => null,
'first_name' => null,
'middle_name' => null,
@@ -167,6 +169,7 @@ public static function openAPIFormats()
'display_id' => 'display_id',
'display_name' => 'display_name',
'company_name' => 'company_name',
+ 'company_id' => 'company_id',
'title' => 'title',
'first_name' => 'first_name',
'middle_name' => 'middle_name',
@@ -207,6 +210,7 @@ public static function openAPIFormats()
'display_id' => 'setDisplayId',
'display_name' => 'setDisplayName',
'company_name' => 'setCompanyName',
+ 'company_id' => 'setCompanyId',
'title' => 'setTitle',
'first_name' => 'setFirstName',
'middle_name' => 'setMiddleName',
@@ -247,6 +251,7 @@ public static function openAPIFormats()
'display_id' => 'getDisplayId',
'display_name' => 'getDisplayName',
'company_name' => 'getCompanyName',
+ 'company_id' => 'getCompanyId',
'title' => 'getTitle',
'first_name' => 'getFirstName',
'middle_name' => 'getMiddleName',
@@ -359,6 +364,7 @@ public function __construct(array $data = null)
$this->container['display_id'] = $data['display_id'] ?? null;
$this->container['display_name'] = $data['display_name'] ?? null;
$this->container['company_name'] = $data['company_name'] ?? null;
+ $this->container['company_id'] = $data['company_id'] ?? null;
$this->container['title'] = $data['title'] ?? null;
$this->container['first_name'] = $data['first_name'] ?? null;
$this->container['middle_name'] = $data['middle_name'] ?? null;
@@ -544,6 +550,30 @@ public function setCompanyName($company_name)
return $this;
}
+ /**
+ * Gets company_id
+ *
+ * @return string|null
+ */
+ public function getCompanyId()
+ {
+ return $this->container['company_id'];
+ }
+
+ /**
+ * Sets company_id
+ *
+ * @param string|null $company_id The company or subsidiary id the transaction belongs to
+ *
+ * @return self
+ */
+ public function setCompanyId($company_id)
+ {
+ $this->container['company_id'] = $company_id;
+
+ return $this;
+ }
+
/**
* Gets title
*
diff --git a/src/gen/lib/Model/Invoice.php b/src/gen/lib/Model/Invoice.php
index f4e2307523..81411598f4 100644
--- a/src/gen/lib/Model/Invoice.php
+++ b/src/gen/lib/Model/Invoice.php
@@ -64,6 +64,7 @@ class Invoice implements ModelInterface, ArrayAccess, \JsonSerializable
'type' => 'string',
'number' => 'string',
'customer' => '\Apideck\Client\Model\LinkedCustomer',
+ 'company_id' => 'string',
'invoice_date' => '\DateTime',
'due_date' => '\DateTime',
'terms' => 'string',
@@ -116,6 +117,7 @@ class Invoice implements ModelInterface, ArrayAccess, \JsonSerializable
'type' => null,
'number' => null,
'customer' => null,
+ 'company_id' => null,
'invoice_date' => 'date',
'due_date' => 'date',
'terms' => null,
@@ -187,6 +189,7 @@ public static function openAPIFormats()
'type' => 'type',
'number' => 'number',
'customer' => 'customer',
+ 'company_id' => 'company_id',
'invoice_date' => 'invoice_date',
'due_date' => 'due_date',
'terms' => 'terms',
@@ -237,6 +240,7 @@ public static function openAPIFormats()
'type' => 'setType',
'number' => 'setNumber',
'customer' => 'setCustomer',
+ 'company_id' => 'setCompanyId',
'invoice_date' => 'setInvoiceDate',
'due_date' => 'setDueDate',
'terms' => 'setTerms',
@@ -287,6 +291,7 @@ public static function openAPIFormats()
'type' => 'getType',
'number' => 'getNumber',
'customer' => 'getCustomer',
+ 'company_id' => 'getCompanyId',
'invoice_date' => 'getInvoiceDate',
'due_date' => 'getDueDate',
'terms' => 'getTerms',
@@ -438,6 +443,7 @@ public function __construct(array $data = null)
$this->container['type'] = $data['type'] ?? null;
$this->container['number'] = $data['number'] ?? null;
$this->container['customer'] = $data['customer'] ?? null;
+ $this->container['company_id'] = $data['company_id'] ?? null;
$this->container['invoice_date'] = $data['invoice_date'] ?? null;
$this->container['due_date'] = $data['due_date'] ?? null;
$this->container['terms'] = $data['terms'] ?? null;
@@ -649,6 +655,30 @@ public function setCustomer($customer)
return $this;
}
+ /**
+ * Gets company_id
+ *
+ * @return string|null
+ */
+ public function getCompanyId()
+ {
+ return $this->container['company_id'];
+ }
+
+ /**
+ * Sets company_id
+ *
+ * @param string|null $company_id The company or subsidiary id the transaction belongs to
+ *
+ * @return self
+ */
+ public function setCompanyId($company_id)
+ {
+ $this->container['company_id'] = $company_id;
+
+ return $this;
+ }
+
/**
* Gets invoice_date
*
diff --git a/src/gen/lib/Model/JournalEntry.php b/src/gen/lib/Model/JournalEntry.php
index f55ae4cf53..f88301f43c 100644
--- a/src/gen/lib/Model/JournalEntry.php
+++ b/src/gen/lib/Model/JournalEntry.php
@@ -420,7 +420,7 @@ public function getCompanyId()
/**
* Sets company_id
*
- * @param string|null $company_id The company or subsidiary the journal entry belongs to
+ * @param string|null $company_id The company or subsidiary id the transaction belongs to
*
* @return self
*/
diff --git a/src/gen/lib/Model/Payment.php b/src/gen/lib/Model/Payment.php
index 3c275d7b77..dc9b563506 100644
--- a/src/gen/lib/Model/Payment.php
+++ b/src/gen/lib/Model/Payment.php
@@ -74,6 +74,7 @@ class Payment implements ModelInterface, ArrayAccess, \JsonSerializable
'account' => '\Apideck\Client\Model\LinkedLedgerAccount',
'customer' => '\Apideck\Client\Model\LinkedCustomer',
'supplier' => '\Apideck\Client\Model\LinkedSupplier',
+ 'company_id' => 'string',
'reconciled' => 'bool',
'status' => 'string',
'type' => 'string',
@@ -111,6 +112,7 @@ class Payment implements ModelInterface, ArrayAccess, \JsonSerializable
'account' => null,
'customer' => null,
'supplier' => null,
+ 'company_id' => null,
'reconciled' => null,
'status' => null,
'type' => null,
@@ -167,6 +169,7 @@ public static function openAPIFormats()
'account' => 'account',
'customer' => 'customer',
'supplier' => 'supplier',
+ 'company_id' => 'company_id',
'reconciled' => 'reconciled',
'status' => 'status',
'type' => 'type',
@@ -202,6 +205,7 @@ public static function openAPIFormats()
'account' => 'setAccount',
'customer' => 'setCustomer',
'supplier' => 'setSupplier',
+ 'company_id' => 'setCompanyId',
'reconciled' => 'setReconciled',
'status' => 'setStatus',
'type' => 'setType',
@@ -237,6 +241,7 @@ public static function openAPIFormats()
'account' => 'getAccount',
'customer' => 'getCustomer',
'supplier' => 'getSupplier',
+ 'company_id' => 'getCompanyId',
'reconciled' => 'getReconciled',
'status' => 'getStatus',
'type' => 'getType',
@@ -369,6 +374,7 @@ public function __construct(array $data = null)
$this->container['account'] = $data['account'] ?? null;
$this->container['customer'] = $data['customer'] ?? null;
$this->container['supplier'] = $data['supplier'] ?? null;
+ $this->container['company_id'] = $data['company_id'] ?? null;
$this->container['reconciled'] = $data['reconciled'] ?? null;
$this->container['status'] = $data['status'] ?? null;
$this->container['type'] = $data['type'] ?? null;
@@ -798,6 +804,30 @@ public function setSupplier($supplier)
return $this;
}
+ /**
+ * Gets company_id
+ *
+ * @return string|null
+ */
+ public function getCompanyId()
+ {
+ return $this->container['company_id'];
+ }
+
+ /**
+ * Sets company_id
+ *
+ * @param string|null $company_id The company or subsidiary id the transaction belongs to
+ *
+ * @return self
+ */
+ public function setCompanyId($company_id)
+ {
+ $this->container['company_id'] = $company_id;
+
+ return $this;
+ }
+
/**
* Gets reconciled
*
diff --git a/src/gen/lib/Model/PurchaseOrder.php b/src/gen/lib/Model/PurchaseOrder.php
index 5feedb3588..5ba3a2c296 100644
--- a/src/gen/lib/Model/PurchaseOrder.php
+++ b/src/gen/lib/Model/PurchaseOrder.php
@@ -64,6 +64,7 @@ class PurchaseOrder implements ModelInterface, ArrayAccess, \JsonSerializable
'po_number' => 'string',
'reference' => 'string',
'supplier' => '\Apideck\Client\Model\LinkedSupplier',
+ 'company_id' => 'string',
'status' => 'string',
'issued_date' => '\DateTime',
'delivery_date' => '\DateTime',
@@ -107,6 +108,7 @@ class PurchaseOrder implements ModelInterface, ArrayAccess, \JsonSerializable
'po_number' => null,
'reference' => null,
'supplier' => null,
+ 'company_id' => null,
'status' => null,
'issued_date' => 'date',
'delivery_date' => 'date',
@@ -169,6 +171,7 @@ public static function openAPIFormats()
'po_number' => 'po_number',
'reference' => 'reference',
'supplier' => 'supplier',
+ 'company_id' => 'company_id',
'status' => 'status',
'issued_date' => 'issued_date',
'delivery_date' => 'delivery_date',
@@ -210,6 +213,7 @@ public static function openAPIFormats()
'po_number' => 'setPoNumber',
'reference' => 'setReference',
'supplier' => 'setSupplier',
+ 'company_id' => 'setCompanyId',
'status' => 'setStatus',
'issued_date' => 'setIssuedDate',
'delivery_date' => 'setDeliveryDate',
@@ -251,6 +255,7 @@ public static function openAPIFormats()
'po_number' => 'getPoNumber',
'reference' => 'getReference',
'supplier' => 'getSupplier',
+ 'company_id' => 'getCompanyId',
'status' => 'getStatus',
'issued_date' => 'getIssuedDate',
'delivery_date' => 'getDeliveryDate',
@@ -366,6 +371,7 @@ public function __construct(array $data = null)
$this->container['po_number'] = $data['po_number'] ?? null;
$this->container['reference'] = $data['reference'] ?? null;
$this->container['supplier'] = $data['supplier'] ?? null;
+ $this->container['company_id'] = $data['company_id'] ?? null;
$this->container['status'] = $data['status'] ?? null;
$this->container['issued_date'] = $data['issued_date'] ?? null;
$this->container['delivery_date'] = $data['delivery_date'] ?? null;
@@ -549,6 +555,30 @@ public function setSupplier($supplier)
return $this;
}
+ /**
+ * Gets company_id
+ *
+ * @return string|null
+ */
+ public function getCompanyId()
+ {
+ return $this->container['company_id'];
+ }
+
+ /**
+ * Sets company_id
+ *
+ * @param string|null $company_id The company or subsidiary id the transaction belongs to
+ *
+ * @return self
+ */
+ public function setCompanyId($company_id)
+ {
+ $this->container['company_id'] = $company_id;
+
+ return $this;
+ }
+
/**
* Gets status
*
diff --git a/src/gen/lib/Model/Supplier.php b/src/gen/lib/Model/Supplier.php
index c453cf2f61..2210274b65 100644
--- a/src/gen/lib/Model/Supplier.php
+++ b/src/gen/lib/Model/Supplier.php
@@ -64,6 +64,7 @@ class Supplier implements ModelInterface, ArrayAccess, \JsonSerializable
'display_id' => 'string',
'display_name' => 'string',
'company_name' => 'string',
+ 'company_id' => 'string',
'title' => 'string',
'first_name' => 'string',
'middle_name' => 'string',
@@ -104,6 +105,7 @@ class Supplier implements ModelInterface, ArrayAccess, \JsonSerializable
'display_id' => null,
'display_name' => null,
'company_name' => null,
+ 'company_id' => null,
'title' => null,
'first_name' => null,
'middle_name' => null,
@@ -163,6 +165,7 @@ public static function openAPIFormats()
'display_id' => 'display_id',
'display_name' => 'display_name',
'company_name' => 'company_name',
+ 'company_id' => 'company_id',
'title' => 'title',
'first_name' => 'first_name',
'middle_name' => 'middle_name',
@@ -201,6 +204,7 @@ public static function openAPIFormats()
'display_id' => 'setDisplayId',
'display_name' => 'setDisplayName',
'company_name' => 'setCompanyName',
+ 'company_id' => 'setCompanyId',
'title' => 'setTitle',
'first_name' => 'setFirstName',
'middle_name' => 'setMiddleName',
@@ -239,6 +243,7 @@ public static function openAPIFormats()
'display_id' => 'getDisplayId',
'display_name' => 'getDisplayName',
'company_name' => 'getCompanyName',
+ 'company_id' => 'getCompanyId',
'title' => 'getTitle',
'first_name' => 'getFirstName',
'middle_name' => 'getMiddleName',
@@ -349,6 +354,7 @@ public function __construct(array $data = null)
$this->container['display_id'] = $data['display_id'] ?? null;
$this->container['display_name'] = $data['display_name'] ?? null;
$this->container['company_name'] = $data['company_name'] ?? null;
+ $this->container['company_id'] = $data['company_id'] ?? null;
$this->container['title'] = $data['title'] ?? null;
$this->container['first_name'] = $data['first_name'] ?? null;
$this->container['middle_name'] = $data['middle_name'] ?? null;
@@ -532,6 +538,30 @@ public function setCompanyName($company_name)
return $this;
}
+ /**
+ * Gets company_id
+ *
+ * @return string|null
+ */
+ public function getCompanyId()
+ {
+ return $this->container['company_id'];
+ }
+
+ /**
+ * Sets company_id
+ *
+ * @param string|null $company_id The company or subsidiary id the transaction belongs to
+ *
+ * @return self
+ */
+ public function setCompanyId($company_id)
+ {
+ $this->container['company_id'] = $company_id;
+
+ return $this;
+ }
+
/**
* Gets title
*
diff --git a/src/gen/test/Model/BillTest.php b/src/gen/test/Model/BillTest.php
index 3ca57b6f0b..2df49ea3af 100644
--- a/src/gen/test/Model/BillTest.php
+++ b/src/gen/test/Model/BillTest.php
@@ -115,6 +115,15 @@ public function testPropertySupplier()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test attribute "company_id"
+ */
+ public function testPropertyCompanyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test attribute "currency"
*/
diff --git a/src/gen/test/Model/CreditNoteTest.php b/src/gen/test/Model/CreditNoteTest.php
index 9640a51d93..c57182b86a 100644
--- a/src/gen/test/Model/CreditNoteTest.php
+++ b/src/gen/test/Model/CreditNoteTest.php
@@ -115,6 +115,15 @@ public function testPropertyCustomer()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test attribute "company_id"
+ */
+ public function testPropertyCompanyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test attribute "currency"
*/
diff --git a/src/gen/test/Model/CustomerTest.php b/src/gen/test/Model/CustomerTest.php
index b437eb97e1..0611969a17 100644
--- a/src/gen/test/Model/CustomerTest.php
+++ b/src/gen/test/Model/CustomerTest.php
@@ -124,6 +124,15 @@ public function testPropertyCompanyName()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test attribute "company_id"
+ */
+ public function testPropertyCompanyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test attribute "title"
*/
diff --git a/src/gen/test/Model/InvoiceTest.php b/src/gen/test/Model/InvoiceTest.php
index 4f4043370c..c77e806e2d 100644
--- a/src/gen/test/Model/InvoiceTest.php
+++ b/src/gen/test/Model/InvoiceTest.php
@@ -124,6 +124,15 @@ public function testPropertyCustomer()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test attribute "company_id"
+ */
+ public function testPropertyCompanyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test attribute "invoice_date"
*/
diff --git a/src/gen/test/Model/PaymentTest.php b/src/gen/test/Model/PaymentTest.php
index 8a7130b9f5..6121ad16c0 100644
--- a/src/gen/test/Model/PaymentTest.php
+++ b/src/gen/test/Model/PaymentTest.php
@@ -214,6 +214,15 @@ public function testPropertySupplier()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test attribute "company_id"
+ */
+ public function testPropertyCompanyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test attribute "reconciled"
*/
diff --git a/src/gen/test/Model/PurchaseOrderTest.php b/src/gen/test/Model/PurchaseOrderTest.php
index 321f3a1b4c..651fefa3a7 100644
--- a/src/gen/test/Model/PurchaseOrderTest.php
+++ b/src/gen/test/Model/PurchaseOrderTest.php
@@ -124,6 +124,15 @@ public function testPropertySupplier()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test attribute "company_id"
+ */
+ public function testPropertyCompanyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test attribute "status"
*/
diff --git a/src/gen/test/Model/SupplierTest.php b/src/gen/test/Model/SupplierTest.php
index 89e189e03b..6ba0e457cb 100644
--- a/src/gen/test/Model/SupplierTest.php
+++ b/src/gen/test/Model/SupplierTest.php
@@ -124,6 +124,15 @@ public function testPropertyCompanyName()
$this->markTestIncomplete('Not implemented');
}
+ /**
+ * Test attribute "company_id"
+ */
+ public function testPropertyCompanyId()
+ {
+ // TODO: implement
+ $this->markTestIncomplete('Not implemented');
+ }
+
/**
* Test attribute "title"
*/
From 7fa35641896d8d529fb266bc770e4d7c3421b667 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 20 Feb 2024 15:24:31 +0000
Subject: [PATCH 9/9] Automated update by SDK Generator version:3.2.0
commit:380666c
---
src/gen/docs/models/UnauthorizedResponse.md | 10 +++++++++-
src/gen/docs/models/UnprocessableResponse.md | 10 +++++++++-
src/gen/lib/Api/AccountingApi.php | 2 +-
src/gen/lib/Api/AtsApi.php | 2 +-
src/gen/lib/Api/ConnectorApi.php | 2 +-
src/gen/lib/Api/CrmApi.php | 2 +-
src/gen/lib/Api/EcommerceApi.php | 2 +-
src/gen/lib/Api/FileStorageApi.php | 2 +-
src/gen/lib/Api/HrisApi.php | 2 +-
src/gen/lib/Api/IssueTrackingApi.php | 2 +-
src/gen/lib/Api/LeadApi.php | 2 +-
src/gen/lib/Api/PosApi.php | 2 +-
src/gen/lib/Api/SmsApi.php | 2 +-
src/gen/lib/Api/VaultApi.php | 2 +-
src/gen/lib/Api/WebhookApi.php | 2 +-
src/gen/lib/ApiException.php | 2 +-
src/gen/lib/Configuration.php | 4 ++--
src/gen/lib/HeaderSelector.php | 2 +-
src/gen/lib/Model/AccountingDepartment.php | 2 +-
src/gen/lib/Model/AccountingDepartmentsFilter.php | 2 +-
src/gen/lib/Model/AccountingEventType.php | 2 +-
src/gen/lib/Model/AccountingLocation.php | 2 +-
src/gen/lib/Model/AccountingLocationsFilter.php | 2 +-
src/gen/lib/Model/ActivitiesFilter.php | 2 +-
src/gen/lib/Model/ActivitiesSort.php | 2 +-
src/gen/lib/Model/Activity.php | 2 +-
src/gen/lib/Model/ActivityAttendee.php | 2 +-
src/gen/lib/Model/Address.php | 2 +-
src/gen/lib/Model/Api.php | 2 +-
src/gen/lib/Model/ApiResource.php | 2 +-
src/gen/lib/Model/ApiResourceCoverage.php | 2 +-
src/gen/lib/Model/ApiResourceCoverageCoverage.php | 2 +-
src/gen/lib/Model/ApiResourceLinkedResources.php | 2 +-
src/gen/lib/Model/ApiResources.php | 2 +-
src/gen/lib/Model/ApiStatus.php | 2 +-
src/gen/lib/Model/ApisFilter.php | 2 +-
src/gen/lib/Model/Applicant.php | 2 +-
src/gen/lib/Model/ApplicantSocialLinks.php | 2 +-
src/gen/lib/Model/ApplicantWebsites.php | 2 +-
src/gen/lib/Model/ApplicantsFilter.php | 2 +-
src/gen/lib/Model/Application.php | 2 +-
src/gen/lib/Model/ApplicationStage.php | 2 +-
src/gen/lib/Model/Assignee.php | 2 +-
src/gen/lib/Model/AtsActivity.php | 2 +-
src/gen/lib/Model/AtsEventType.php | 2 +-
src/gen/lib/Model/AuthType.php | 2 +-
src/gen/lib/Model/BadRequestResponse.php | 2 +-
src/gen/lib/Model/BalanceSheet.php | 2 +-
src/gen/lib/Model/BalanceSheetAssets.php | 2 +-
src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php | 2 +-
.../Model/BalanceSheetAssetsCurrentAssetsAccounts.php | 2 +-
src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php | 2 +-
.../Model/BalanceSheetAssetsFixedAssetsAccounts.php | 2 +-
src/gen/lib/Model/BalanceSheetEquity.php | 2 +-
src/gen/lib/Model/BalanceSheetEquityItems.php | 2 +-
src/gen/lib/Model/BalanceSheetFilter.php | 2 +-
src/gen/lib/Model/BalanceSheetLiabilities.php | 2 +-
src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php | 2 +-
src/gen/lib/Model/BankAccount.php | 2 +-
src/gen/lib/Model/Benefit.php | 2 +-
src/gen/lib/Model/Bill.php | 2 +-
src/gen/lib/Model/BillLineItem.php | 2 +-
src/gen/lib/Model/BillsFilter.php | 2 +-
src/gen/lib/Model/BillsSort.php | 2 +-
src/gen/lib/Model/Branch.php | 2 +-
src/gen/lib/Model/CashDetails.php | 2 +-
src/gen/lib/Model/Collection.php | 2 +-
src/gen/lib/Model/CollectionTag.php | 2 +-
src/gen/lib/Model/CollectionTicketComment.php | 2 +-
src/gen/lib/Model/CollectionUser.php | 2 +-
src/gen/lib/Model/CollectionsSort.php | 2 +-
src/gen/lib/Model/CommentsSort.php | 2 +-
src/gen/lib/Model/CompaniesFilter.php | 2 +-
src/gen/lib/Model/CompaniesSort.php | 2 +-
src/gen/lib/Model/Company.php | 2 +-
src/gen/lib/Model/CompanyInfo.php | 2 +-
src/gen/lib/Model/CompanyRowType.php | 2 +-
src/gen/lib/Model/Compensation.php | 2 +-
src/gen/lib/Model/Connection.php | 2 +-
src/gen/lib/Model/ConnectionConfiguration.php | 2 +-
src/gen/lib/Model/ConnectionDefaults.php | 2 +-
src/gen/lib/Model/ConnectionImportData.php | 2 +-
src/gen/lib/Model/ConnectionImportDataCredentials.php | 2 +-
src/gen/lib/Model/ConnectionMetadata.php | 2 +-
src/gen/lib/Model/ConnectionState.php | 2 +-
src/gen/lib/Model/ConnectionWebhook.php | 2 +-
src/gen/lib/Model/Connector.php | 2 +-
src/gen/lib/Model/ConnectorDoc.php | 2 +-
src/gen/lib/Model/ConnectorEvent.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes.php | 2 +-
src/gen/lib/Model/ConnectorOauthScopes1.php | 2 +-
src/gen/lib/Model/ConnectorResource.php | 2 +-
src/gen/lib/Model/ConnectorSetting.php | 2 +-
src/gen/lib/Model/ConnectorStatus.php | 2 +-
src/gen/lib/Model/ConnectorTlsSupport.php | 2 +-
src/gen/lib/Model/ConnectorUnifiedApis.php | 2 +-
src/gen/lib/Model/ConnectorsFilter.php | 2 +-
src/gen/lib/Model/Consumer.php | 2 +-
src/gen/lib/Model/ConsumerConnection.php | 2 +-
src/gen/lib/Model/ConsumerMetadata.php | 2 +-
.../Model/ConsumerRequestCountsInDateRangeResponse.php | 2 +-
.../ConsumerRequestCountsInDateRangeResponseData.php | 2 +-
src/gen/lib/Model/Contact.php | 2 +-
src/gen/lib/Model/ContactsFilter.php | 2 +-
src/gen/lib/Model/ContactsSort.php | 2 +-
src/gen/lib/Model/CopyFolderRequest.php | 2 +-
.../lib/Model/CreateAccountingDepartmentResponse.php | 2 +-
src/gen/lib/Model/CreateAccountingLocationResponse.php | 2 +-
src/gen/lib/Model/CreateActivityResponse.php | 2 +-
src/gen/lib/Model/CreateApplicantResponse.php | 2 +-
src/gen/lib/Model/CreateApplicationResponse.php | 2 +-
src/gen/lib/Model/CreateBillResponse.php | 2 +-
src/gen/lib/Model/CreateCommentResponse.php | 2 +-
src/gen/lib/Model/CreateCompanyResponse.php | 2 +-
src/gen/lib/Model/CreateConnectionResponse.php | 2 +-
src/gen/lib/Model/CreateConsumerResponse.php | 2 +-
src/gen/lib/Model/CreateContactResponse.php | 2 +-
src/gen/lib/Model/CreateCreditNoteResponse.php | 2 +-
src/gen/lib/Model/CreateCustomMappingRequest.php | 2 +-
src/gen/lib/Model/CreateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/CreateCustomerResponse.php | 2 +-
src/gen/lib/Model/CreateDepartmentResponse.php | 2 +-
src/gen/lib/Model/CreateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/CreateDriveResponse.php | 2 +-
src/gen/lib/Model/CreateEcommerceCustomerResponse.php | 2 +-
src/gen/lib/Model/CreateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/CreateEmployeeResponse.php | 2 +-
src/gen/lib/Model/CreateFileRequest.php | 2 +-
src/gen/lib/Model/CreateFileResponse.php | 2 +-
src/gen/lib/Model/CreateFolderRequest.php | 2 +-
src/gen/lib/Model/CreateFolderResponse.php | 2 +-
src/gen/lib/Model/CreateHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/CreateInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/CreateInvoiceResponse.php | 2 +-
src/gen/lib/Model/CreateItemResponse.php | 2 +-
src/gen/lib/Model/CreateJobResponse.php | 2 +-
src/gen/lib/Model/CreateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/CreateLeadResponse.php | 2 +-
src/gen/lib/Model/CreateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/CreateLocationResponse.php | 2 +-
src/gen/lib/Model/CreateMerchantResponse.php | 2 +-
src/gen/lib/Model/CreateMessageResponse.php | 2 +-
src/gen/lib/Model/CreateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/CreateModifierResponse.php | 2 +-
src/gen/lib/Model/CreateNoteResponse.php | 2 +-
src/gen/lib/Model/CreateOpportunityResponse.php | 2 +-
src/gen/lib/Model/CreateOrderResponse.php | 2 +-
src/gen/lib/Model/CreateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/CreatePaymentResponse.php | 2 +-
src/gen/lib/Model/CreatePipelineResponse.php | 2 +-
src/gen/lib/Model/CreatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/CreateProductResponse.php | 2 +-
src/gen/lib/Model/CreatePurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/CreateSessionResponse.php | 2 +-
src/gen/lib/Model/CreateSessionResponseData.php | 2 +-
src/gen/lib/Model/CreateSharedLinkResponse.php | 2 +-
src/gen/lib/Model/CreateSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/CreateSupplierResponse.php | 2 +-
src/gen/lib/Model/CreateTaxRateResponse.php | 2 +-
src/gen/lib/Model/CreateTenderResponse.php | 2 +-
src/gen/lib/Model/CreateTicketResponse.php | 2 +-
src/gen/lib/Model/CreateTimeOffRequestResponse.php | 2 +-
src/gen/lib/Model/CreateUploadSessionRequest.php | 2 +-
src/gen/lib/Model/CreateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/CreateUserResponse.php | 2 +-
src/gen/lib/Model/CreateWebhookRequest.php | 2 +-
src/gen/lib/Model/CreateWebhookResponse.php | 2 +-
src/gen/lib/Model/CreditNote.php | 2 +-
src/gen/lib/Model/CreditNotesFilter.php | 2 +-
src/gen/lib/Model/CreditNotesSort.php | 2 +-
src/gen/lib/Model/CrmEventType.php | 2 +-
src/gen/lib/Model/Currency.php | 2 +-
src/gen/lib/Model/CustomField.php | 2 +-
src/gen/lib/Model/CustomFieldFinder.php | 2 +-
src/gen/lib/Model/CustomMapping.php | 2 +-
src/gen/lib/Model/Customer.php | 2 +-
src/gen/lib/Model/CustomersFilter.php | 2 +-
src/gen/lib/Model/CustomersSort.php | 2 +-
src/gen/lib/Model/Deduction.php | 2 +-
.../lib/Model/DeleteAccountingDepartmentResponse.php | 2 +-
src/gen/lib/Model/DeleteAccountingLocationResponse.php | 2 +-
src/gen/lib/Model/DeleteActivityResponse.php | 2 +-
src/gen/lib/Model/DeleteApplicantResponse.php | 2 +-
src/gen/lib/Model/DeleteApplicationResponse.php | 2 +-
src/gen/lib/Model/DeleteBillResponse.php | 2 +-
src/gen/lib/Model/DeleteCommentResponse.php | 2 +-
src/gen/lib/Model/DeleteCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteConsumerResponse.php | 2 +-
src/gen/lib/Model/DeleteContactResponse.php | 2 +-
src/gen/lib/Model/DeleteCreditNoteResponse.php | 2 +-
src/gen/lib/Model/DeleteCustomerResponse.php | 2 +-
src/gen/lib/Model/DeleteDepartmentResponse.php | 2 +-
src/gen/lib/Model/DeleteDriveGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteDriveResponse.php | 2 +-
src/gen/lib/Model/DeleteEcommerceCustomerResponse.php | 2 +-
src/gen/lib/Model/DeleteEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteEmployeeResponse.php | 2 +-
src/gen/lib/Model/DeleteFileResponse.php | 2 +-
src/gen/lib/Model/DeleteFolderResponse.php | 2 +-
src/gen/lib/Model/DeleteHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/DeleteInvoiceResponse.php | 2 +-
src/gen/lib/Model/DeleteItemResponse.php | 2 +-
src/gen/lib/Model/DeleteJobResponse.php | 2 +-
src/gen/lib/Model/DeleteJournalEntryResponse.php | 2 +-
src/gen/lib/Model/DeleteLeadResponse.php | 2 +-
src/gen/lib/Model/DeleteLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/DeleteLocationResponse.php | 2 +-
src/gen/lib/Model/DeleteMerchantResponse.php | 2 +-
src/gen/lib/Model/DeleteMessageResponse.php | 2 +-
src/gen/lib/Model/DeleteModifierGroupResponse.php | 2 +-
src/gen/lib/Model/DeleteModifierResponse.php | 2 +-
src/gen/lib/Model/DeleteNoteResponse.php | 2 +-
src/gen/lib/Model/DeleteOpportunityResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteOrderTypeResponse.php | 2 +-
src/gen/lib/Model/DeletePaymentResponse.php | 2 +-
src/gen/lib/Model/DeletePipelineResponse.php | 2 +-
src/gen/lib/Model/DeletePosPaymentResponse.php | 2 +-
src/gen/lib/Model/DeleteProductResponse.php | 2 +-
src/gen/lib/Model/DeletePurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/DeleteSharedLinkResponse.php | 2 +-
src/gen/lib/Model/DeleteSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/DeleteSupplierResponse.php | 2 +-
src/gen/lib/Model/DeleteTaxRateResponse.php | 2 +-
src/gen/lib/Model/DeleteTenderResponse.php | 2 +-
src/gen/lib/Model/DeleteTicketResponse.php | 2 +-
src/gen/lib/Model/DeleteTimeOffRequestResponse.php | 2 +-
src/gen/lib/Model/DeleteUploadSessionResponse.php | 2 +-
src/gen/lib/Model/DeleteUserResponse.php | 2 +-
src/gen/lib/Model/DeleteWebhookResponse.php | 2 +-
src/gen/lib/Model/Department.php | 2 +-
src/gen/lib/Model/Drive.php | 2 +-
src/gen/lib/Model/DriveGroup.php | 2 +-
src/gen/lib/Model/DriveGroupsFilter.php | 2 +-
src/gen/lib/Model/DrivesFilter.php | 2 +-
src/gen/lib/Model/EcommerceAddress.php | 2 +-
src/gen/lib/Model/EcommerceCustomer.php | 2 +-
src/gen/lib/Model/EcommerceCustomerAddresses.php | 2 +-
src/gen/lib/Model/EcommerceCustomersFilter.php | 2 +-
src/gen/lib/Model/EcommerceDiscount.php | 2 +-
src/gen/lib/Model/EcommerceOrder.php | 2 +-
src/gen/lib/Model/EcommerceOrderLineItem.php | 2 +-
src/gen/lib/Model/EcommerceOrderStatus.php | 2 +-
src/gen/lib/Model/EcommerceOrdersFilter.php | 2 +-
src/gen/lib/Model/EcommerceProduct.php | 2 +-
src/gen/lib/Model/EcommerceProductCategories.php | 2 +-
src/gen/lib/Model/EcommerceProductImages.php | 2 +-
src/gen/lib/Model/EcommerceProductImages1.php | 2 +-
src/gen/lib/Model/EcommerceProductOptions.php | 2 +-
src/gen/lib/Model/EcommerceProductOptions1.php | 2 +-
src/gen/lib/Model/EcommerceProductVariants.php | 2 +-
src/gen/lib/Model/EcommerceStore.php | 2 +-
src/gen/lib/Model/Email.php | 2 +-
src/gen/lib/Model/Employee.php | 2 +-
src/gen/lib/Model/EmployeeCompensation.php | 2 +-
src/gen/lib/Model/EmployeeEmploymentRole.php | 2 +-
src/gen/lib/Model/EmployeeJob.php | 2 +-
src/gen/lib/Model/EmployeeList.php | 2 +-
src/gen/lib/Model/EmployeeManager.php | 2 +-
src/gen/lib/Model/EmployeePayroll.php | 2 +-
src/gen/lib/Model/EmployeeSchedules.php | 2 +-
src/gen/lib/Model/EmployeesFilter.php | 2 +-
src/gen/lib/Model/EmployeesSort.php | 2 +-
src/gen/lib/Model/EmploymentStatus.php | 2 +-
src/gen/lib/Model/Error.php | 2 +-
src/gen/lib/Model/ExecuteWebhookResponse.php | 2 +-
src/gen/lib/Model/FileStorageEventType.php | 2 +-
src/gen/lib/Model/FileType.php | 2 +-
src/gen/lib/Model/FilesFilter.php | 2 +-
src/gen/lib/Model/FilesSearch.php | 2 +-
src/gen/lib/Model/FilesSort.php | 2 +-
src/gen/lib/Model/Folder.php | 2 +-
src/gen/lib/Model/FormField.php | 2 +-
src/gen/lib/Model/FormFieldOption.php | 2 +-
src/gen/lib/Model/FormFieldOptionGroup.php | 2 +-
src/gen/lib/Model/Gender.php | 2 +-
src/gen/lib/Model/GetAccountingDepartmentResponse.php | 2 +-
src/gen/lib/Model/GetAccountingDepartmentsResponse.php | 2 +-
src/gen/lib/Model/GetAccountingLocationResponse.php | 2 +-
src/gen/lib/Model/GetAccountingLocationsResponse.php | 2 +-
src/gen/lib/Model/GetActivitiesResponse.php | 2 +-
src/gen/lib/Model/GetActivityResponse.php | 2 +-
src/gen/lib/Model/GetApiResourceCoverageResponse.php | 2 +-
src/gen/lib/Model/GetApiResourceResponse.php | 2 +-
src/gen/lib/Model/GetApiResponse.php | 2 +-
src/gen/lib/Model/GetApisResponse.php | 2 +-
src/gen/lib/Model/GetApplicantResponse.php | 2 +-
src/gen/lib/Model/GetApplicantsResponse.php | 2 +-
src/gen/lib/Model/GetApplicationResponse.php | 2 +-
src/gen/lib/Model/GetApplicationsResponse.php | 2 +-
src/gen/lib/Model/GetBalanceSheetResponse.php | 2 +-
src/gen/lib/Model/GetBillResponse.php | 2 +-
src/gen/lib/Model/GetBillsResponse.php | 2 +-
src/gen/lib/Model/GetCollectionResponse.php | 2 +-
src/gen/lib/Model/GetCollectionTagsResponse.php | 2 +-
src/gen/lib/Model/GetCollectionUserResponse.php | 2 +-
src/gen/lib/Model/GetCollectionUsersResponse.php | 2 +-
src/gen/lib/Model/GetCollectionsResponse.php | 2 +-
src/gen/lib/Model/GetCommentResponse.php | 2 +-
src/gen/lib/Model/GetCommentsResponse.php | 2 +-
src/gen/lib/Model/GetCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetCompanyInfoResponse.php | 2 +-
src/gen/lib/Model/GetCompanyResponse.php | 2 +-
src/gen/lib/Model/GetConnectionResponse.php | 2 +-
src/gen/lib/Model/GetConnectionsResponse.php | 2 +-
.../lib/Model/GetConnectorResourceExampleResponse.php | 2 +-
.../Model/GetConnectorResourceExampleResponseData.php | 2 +-
src/gen/lib/Model/GetConnectorResourceResponse.php | 2 +-
.../lib/Model/GetConnectorResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetConnectorResponse.php | 2 +-
src/gen/lib/Model/GetConnectorsResponse.php | 2 +-
src/gen/lib/Model/GetConsumerResponse.php | 2 +-
src/gen/lib/Model/GetConsumersResponse.php | 2 +-
src/gen/lib/Model/GetConsumersResponseData.php | 2 +-
src/gen/lib/Model/GetContactResponse.php | 2 +-
src/gen/lib/Model/GetContactsResponse.php | 2 +-
src/gen/lib/Model/GetCreditNoteResponse.php | 2 +-
src/gen/lib/Model/GetCreditNotesResponse.php | 2 +-
src/gen/lib/Model/GetCustomFieldsResponse.php | 2 +-
src/gen/lib/Model/GetCustomMappingResponse.php | 2 +-
src/gen/lib/Model/GetCustomerResponse.php | 2 +-
src/gen/lib/Model/GetCustomersResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentResponse.php | 2 +-
src/gen/lib/Model/GetDepartmentsResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupResponse.php | 2 +-
src/gen/lib/Model/GetDriveGroupsResponse.php | 2 +-
src/gen/lib/Model/GetDriveResponse.php | 2 +-
src/gen/lib/Model/GetDrivesResponse.php | 2 +-
src/gen/lib/Model/GetEcommerceCustomerResponse.php | 2 +-
src/gen/lib/Model/GetEcommerceCustomersResponse.php | 2 +-
src/gen/lib/Model/GetEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/GetEcommerceOrdersResponse.php | 2 +-
src/gen/lib/Model/GetEmployeePayrollResponse.php | 2 +-
src/gen/lib/Model/GetEmployeePayrollsResponse.php | 2 +-
src/gen/lib/Model/GetEmployeeResponse.php | 2 +-
src/gen/lib/Model/GetEmployeeSchedulesResponse.php | 2 +-
src/gen/lib/Model/GetEmployeesResponse.php | 2 +-
src/gen/lib/Model/GetFileResponse.php | 2 +-
src/gen/lib/Model/GetFilesResponse.php | 2 +-
src/gen/lib/Model/GetFolderResponse.php | 2 +-
src/gen/lib/Model/GetFoldersResponse.php | 2 +-
src/gen/lib/Model/GetHrisCompaniesResponse.php | 2 +-
src/gen/lib/Model/GetHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobResponse.php | 2 +-
src/gen/lib/Model/GetHrisJobsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/GetInvoiceResponse.php | 2 +-
src/gen/lib/Model/GetInvoicesResponse.php | 2 +-
src/gen/lib/Model/GetItemResponse.php | 2 +-
src/gen/lib/Model/GetItemsResponse.php | 2 +-
src/gen/lib/Model/GetJobResponse.php | 2 +-
src/gen/lib/Model/GetJobsResponse.php | 2 +-
src/gen/lib/Model/GetJournalEntriesResponse.php | 2 +-
src/gen/lib/Model/GetJournalEntryResponse.php | 2 +-
src/gen/lib/Model/GetLeadResponse.php | 2 +-
src/gen/lib/Model/GetLeadsResponse.php | 2 +-
src/gen/lib/Model/GetLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/GetLedgerAccountsResponse.php | 2 +-
src/gen/lib/Model/GetLocationResponse.php | 2 +-
src/gen/lib/Model/GetLocationsResponse.php | 2 +-
src/gen/lib/Model/GetLogsResponse.php | 2 +-
src/gen/lib/Model/GetMerchantResponse.php | 2 +-
src/gen/lib/Model/GetMerchantsResponse.php | 2 +-
src/gen/lib/Model/GetMessageResponse.php | 2 +-
src/gen/lib/Model/GetMessagesResponse.php | 2 +-
src/gen/lib/Model/GetModifierGroupResponse.php | 2 +-
src/gen/lib/Model/GetModifierGroupsResponse.php | 2 +-
src/gen/lib/Model/GetModifierResponse.php | 2 +-
src/gen/lib/Model/GetModifiersResponse.php | 2 +-
src/gen/lib/Model/GetNoteResponse.php | 2 +-
src/gen/lib/Model/GetNotesResponse.php | 2 +-
src/gen/lib/Model/GetOpportunitiesResponse.php | 2 +-
src/gen/lib/Model/GetOpportunityResponse.php | 2 +-
src/gen/lib/Model/GetOrderResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypeResponse.php | 2 +-
src/gen/lib/Model/GetOrderTypesResponse.php | 2 +-
src/gen/lib/Model/GetOrdersResponse.php | 2 +-
src/gen/lib/Model/GetPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetPayrollResponse.php | 2 +-
src/gen/lib/Model/GetPayrollsResponse.php | 2 +-
src/gen/lib/Model/GetPipelineResponse.php | 2 +-
src/gen/lib/Model/GetPipelinesResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentResponse.php | 2 +-
src/gen/lib/Model/GetPosPaymentsResponse.php | 2 +-
src/gen/lib/Model/GetProductResponse.php | 2 +-
src/gen/lib/Model/GetProductsResponse.php | 2 +-
src/gen/lib/Model/GetProfitAndLossResponse.php | 2 +-
src/gen/lib/Model/GetPurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/GetPurchaseOrdersResponse.php | 2 +-
src/gen/lib/Model/GetResourceExampleResponse.php | 2 +-
src/gen/lib/Model/GetResourceSchemaResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinkResponse.php | 2 +-
src/gen/lib/Model/GetSharedLinksResponse.php | 2 +-
src/gen/lib/Model/GetStoreResponse.php | 2 +-
src/gen/lib/Model/GetStoresResponse.php | 2 +-
src/gen/lib/Model/GetSubsidiariesResponse.php | 2 +-
src/gen/lib/Model/GetSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/GetSupplierResponse.php | 2 +-
src/gen/lib/Model/GetSuppliersResponse.php | 2 +-
src/gen/lib/Model/GetTaxRateResponse.php | 2 +-
src/gen/lib/Model/GetTaxRatesResponse.php | 2 +-
src/gen/lib/Model/GetTenderResponse.php | 2 +-
src/gen/lib/Model/GetTendersResponse.php | 2 +-
src/gen/lib/Model/GetTicketResponse.php | 2 +-
src/gen/lib/Model/GetTicketsResponse.php | 2 +-
src/gen/lib/Model/GetTimeOffRequestResponse.php | 2 +-
src/gen/lib/Model/GetTimeOffRequestsResponse.php | 2 +-
src/gen/lib/Model/GetUploadSessionResponse.php | 2 +-
src/gen/lib/Model/GetUserResponse.php | 2 +-
src/gen/lib/Model/GetUsersResponse.php | 2 +-
src/gen/lib/Model/GetWebhookEventLogsResponse.php | 2 +-
src/gen/lib/Model/GetWebhookResponse.php | 2 +-
src/gen/lib/Model/GetWebhooksResponse.php | 2 +-
src/gen/lib/Model/HrisCompany.php | 2 +-
src/gen/lib/Model/HrisEventType.php | 2 +-
src/gen/lib/Model/HrisJob.php | 2 +-
src/gen/lib/Model/HrisJobLocation.php | 2 +-
src/gen/lib/Model/HrisJobs.php | 2 +-
src/gen/lib/Model/IntegrationState.php | 2 +-
src/gen/lib/Model/Invoice.php | 2 +-
src/gen/lib/Model/InvoiceItem.php | 2 +-
src/gen/lib/Model/InvoiceItemSalesDetails.php | 2 +-
src/gen/lib/Model/InvoiceItemsFilter.php | 2 +-
src/gen/lib/Model/InvoiceLineItem.php | 2 +-
src/gen/lib/Model/InvoiceResponse.php | 2 +-
src/gen/lib/Model/InvoicesFilter.php | 2 +-
src/gen/lib/Model/InvoicesSort.php | 2 +-
src/gen/lib/Model/IssueTrackingEventType.php | 2 +-
src/gen/lib/Model/IssuesFilter.php | 2 +-
src/gen/lib/Model/Item.php | 2 +-
src/gen/lib/Model/Job.php | 2 +-
src/gen/lib/Model/JobLinks.php | 2 +-
src/gen/lib/Model/JobSalary.php | 2 +-
src/gen/lib/Model/JobStatus.php | 2 +-
src/gen/lib/Model/JournalEntriesFilter.php | 2 +-
src/gen/lib/Model/JournalEntriesSort.php | 2 +-
src/gen/lib/Model/JournalEntry.php | 2 +-
src/gen/lib/Model/JournalEntryLineItem.php | 2 +-
src/gen/lib/Model/Lead.php | 2 +-
src/gen/lib/Model/LeadEventType.php | 2 +-
src/gen/lib/Model/LeadsFilter.php | 2 +-
src/gen/lib/Model/LeadsSort.php | 2 +-
src/gen/lib/Model/LedgerAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountCategories.php | 2 +-
src/gen/lib/Model/LedgerAccountParentAccount.php | 2 +-
src/gen/lib/Model/LedgerAccountsFilter.php | 2 +-
src/gen/lib/Model/LedgerAccountsSort.php | 2 +-
src/gen/lib/Model/LinkedConnectorResource.php | 2 +-
src/gen/lib/Model/LinkedCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceCustomer.php | 2 +-
src/gen/lib/Model/LinkedEcommerceOrder.php | 2 +-
src/gen/lib/Model/LinkedFolder.php | 2 +-
src/gen/lib/Model/LinkedInvoiceItem.php | 2 +-
src/gen/lib/Model/LinkedLedgerAccount.php | 2 +-
src/gen/lib/Model/LinkedParentCustomer.php | 2 +-
src/gen/lib/Model/LinkedSupplier.php | 2 +-
src/gen/lib/Model/LinkedTaxRate.php | 2 +-
src/gen/lib/Model/LinkedTrackingCategory.php | 2 +-
src/gen/lib/Model/Links.php | 2 +-
src/gen/lib/Model/Location.php | 2 +-
src/gen/lib/Model/Log.php | 2 +-
src/gen/lib/Model/LogOperation.php | 2 +-
src/gen/lib/Model/LogService.php | 2 +-
src/gen/lib/Model/LogsFilter.php | 2 +-
src/gen/lib/Model/Merchant.php | 2 +-
src/gen/lib/Model/Message.php | 2 +-
src/gen/lib/Model/Meta.php | 2 +-
src/gen/lib/Model/MetaCursors.php | 2 +-
src/gen/lib/Model/ModelInterface.php | 2 +-
src/gen/lib/Model/Modifier.php | 2 +-
src/gen/lib/Model/ModifierGroup.php | 2 +-
src/gen/lib/Model/ModifierGroupFilter.php | 2 +-
src/gen/lib/Model/NotFoundResponse.php | 2 +-
src/gen/lib/Model/NotImplementedResponse.php | 2 +-
src/gen/lib/Model/Note.php | 2 +-
src/gen/lib/Model/OAuthGrantType.php | 2 +-
src/gen/lib/Model/Offer.php | 2 +-
src/gen/lib/Model/OpportunitiesFilter.php | 2 +-
src/gen/lib/Model/OpportunitiesSort.php | 2 +-
src/gen/lib/Model/Opportunity.php | 2 +-
src/gen/lib/Model/Order.php | 2 +-
src/gen/lib/Model/OrderCustomers.php | 2 +-
src/gen/lib/Model/OrderDiscounts.php | 2 +-
src/gen/lib/Model/OrderFulfillments.php | 2 +-
src/gen/lib/Model/OrderLineItems.php | 2 +-
src/gen/lib/Model/OrderPayments.php | 2 +-
src/gen/lib/Model/OrderPickupDetails.php | 2 +-
.../Model/OrderPickupDetailsCurbsidePickupDetails.php | 2 +-
src/gen/lib/Model/OrderPickupDetailsRecipient.php | 2 +-
src/gen/lib/Model/OrderRefunds.php | 2 +-
src/gen/lib/Model/OrderTenders.php | 2 +-
src/gen/lib/Model/OrderType.php | 2 +-
src/gen/lib/Model/Owner.php | 2 +-
src/gen/lib/Model/PaginationCoverage.php | 2 +-
src/gen/lib/Model/PassThroughQuery.php | 2 +-
src/gen/lib/Model/Payment.php | 2 +-
src/gen/lib/Model/PaymentAllocations.php | 2 +-
src/gen/lib/Model/PaymentCard.php | 2 +-
src/gen/lib/Model/PaymentFrequency.php | 2 +-
src/gen/lib/Model/PaymentRequiredResponse.php | 2 +-
src/gen/lib/Model/PaymentUnit.php | 2 +-
src/gen/lib/Model/PaymentsFilter.php | 2 +-
src/gen/lib/Model/PaymentsSort.php | 2 +-
src/gen/lib/Model/Payroll.php | 2 +-
src/gen/lib/Model/PayrollTotals.php | 2 +-
src/gen/lib/Model/PayrollsFilter.php | 2 +-
src/gen/lib/Model/Person.php | 2 +-
src/gen/lib/Model/PhoneNumber.php | 2 +-
src/gen/lib/Model/Pipeline.php | 2 +-
src/gen/lib/Model/PipelineStages.php | 2 +-
src/gen/lib/Model/PosBankAccount.php | 2 +-
src/gen/lib/Model/PosBankAccountAchDetails.php | 2 +-
src/gen/lib/Model/PosPayment.php | 2 +-
src/gen/lib/Model/PosPaymentCardDetails.php | 2 +-
src/gen/lib/Model/PosPaymentExternalDetails.php | 2 +-
src/gen/lib/Model/Price.php | 2 +-
src/gen/lib/Model/ProbationPeriod.php | 2 +-
src/gen/lib/Model/ProfitAndLoss.php | 2 +-
src/gen/lib/Model/ProfitAndLossExpenses.php | 2 +-
src/gen/lib/Model/ProfitAndLossFilter.php | 2 +-
src/gen/lib/Model/ProfitAndLossGrossProfit.php | 2 +-
src/gen/lib/Model/ProfitAndLossIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossNetIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php | 2 +-
src/gen/lib/Model/ProfitAndLossRecord.php | 2 +-
src/gen/lib/Model/ProfitAndLossSection.php | 2 +-
src/gen/lib/Model/PurchaseOrder.php | 2 +-
src/gen/lib/Model/PurchaseOrdersFilter.php | 2 +-
src/gen/lib/Model/PurchaseOrdersSort.php | 2 +-
src/gen/lib/Model/RequestCountAllocation.php | 2 +-
src/gen/lib/Model/RequestRate.php | 2 +-
src/gen/lib/Model/ResolveWebhookResponse.php | 2 +-
src/gen/lib/Model/ResourceExample.php | 2 +-
src/gen/lib/Model/ResourceStatus.php | 2 +-
src/gen/lib/Model/Schedule.php | 2 +-
src/gen/lib/Model/ScheduleWorkPattern.php | 2 +-
src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php | 2 +-
src/gen/lib/Model/SchemaSupport.php | 2 +-
src/gen/lib/Model/ServiceCharge.php | 2 +-
src/gen/lib/Model/Session.php | 2 +-
src/gen/lib/Model/SessionSettings.php | 2 +-
src/gen/lib/Model/SessionTheme.php | 2 +-
src/gen/lib/Model/SharedLink.php | 2 +-
src/gen/lib/Model/SharedLinkTarget.php | 2 +-
src/gen/lib/Model/SimpleFormFieldOption.php | 2 +-
src/gen/lib/Model/SocialLink.php | 2 +-
src/gen/lib/Model/SortDirection.php | 2 +-
src/gen/lib/Model/Status.php | 2 +-
src/gen/lib/Model/Subsidiary.php | 2 +-
src/gen/lib/Model/SubsidiaryReference.php | 2 +-
src/gen/lib/Model/Supplier.php | 2 +-
src/gen/lib/Model/SuppliersFilter.php | 2 +-
src/gen/lib/Model/SuppliersSort.php | 2 +-
src/gen/lib/Model/SupportedProperty.php | 2 +-
src/gen/lib/Model/Tax.php | 2 +-
src/gen/lib/Model/TaxRate.php | 2 +-
src/gen/lib/Model/TaxRatesFilter.php | 2 +-
src/gen/lib/Model/Team.php | 2 +-
src/gen/lib/Model/Tender.php | 2 +-
src/gen/lib/Model/Ticket.php | 2 +-
src/gen/lib/Model/TicketsSort.php | 2 +-
src/gen/lib/Model/TimeOffRequest.php | 2 +-
src/gen/lib/Model/TimeOffRequestNotes.php | 2 +-
src/gen/lib/Model/TimeOffRequestsFilter.php | 2 +-
src/gen/lib/Model/TooManyRequestsResponse.php | 2 +-
src/gen/lib/Model/TooManyRequestsResponseDetail.php | 2 +-
src/gen/lib/Model/TrackingItem.php | 2 +-
src/gen/lib/Model/UnauthorizedResponse.php | 8 ++++----
src/gen/lib/Model/UnexpectedErrorResponse.php | 2 +-
src/gen/lib/Model/UnifiedApiId.php | 2 +-
src/gen/lib/Model/UnifiedFile.php | 2 +-
src/gen/lib/Model/UnifiedFilePermissions.php | 2 +-
src/gen/lib/Model/UnifiedId.php | 2 +-
src/gen/lib/Model/UnprocessableResponse.php | 8 ++++----
.../lib/Model/UpdateAccountingDepartmentResponse.php | 2 +-
src/gen/lib/Model/UpdateAccountingLocationResponse.php | 2 +-
src/gen/lib/Model/UpdateActivityResponse.php | 2 +-
src/gen/lib/Model/UpdateApplicantResponse.php | 2 +-
src/gen/lib/Model/UpdateApplicationResponse.php | 2 +-
src/gen/lib/Model/UpdateBillResponse.php | 2 +-
src/gen/lib/Model/UpdateCommentResponse.php | 2 +-
src/gen/lib/Model/UpdateCompanyResponse.php | 2 +-
src/gen/lib/Model/UpdateConnectionResponse.php | 2 +-
src/gen/lib/Model/UpdateConsumerRequest.php | 2 +-
src/gen/lib/Model/UpdateConsumerResponse.php | 2 +-
src/gen/lib/Model/UpdateContactResponse.php | 2 +-
src/gen/lib/Model/UpdateCreditNoteResponse.php | 2 +-
src/gen/lib/Model/UpdateCustomMappingRequest.php | 2 +-
src/gen/lib/Model/UpdateCustomMappingResponse.php | 2 +-
src/gen/lib/Model/UpdateCustomerResponse.php | 2 +-
src/gen/lib/Model/UpdateDepartmentResponse.php | 2 +-
src/gen/lib/Model/UpdateDriveGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateDriveResponse.php | 2 +-
src/gen/lib/Model/UpdateEcommerceCustomerResponse.php | 2 +-
src/gen/lib/Model/UpdateEcommerceOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateEmployeeResponse.php | 2 +-
src/gen/lib/Model/UpdateFileRequest.php | 2 +-
src/gen/lib/Model/UpdateFileResponse.php | 2 +-
src/gen/lib/Model/UpdateFolderRequest.php | 2 +-
src/gen/lib/Model/UpdateFolderResponse.php | 2 +-
src/gen/lib/Model/UpdateHrisCompanyResponse.php | 2 +-
src/gen/lib/Model/UpdateInvoiceItemsResponse.php | 2 +-
src/gen/lib/Model/UpdateInvoiceResponse.php | 2 +-
src/gen/lib/Model/UpdateItemResponse.php | 2 +-
src/gen/lib/Model/UpdateJobResponse.php | 2 +-
src/gen/lib/Model/UpdateJournalEntryResponse.php | 2 +-
src/gen/lib/Model/UpdateLeadResponse.php | 2 +-
src/gen/lib/Model/UpdateLedgerAccountResponse.php | 2 +-
src/gen/lib/Model/UpdateLocationResponse.php | 2 +-
src/gen/lib/Model/UpdateMerchantResponse.php | 2 +-
src/gen/lib/Model/UpdateMessageResponse.php | 2 +-
src/gen/lib/Model/UpdateModifierGroupResponse.php | 2 +-
src/gen/lib/Model/UpdateModifierResponse.php | 2 +-
src/gen/lib/Model/UpdateNoteResponse.php | 2 +-
src/gen/lib/Model/UpdateOpportunityResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateOrderTypeResponse.php | 2 +-
src/gen/lib/Model/UpdatePaymentResponse.php | 2 +-
src/gen/lib/Model/UpdatePipelineResponse.php | 2 +-
src/gen/lib/Model/UpdatePosPaymentResponse.php | 2 +-
src/gen/lib/Model/UpdateProductResponse.php | 2 +-
src/gen/lib/Model/UpdatePurchaseOrderResponse.php | 2 +-
src/gen/lib/Model/UpdateSharedLinkResponse.php | 2 +-
src/gen/lib/Model/UpdateSubsidiaryResponse.php | 2 +-
src/gen/lib/Model/UpdateSupplierResponse.php | 2 +-
src/gen/lib/Model/UpdateTaxRateResponse.php | 2 +-
src/gen/lib/Model/UpdateTenderResponse.php | 2 +-
src/gen/lib/Model/UpdateTicketResponse.php | 2 +-
src/gen/lib/Model/UpdateTimeOffRequestResponse.php | 2 +-
src/gen/lib/Model/UpdateUploadSessionResponse.php | 2 +-
src/gen/lib/Model/UpdateUserResponse.php | 2 +-
src/gen/lib/Model/UpdateWebhookRequest.php | 2 +-
src/gen/lib/Model/UpdateWebhookResponse.php | 2 +-
src/gen/lib/Model/UploadSession.php | 2 +-
src/gen/lib/Model/User.php | 2 +-
src/gen/lib/Model/VaultEventType.php | 2 +-
src/gen/lib/Model/VirtualWebhooks.php | 2 +-
src/gen/lib/Model/WalletDetails.php | 2 +-
src/gen/lib/Model/Webhook.php | 2 +-
src/gen/lib/Model/WebhookEvent.php | 2 +-
src/gen/lib/Model/WebhookEventLog.php | 2 +-
src/gen/lib/Model/WebhookEventLogAttempts.php | 2 +-
src/gen/lib/Model/WebhookEventLogService.php | 2 +-
src/gen/lib/Model/WebhookEventLogsFilter.php | 2 +-
src/gen/lib/Model/WebhookEventLogsFilterService.php | 2 +-
src/gen/lib/Model/WebhookEventType.php | 2 +-
src/gen/lib/Model/WebhookSubscription.php | 2 +-
src/gen/lib/Model/WebhookSupport.php | 2 +-
src/gen/lib/Model/Website.php | 2 +-
src/gen/lib/ObjectSerializer.php | 2 +-
src/gen/test/Api/AccountingApiTest.php | 2 +-
src/gen/test/Api/AtsApiTest.php | 2 +-
src/gen/test/Api/ConnectorApiTest.php | 2 +-
src/gen/test/Api/CrmApiTest.php | 2 +-
src/gen/test/Api/EcommerceApiTest.php | 2 +-
src/gen/test/Api/FileStorageApiTest.php | 2 +-
src/gen/test/Api/HrisApiTest.php | 2 +-
src/gen/test/Api/IssueTrackingApiTest.php | 2 +-
src/gen/test/Api/LeadApiTest.php | 2 +-
src/gen/test/Api/PosApiTest.php | 2 +-
src/gen/test/Api/SmsApiTest.php | 2 +-
src/gen/test/Api/VaultApiTest.php | 2 +-
src/gen/test/Api/WebhookApiTest.php | 2 +-
src/gen/test/Model/AccountingDepartmentTest.php | 2 +-
src/gen/test/Model/AccountingDepartmentsFilterTest.php | 2 +-
src/gen/test/Model/AccountingEventTypeTest.php | 2 +-
src/gen/test/Model/AccountingLocationTest.php | 2 +-
src/gen/test/Model/AccountingLocationsFilterTest.php | 2 +-
src/gen/test/Model/ActivitiesFilterTest.php | 2 +-
src/gen/test/Model/ActivitiesSortTest.php | 2 +-
src/gen/test/Model/ActivityAttendeeTest.php | 2 +-
src/gen/test/Model/ActivityTest.php | 2 +-
src/gen/test/Model/AddressTest.php | 2 +-
src/gen/test/Model/ApiResourceCoverageCoverageTest.php | 2 +-
src/gen/test/Model/ApiResourceCoverageTest.php | 2 +-
src/gen/test/Model/ApiResourceLinkedResourcesTest.php | 2 +-
src/gen/test/Model/ApiResourceTest.php | 2 +-
src/gen/test/Model/ApiResourcesTest.php | 2 +-
src/gen/test/Model/ApiStatusTest.php | 2 +-
src/gen/test/Model/ApiTest.php | 2 +-
src/gen/test/Model/ApisFilterTest.php | 2 +-
src/gen/test/Model/ApplicantSocialLinksTest.php | 2 +-
src/gen/test/Model/ApplicantTest.php | 2 +-
src/gen/test/Model/ApplicantWebsitesTest.php | 2 +-
src/gen/test/Model/ApplicantsFilterTest.php | 2 +-
src/gen/test/Model/ApplicationStageTest.php | 2 +-
src/gen/test/Model/ApplicationTest.php | 2 +-
src/gen/test/Model/AssigneeTest.php | 2 +-
src/gen/test/Model/AtsActivityTest.php | 2 +-
src/gen/test/Model/AtsEventTypeTest.php | 2 +-
src/gen/test/Model/AuthTypeTest.php | 2 +-
src/gen/test/Model/BadRequestResponseTest.php | 2 +-
.../BalanceSheetAssetsCurrentAssetsAccountsTest.php | 2 +-
.../test/Model/BalanceSheetAssetsCurrentAssetsTest.php | 2 +-
.../BalanceSheetAssetsFixedAssetsAccountsTest.php | 2 +-
.../test/Model/BalanceSheetAssetsFixedAssetsTest.php | 2 +-
src/gen/test/Model/BalanceSheetAssetsTest.php | 2 +-
src/gen/test/Model/BalanceSheetEquityItemsTest.php | 2 +-
src/gen/test/Model/BalanceSheetEquityTest.php | 2 +-
src/gen/test/Model/BalanceSheetFilterTest.php | 2 +-
.../test/Model/BalanceSheetLiabilitiesAccountsTest.php | 2 +-
src/gen/test/Model/BalanceSheetLiabilitiesTest.php | 2 +-
src/gen/test/Model/BalanceSheetTest.php | 2 +-
src/gen/test/Model/BankAccountTest.php | 2 +-
src/gen/test/Model/BenefitTest.php | 2 +-
src/gen/test/Model/BillLineItemTest.php | 2 +-
src/gen/test/Model/BillTest.php | 2 +-
src/gen/test/Model/BillsFilterTest.php | 2 +-
src/gen/test/Model/BillsSortTest.php | 2 +-
src/gen/test/Model/BranchTest.php | 2 +-
src/gen/test/Model/CashDetailsTest.php | 2 +-
src/gen/test/Model/CollectionTagTest.php | 2 +-
src/gen/test/Model/CollectionTest.php | 2 +-
src/gen/test/Model/CollectionTicketCommentTest.php | 2 +-
src/gen/test/Model/CollectionUserTest.php | 2 +-
src/gen/test/Model/CollectionsSortTest.php | 2 +-
src/gen/test/Model/CommentsSortTest.php | 2 +-
src/gen/test/Model/CompaniesFilterTest.php | 2 +-
src/gen/test/Model/CompaniesSortTest.php | 2 +-
src/gen/test/Model/CompanyInfoTest.php | 2 +-
src/gen/test/Model/CompanyRowTypeTest.php | 2 +-
src/gen/test/Model/CompanyTest.php | 2 +-
src/gen/test/Model/CompensationTest.php | 2 +-
src/gen/test/Model/ConnectionConfigurationTest.php | 2 +-
src/gen/test/Model/ConnectionDefaultsTest.php | 2 +-
.../test/Model/ConnectionImportDataCredentialsTest.php | 2 +-
src/gen/test/Model/ConnectionImportDataTest.php | 2 +-
src/gen/test/Model/ConnectionMetadataTest.php | 2 +-
src/gen/test/Model/ConnectionStateTest.php | 2 +-
src/gen/test/Model/ConnectionTest.php | 2 +-
src/gen/test/Model/ConnectionWebhookTest.php | 2 +-
src/gen/test/Model/ConnectorDocTest.php | 2 +-
src/gen/test/Model/ConnectorEventTest.php | 2 +-
src/gen/test/Model/ConnectorOauthScopes1Test.php | 2 +-
src/gen/test/Model/ConnectorOauthScopesTest.php | 2 +-
src/gen/test/Model/ConnectorResourceTest.php | 2 +-
src/gen/test/Model/ConnectorSettingTest.php | 2 +-
src/gen/test/Model/ConnectorStatusTest.php | 2 +-
src/gen/test/Model/ConnectorTest.php | 2 +-
src/gen/test/Model/ConnectorTlsSupportTest.php | 2 +-
src/gen/test/Model/ConnectorUnifiedApisTest.php | 2 +-
src/gen/test/Model/ConnectorsFilterTest.php | 2 +-
src/gen/test/Model/ConsumerConnectionTest.php | 2 +-
src/gen/test/Model/ConsumerMetadataTest.php | 2 +-
...onsumerRequestCountsInDateRangeResponseDataTest.php | 2 +-
.../ConsumerRequestCountsInDateRangeResponseTest.php | 2 +-
src/gen/test/Model/ConsumerTest.php | 2 +-
src/gen/test/Model/ContactTest.php | 2 +-
src/gen/test/Model/ContactsFilterTest.php | 2 +-
src/gen/test/Model/ContactsSortTest.php | 2 +-
src/gen/test/Model/CopyFolderRequestTest.php | 2 +-
.../Model/CreateAccountingDepartmentResponseTest.php | 2 +-
.../Model/CreateAccountingLocationResponseTest.php | 2 +-
src/gen/test/Model/CreateActivityResponseTest.php | 2 +-
src/gen/test/Model/CreateApplicantResponseTest.php | 2 +-
src/gen/test/Model/CreateApplicationResponseTest.php | 2 +-
src/gen/test/Model/CreateBillResponseTest.php | 2 +-
src/gen/test/Model/CreateCommentResponseTest.php | 2 +-
src/gen/test/Model/CreateCompanyResponseTest.php | 2 +-
src/gen/test/Model/CreateConnectionResponseTest.php | 2 +-
src/gen/test/Model/CreateConsumerResponseTest.php | 2 +-
src/gen/test/Model/CreateContactResponseTest.php | 2 +-
src/gen/test/Model/CreateCreditNoteResponseTest.php | 2 +-
src/gen/test/Model/CreateCustomMappingRequestTest.php | 2 +-
src/gen/test/Model/CreateCustomMappingResponseTest.php | 2 +-
src/gen/test/Model/CreateCustomerResponseTest.php | 2 +-
src/gen/test/Model/CreateDepartmentResponseTest.php | 2 +-
src/gen/test/Model/CreateDriveGroupResponseTest.php | 2 +-
src/gen/test/Model/CreateDriveResponseTest.php | 2 +-
.../test/Model/CreateEcommerceCustomerResponseTest.php | 2 +-
.../test/Model/CreateEcommerceOrderResponseTest.php | 2 +-
src/gen/test/Model/CreateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/CreateFileRequestTest.php | 2 +-
src/gen/test/Model/CreateFileResponseTest.php | 2 +-
src/gen/test/Model/CreateFolderRequestTest.php | 2 +-
src/gen/test/Model/CreateFolderResponseTest.php | 2 +-
src/gen/test/Model/CreateHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/CreateInvoiceItemResponseTest.php | 2 +-
src/gen/test/Model/CreateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/CreateItemResponseTest.php | 2 +-
src/gen/test/Model/CreateJobResponseTest.php | 2 +-
src/gen/test/Model/CreateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/CreateLeadResponseTest.php | 2 +-
src/gen/test/Model/CreateLedgerAccountResponseTest.php | 2 +-
src/gen/test/Model/CreateLocationResponseTest.php | 2 +-
src/gen/test/Model/CreateMerchantResponseTest.php | 2 +-
src/gen/test/Model/CreateMessageResponseTest.php | 2 +-
src/gen/test/Model/CreateModifierGroupResponseTest.php | 2 +-
src/gen/test/Model/CreateModifierResponseTest.php | 2 +-
src/gen/test/Model/CreateNoteResponseTest.php | 2 +-
src/gen/test/Model/CreateOpportunityResponseTest.php | 2 +-
src/gen/test/Model/CreateOrderResponseTest.php | 2 +-
src/gen/test/Model/CreateOrderTypeResponseTest.php | 2 +-
src/gen/test/Model/CreatePaymentResponseTest.php | 2 +-
src/gen/test/Model/CreatePipelineResponseTest.php | 2 +-
src/gen/test/Model/CreatePosPaymentResponseTest.php | 2 +-
src/gen/test/Model/CreateProductResponseTest.php | 2 +-
src/gen/test/Model/CreatePurchaseOrderResponseTest.php | 2 +-
src/gen/test/Model/CreateSessionResponseDataTest.php | 2 +-
src/gen/test/Model/CreateSessionResponseTest.php | 2 +-
src/gen/test/Model/CreateSharedLinkResponseTest.php | 2 +-
src/gen/test/Model/CreateSubsidiaryResponseTest.php | 2 +-
src/gen/test/Model/CreateSupplierResponseTest.php | 2 +-
src/gen/test/Model/CreateTaxRateResponseTest.php | 2 +-
src/gen/test/Model/CreateTenderResponseTest.php | 2 +-
src/gen/test/Model/CreateTicketResponseTest.php | 2 +-
.../test/Model/CreateTimeOffRequestResponseTest.php | 2 +-
src/gen/test/Model/CreateUploadSessionRequestTest.php | 2 +-
src/gen/test/Model/CreateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/CreateUserResponseTest.php | 2 +-
src/gen/test/Model/CreateWebhookRequestTest.php | 2 +-
src/gen/test/Model/CreateWebhookResponseTest.php | 2 +-
src/gen/test/Model/CreditNoteTest.php | 2 +-
src/gen/test/Model/CreditNotesFilterTest.php | 2 +-
src/gen/test/Model/CreditNotesSortTest.php | 2 +-
src/gen/test/Model/CrmEventTypeTest.php | 2 +-
src/gen/test/Model/CurrencyTest.php | 2 +-
src/gen/test/Model/CustomFieldFinderTest.php | 2 +-
src/gen/test/Model/CustomFieldTest.php | 2 +-
src/gen/test/Model/CustomMappingTest.php | 2 +-
src/gen/test/Model/CustomerTest.php | 2 +-
src/gen/test/Model/CustomersFilterTest.php | 2 +-
src/gen/test/Model/CustomersSortTest.php | 2 +-
src/gen/test/Model/DeductionTest.php | 2 +-
.../Model/DeleteAccountingDepartmentResponseTest.php | 2 +-
.../Model/DeleteAccountingLocationResponseTest.php | 2 +-
src/gen/test/Model/DeleteActivityResponseTest.php | 2 +-
src/gen/test/Model/DeleteApplicantResponseTest.php | 2 +-
src/gen/test/Model/DeleteApplicationResponseTest.php | 2 +-
src/gen/test/Model/DeleteBillResponseTest.php | 2 +-
src/gen/test/Model/DeleteCommentResponseTest.php | 2 +-
src/gen/test/Model/DeleteCompanyResponseTest.php | 2 +-
src/gen/test/Model/DeleteConsumerResponseTest.php | 2 +-
src/gen/test/Model/DeleteContactResponseTest.php | 2 +-
src/gen/test/Model/DeleteCreditNoteResponseTest.php | 2 +-
src/gen/test/Model/DeleteCustomerResponseTest.php | 2 +-
src/gen/test/Model/DeleteDepartmentResponseTest.php | 2 +-
src/gen/test/Model/DeleteDriveGroupResponseTest.php | 2 +-
src/gen/test/Model/DeleteDriveResponseTest.php | 2 +-
.../test/Model/DeleteEcommerceCustomerResponseTest.php | 2 +-
.../test/Model/DeleteEcommerceOrderResponseTest.php | 2 +-
src/gen/test/Model/DeleteEmployeeResponseTest.php | 2 +-
src/gen/test/Model/DeleteFileResponseTest.php | 2 +-
src/gen/test/Model/DeleteFolderResponseTest.php | 2 +-
src/gen/test/Model/DeleteHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/DeleteInvoiceResponseTest.php | 2 +-
src/gen/test/Model/DeleteItemResponseTest.php | 2 +-
src/gen/test/Model/DeleteJobResponseTest.php | 2 +-
src/gen/test/Model/DeleteJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/DeleteLeadResponseTest.php | 2 +-
src/gen/test/Model/DeleteLedgerAccountResponseTest.php | 2 +-
src/gen/test/Model/DeleteLocationResponseTest.php | 2 +-
src/gen/test/Model/DeleteMerchantResponseTest.php | 2 +-
src/gen/test/Model/DeleteMessageResponseTest.php | 2 +-
src/gen/test/Model/DeleteModifierGroupResponseTest.php | 2 +-
src/gen/test/Model/DeleteModifierResponseTest.php | 2 +-
src/gen/test/Model/DeleteNoteResponseTest.php | 2 +-
src/gen/test/Model/DeleteOpportunityResponseTest.php | 2 +-
src/gen/test/Model/DeleteOrderResponseTest.php | 2 +-
src/gen/test/Model/DeleteOrderTypeResponseTest.php | 2 +-
src/gen/test/Model/DeletePaymentResponseTest.php | 2 +-
src/gen/test/Model/DeletePipelineResponseTest.php | 2 +-
src/gen/test/Model/DeletePosPaymentResponseTest.php | 2 +-
src/gen/test/Model/DeleteProductResponseTest.php | 2 +-
src/gen/test/Model/DeletePurchaseOrderResponseTest.php | 2 +-
src/gen/test/Model/DeleteSharedLinkResponseTest.php | 2 +-
src/gen/test/Model/DeleteSubsidiaryResponseTest.php | 2 +-
src/gen/test/Model/DeleteSupplierResponseTest.php | 2 +-
src/gen/test/Model/DeleteTaxRateResponseTest.php | 2 +-
src/gen/test/Model/DeleteTenderResponseTest.php | 2 +-
src/gen/test/Model/DeleteTicketResponseTest.php | 2 +-
.../test/Model/DeleteTimeOffRequestResponseTest.php | 2 +-
src/gen/test/Model/DeleteUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/DeleteUserResponseTest.php | 2 +-
src/gen/test/Model/DeleteWebhookResponseTest.php | 2 +-
src/gen/test/Model/DepartmentTest.php | 2 +-
src/gen/test/Model/DriveGroupTest.php | 2 +-
src/gen/test/Model/DriveGroupsFilterTest.php | 2 +-
src/gen/test/Model/DriveTest.php | 2 +-
src/gen/test/Model/DrivesFilterTest.php | 2 +-
src/gen/test/Model/EcommerceAddressTest.php | 2 +-
src/gen/test/Model/EcommerceCustomerAddressesTest.php | 2 +-
src/gen/test/Model/EcommerceCustomerTest.php | 2 +-
src/gen/test/Model/EcommerceCustomersFilterTest.php | 2 +-
src/gen/test/Model/EcommerceDiscountTest.php | 2 +-
src/gen/test/Model/EcommerceOrderLineItemTest.php | 2 +-
src/gen/test/Model/EcommerceOrderStatusTest.php | 2 +-
src/gen/test/Model/EcommerceOrderTest.php | 2 +-
src/gen/test/Model/EcommerceOrdersFilterTest.php | 2 +-
src/gen/test/Model/EcommerceProductCategoriesTest.php | 2 +-
src/gen/test/Model/EcommerceProductImages1Test.php | 2 +-
src/gen/test/Model/EcommerceProductImagesTest.php | 2 +-
src/gen/test/Model/EcommerceProductOptions1Test.php | 2 +-
src/gen/test/Model/EcommerceProductOptionsTest.php | 2 +-
src/gen/test/Model/EcommerceProductTest.php | 2 +-
src/gen/test/Model/EcommerceProductVariantsTest.php | 2 +-
src/gen/test/Model/EcommerceStoreTest.php | 2 +-
src/gen/test/Model/EmailTest.php | 2 +-
src/gen/test/Model/EmployeeCompensationTest.php | 2 +-
src/gen/test/Model/EmployeeEmploymentRoleTest.php | 2 +-
src/gen/test/Model/EmployeeJobTest.php | 2 +-
src/gen/test/Model/EmployeeListTest.php | 2 +-
src/gen/test/Model/EmployeeManagerTest.php | 2 +-
src/gen/test/Model/EmployeePayrollTest.php | 2 +-
src/gen/test/Model/EmployeeSchedulesTest.php | 2 +-
src/gen/test/Model/EmployeeTest.php | 2 +-
src/gen/test/Model/EmployeesFilterTest.php | 2 +-
src/gen/test/Model/EmployeesSortTest.php | 2 +-
src/gen/test/Model/EmploymentStatusTest.php | 2 +-
src/gen/test/Model/ErrorTest.php | 2 +-
src/gen/test/Model/ExecuteWebhookResponseTest.php | 2 +-
src/gen/test/Model/FileStorageEventTypeTest.php | 2 +-
src/gen/test/Model/FileTypeTest.php | 2 +-
src/gen/test/Model/FilesFilterTest.php | 2 +-
src/gen/test/Model/FilesSearchTest.php | 2 +-
src/gen/test/Model/FilesSortTest.php | 2 +-
src/gen/test/Model/FolderTest.php | 2 +-
src/gen/test/Model/FormFieldOptionGroupTest.php | 2 +-
src/gen/test/Model/FormFieldOptionTest.php | 2 +-
src/gen/test/Model/FormFieldTest.php | 2 +-
src/gen/test/Model/GenderTest.php | 2 +-
.../test/Model/GetAccountingDepartmentResponseTest.php | 2 +-
.../Model/GetAccountingDepartmentsResponseTest.php | 2 +-
.../test/Model/GetAccountingLocationResponseTest.php | 2 +-
.../test/Model/GetAccountingLocationsResponseTest.php | 2 +-
src/gen/test/Model/GetActivitiesResponseTest.php | 2 +-
src/gen/test/Model/GetActivityResponseTest.php | 2 +-
.../test/Model/GetApiResourceCoverageResponseTest.php | 2 +-
src/gen/test/Model/GetApiResourceResponseTest.php | 2 +-
src/gen/test/Model/GetApiResponseTest.php | 2 +-
src/gen/test/Model/GetApisResponseTest.php | 2 +-
src/gen/test/Model/GetApplicantResponseTest.php | 2 +-
src/gen/test/Model/GetApplicantsResponseTest.php | 2 +-
src/gen/test/Model/GetApplicationResponseTest.php | 2 +-
src/gen/test/Model/GetApplicationsResponseTest.php | 2 +-
src/gen/test/Model/GetBalanceSheetResponseTest.php | 2 +-
src/gen/test/Model/GetBillResponseTest.php | 2 +-
src/gen/test/Model/GetBillsResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionTagsResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionUserResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionUsersResponseTest.php | 2 +-
src/gen/test/Model/GetCollectionsResponseTest.php | 2 +-
src/gen/test/Model/GetCommentResponseTest.php | 2 +-
src/gen/test/Model/GetCommentsResponseTest.php | 2 +-
src/gen/test/Model/GetCompaniesResponseTest.php | 2 +-
src/gen/test/Model/GetCompanyInfoResponseTest.php | 2 +-
src/gen/test/Model/GetCompanyResponseTest.php | 2 +-
src/gen/test/Model/GetConnectionResponseTest.php | 2 +-
src/gen/test/Model/GetConnectionsResponseTest.php | 2 +-
.../GetConnectorResourceExampleResponseDataTest.php | 2 +-
.../Model/GetConnectorResourceExampleResponseTest.php | 2 +-
.../test/Model/GetConnectorResourceResponseTest.php | 2 +-
.../Model/GetConnectorResourceSchemaResponseTest.php | 2 +-
src/gen/test/Model/GetConnectorResponseTest.php | 2 +-
src/gen/test/Model/GetConnectorsResponseTest.php | 2 +-
src/gen/test/Model/GetConsumerResponseTest.php | 2 +-
src/gen/test/Model/GetConsumersResponseDataTest.php | 2 +-
src/gen/test/Model/GetConsumersResponseTest.php | 2 +-
src/gen/test/Model/GetContactResponseTest.php | 2 +-
src/gen/test/Model/GetContactsResponseTest.php | 2 +-
src/gen/test/Model/GetCreditNoteResponseTest.php | 2 +-
src/gen/test/Model/GetCreditNotesResponseTest.php | 2 +-
src/gen/test/Model/GetCustomFieldsResponseTest.php | 2 +-
src/gen/test/Model/GetCustomMappingResponseTest.php | 2 +-
src/gen/test/Model/GetCustomerResponseTest.php | 2 +-
src/gen/test/Model/GetCustomersResponseTest.php | 2 +-
src/gen/test/Model/GetDepartmentResponseTest.php | 2 +-
src/gen/test/Model/GetDepartmentsResponseTest.php | 2 +-
src/gen/test/Model/GetDriveGroupResponseTest.php | 2 +-
src/gen/test/Model/GetDriveGroupsResponseTest.php | 2 +-
src/gen/test/Model/GetDriveResponseTest.php | 2 +-
src/gen/test/Model/GetDrivesResponseTest.php | 2 +-
.../test/Model/GetEcommerceCustomerResponseTest.php | 2 +-
.../test/Model/GetEcommerceCustomersResponseTest.php | 2 +-
src/gen/test/Model/GetEcommerceOrderResponseTest.php | 2 +-
src/gen/test/Model/GetEcommerceOrdersResponseTest.php | 2 +-
src/gen/test/Model/GetEmployeePayrollResponseTest.php | 2 +-
src/gen/test/Model/GetEmployeePayrollsResponseTest.php | 2 +-
src/gen/test/Model/GetEmployeeResponseTest.php | 2 +-
.../test/Model/GetEmployeeSchedulesResponseTest.php | 2 +-
src/gen/test/Model/GetEmployeesResponseTest.php | 2 +-
src/gen/test/Model/GetFileResponseTest.php | 2 +-
src/gen/test/Model/GetFilesResponseTest.php | 2 +-
src/gen/test/Model/GetFolderResponseTest.php | 2 +-
src/gen/test/Model/GetFoldersResponseTest.php | 2 +-
src/gen/test/Model/GetHrisCompaniesResponseTest.php | 2 +-
src/gen/test/Model/GetHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/GetHrisJobResponseTest.php | 2 +-
src/gen/test/Model/GetHrisJobsResponseTest.php | 2 +-
src/gen/test/Model/GetInvoiceItemResponseTest.php | 2 +-
src/gen/test/Model/GetInvoiceItemsResponseTest.php | 2 +-
src/gen/test/Model/GetInvoiceResponseTest.php | 2 +-
src/gen/test/Model/GetInvoicesResponseTest.php | 2 +-
src/gen/test/Model/GetItemResponseTest.php | 2 +-
src/gen/test/Model/GetItemsResponseTest.php | 2 +-
src/gen/test/Model/GetJobResponseTest.php | 2 +-
src/gen/test/Model/GetJobsResponseTest.php | 2 +-
src/gen/test/Model/GetJournalEntriesResponseTest.php | 2 +-
src/gen/test/Model/GetJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/GetLeadResponseTest.php | 2 +-
src/gen/test/Model/GetLeadsResponseTest.php | 2 +-
src/gen/test/Model/GetLedgerAccountResponseTest.php | 2 +-
src/gen/test/Model/GetLedgerAccountsResponseTest.php | 2 +-
src/gen/test/Model/GetLocationResponseTest.php | 2 +-
src/gen/test/Model/GetLocationsResponseTest.php | 2 +-
src/gen/test/Model/GetLogsResponseTest.php | 2 +-
src/gen/test/Model/GetMerchantResponseTest.php | 2 +-
src/gen/test/Model/GetMerchantsResponseTest.php | 2 +-
src/gen/test/Model/GetMessageResponseTest.php | 2 +-
src/gen/test/Model/GetMessagesResponseTest.php | 2 +-
src/gen/test/Model/GetModifierGroupResponseTest.php | 2 +-
src/gen/test/Model/GetModifierGroupsResponseTest.php | 2 +-
src/gen/test/Model/GetModifierResponseTest.php | 2 +-
src/gen/test/Model/GetModifiersResponseTest.php | 2 +-
src/gen/test/Model/GetNoteResponseTest.php | 2 +-
src/gen/test/Model/GetNotesResponseTest.php | 2 +-
src/gen/test/Model/GetOpportunitiesResponseTest.php | 2 +-
src/gen/test/Model/GetOpportunityResponseTest.php | 2 +-
src/gen/test/Model/GetOrderResponseTest.php | 2 +-
src/gen/test/Model/GetOrderTypeResponseTest.php | 2 +-
src/gen/test/Model/GetOrderTypesResponseTest.php | 2 +-
src/gen/test/Model/GetOrdersResponseTest.php | 2 +-
src/gen/test/Model/GetPaymentResponseTest.php | 2 +-
src/gen/test/Model/GetPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetPayrollResponseTest.php | 2 +-
src/gen/test/Model/GetPayrollsResponseTest.php | 2 +-
src/gen/test/Model/GetPipelineResponseTest.php | 2 +-
src/gen/test/Model/GetPipelinesResponseTest.php | 2 +-
src/gen/test/Model/GetPosPaymentResponseTest.php | 2 +-
src/gen/test/Model/GetPosPaymentsResponseTest.php | 2 +-
src/gen/test/Model/GetProductResponseTest.php | 2 +-
src/gen/test/Model/GetProductsResponseTest.php | 2 +-
src/gen/test/Model/GetProfitAndLossResponseTest.php | 2 +-
src/gen/test/Model/GetPurchaseOrderResponseTest.php | 2 +-
src/gen/test/Model/GetPurchaseOrdersResponseTest.php | 2 +-
src/gen/test/Model/GetResourceExampleResponseTest.php | 2 +-
src/gen/test/Model/GetResourceSchemaResponseTest.php | 2 +-
src/gen/test/Model/GetSharedLinkResponseTest.php | 2 +-
src/gen/test/Model/GetSharedLinksResponseTest.php | 2 +-
src/gen/test/Model/GetStoreResponseTest.php | 2 +-
src/gen/test/Model/GetStoresResponseTest.php | 2 +-
src/gen/test/Model/GetSubsidiariesResponseTest.php | 2 +-
src/gen/test/Model/GetSubsidiaryResponseTest.php | 2 +-
src/gen/test/Model/GetSupplierResponseTest.php | 2 +-
src/gen/test/Model/GetSuppliersResponseTest.php | 2 +-
src/gen/test/Model/GetTaxRateResponseTest.php | 2 +-
src/gen/test/Model/GetTaxRatesResponseTest.php | 2 +-
src/gen/test/Model/GetTenderResponseTest.php | 2 +-
src/gen/test/Model/GetTendersResponseTest.php | 2 +-
src/gen/test/Model/GetTicketResponseTest.php | 2 +-
src/gen/test/Model/GetTicketsResponseTest.php | 2 +-
src/gen/test/Model/GetTimeOffRequestResponseTest.php | 2 +-
src/gen/test/Model/GetTimeOffRequestsResponseTest.php | 2 +-
src/gen/test/Model/GetUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/GetUserResponseTest.php | 2 +-
src/gen/test/Model/GetUsersResponseTest.php | 2 +-
src/gen/test/Model/GetWebhookEventLogsResponseTest.php | 2 +-
src/gen/test/Model/GetWebhookResponseTest.php | 2 +-
src/gen/test/Model/GetWebhooksResponseTest.php | 2 +-
src/gen/test/Model/HrisCompanyTest.php | 2 +-
src/gen/test/Model/HrisEventTypeTest.php | 2 +-
src/gen/test/Model/HrisJobLocationTest.php | 2 +-
src/gen/test/Model/HrisJobTest.php | 2 +-
src/gen/test/Model/HrisJobsTest.php | 2 +-
src/gen/test/Model/IntegrationStateTest.php | 2 +-
src/gen/test/Model/InvoiceItemSalesDetailsTest.php | 2 +-
src/gen/test/Model/InvoiceItemTest.php | 2 +-
src/gen/test/Model/InvoiceItemsFilterTest.php | 2 +-
src/gen/test/Model/InvoiceLineItemTest.php | 2 +-
src/gen/test/Model/InvoiceResponseTest.php | 2 +-
src/gen/test/Model/InvoiceTest.php | 2 +-
src/gen/test/Model/InvoicesFilterTest.php | 2 +-
src/gen/test/Model/InvoicesSortTest.php | 2 +-
src/gen/test/Model/IssueTrackingEventTypeTest.php | 2 +-
src/gen/test/Model/IssuesFilterTest.php | 2 +-
src/gen/test/Model/ItemTest.php | 2 +-
src/gen/test/Model/JobLinksTest.php | 2 +-
src/gen/test/Model/JobSalaryTest.php | 2 +-
src/gen/test/Model/JobStatusTest.php | 2 +-
src/gen/test/Model/JobTest.php | 2 +-
src/gen/test/Model/JournalEntriesFilterTest.php | 2 +-
src/gen/test/Model/JournalEntriesSortTest.php | 2 +-
src/gen/test/Model/JournalEntryLineItemTest.php | 2 +-
src/gen/test/Model/JournalEntryTest.php | 2 +-
src/gen/test/Model/LeadEventTypeTest.php | 2 +-
src/gen/test/Model/LeadTest.php | 2 +-
src/gen/test/Model/LeadsFilterTest.php | 2 +-
src/gen/test/Model/LeadsSortTest.php | 2 +-
src/gen/test/Model/LedgerAccountCategoriesTest.php | 2 +-
src/gen/test/Model/LedgerAccountParentAccountTest.php | 2 +-
src/gen/test/Model/LedgerAccountTest.php | 2 +-
src/gen/test/Model/LedgerAccountsFilterTest.php | 2 +-
src/gen/test/Model/LedgerAccountsSortTest.php | 2 +-
src/gen/test/Model/LinkedConnectorResourceTest.php | 2 +-
src/gen/test/Model/LinkedCustomerTest.php | 2 +-
src/gen/test/Model/LinkedEcommerceCustomerTest.php | 2 +-
src/gen/test/Model/LinkedEcommerceOrderTest.php | 2 +-
src/gen/test/Model/LinkedFolderTest.php | 2 +-
src/gen/test/Model/LinkedInvoiceItemTest.php | 2 +-
src/gen/test/Model/LinkedLedgerAccountTest.php | 2 +-
src/gen/test/Model/LinkedParentCustomerTest.php | 2 +-
src/gen/test/Model/LinkedSupplierTest.php | 2 +-
src/gen/test/Model/LinkedTaxRateTest.php | 2 +-
src/gen/test/Model/LinkedTrackingCategoryTest.php | 2 +-
src/gen/test/Model/LinksTest.php | 2 +-
src/gen/test/Model/LocationTest.php | 2 +-
src/gen/test/Model/LogOperationTest.php | 2 +-
src/gen/test/Model/LogServiceTest.php | 2 +-
src/gen/test/Model/LogTest.php | 2 +-
src/gen/test/Model/LogsFilterTest.php | 2 +-
src/gen/test/Model/MerchantTest.php | 2 +-
src/gen/test/Model/MessageTest.php | 2 +-
src/gen/test/Model/MetaCursorsTest.php | 2 +-
src/gen/test/Model/MetaTest.php | 2 +-
src/gen/test/Model/ModifierGroupFilterTest.php | 2 +-
src/gen/test/Model/ModifierGroupTest.php | 2 +-
src/gen/test/Model/ModifierTest.php | 2 +-
src/gen/test/Model/NotFoundResponseTest.php | 2 +-
src/gen/test/Model/NotImplementedResponseTest.php | 2 +-
src/gen/test/Model/NoteTest.php | 2 +-
src/gen/test/Model/OAuthGrantTypeTest.php | 2 +-
src/gen/test/Model/OfferTest.php | 2 +-
src/gen/test/Model/OpportunitiesFilterTest.php | 2 +-
src/gen/test/Model/OpportunitiesSortTest.php | 2 +-
src/gen/test/Model/OpportunityTest.php | 2 +-
src/gen/test/Model/OrderCustomersTest.php | 2 +-
src/gen/test/Model/OrderDiscountsTest.php | 2 +-
src/gen/test/Model/OrderFulfillmentsTest.php | 2 +-
src/gen/test/Model/OrderLineItemsTest.php | 2 +-
src/gen/test/Model/OrderPaymentsTest.php | 2 +-
.../OrderPickupDetailsCurbsidePickupDetailsTest.php | 2 +-
src/gen/test/Model/OrderPickupDetailsRecipientTest.php | 2 +-
src/gen/test/Model/OrderPickupDetailsTest.php | 2 +-
src/gen/test/Model/OrderRefundsTest.php | 2 +-
src/gen/test/Model/OrderTendersTest.php | 2 +-
src/gen/test/Model/OrderTest.php | 2 +-
src/gen/test/Model/OrderTypeTest.php | 2 +-
src/gen/test/Model/OwnerTest.php | 2 +-
src/gen/test/Model/PaginationCoverageTest.php | 2 +-
src/gen/test/Model/PassThroughQueryTest.php | 2 +-
src/gen/test/Model/PaymentAllocationsTest.php | 2 +-
src/gen/test/Model/PaymentCardTest.php | 2 +-
src/gen/test/Model/PaymentFrequencyTest.php | 2 +-
src/gen/test/Model/PaymentRequiredResponseTest.php | 2 +-
src/gen/test/Model/PaymentTest.php | 2 +-
src/gen/test/Model/PaymentUnitTest.php | 2 +-
src/gen/test/Model/PaymentsFilterTest.php | 2 +-
src/gen/test/Model/PaymentsSortTest.php | 2 +-
src/gen/test/Model/PayrollTest.php | 2 +-
src/gen/test/Model/PayrollTotalsTest.php | 2 +-
src/gen/test/Model/PayrollsFilterTest.php | 2 +-
src/gen/test/Model/PersonTest.php | 2 +-
src/gen/test/Model/PhoneNumberTest.php | 2 +-
src/gen/test/Model/PipelineStagesTest.php | 2 +-
src/gen/test/Model/PipelineTest.php | 2 +-
src/gen/test/Model/PosBankAccountAchDetailsTest.php | 2 +-
src/gen/test/Model/PosBankAccountTest.php | 2 +-
src/gen/test/Model/PosPaymentCardDetailsTest.php | 2 +-
src/gen/test/Model/PosPaymentExternalDetailsTest.php | 2 +-
src/gen/test/Model/PosPaymentTest.php | 2 +-
src/gen/test/Model/PriceTest.php | 2 +-
src/gen/test/Model/ProbationPeriodTest.php | 2 +-
src/gen/test/Model/ProfitAndLossExpensesTest.php | 2 +-
src/gen/test/Model/ProfitAndLossFilterTest.php | 2 +-
src/gen/test/Model/ProfitAndLossGrossProfitTest.php | 2 +-
src/gen/test/Model/ProfitAndLossIncomeTest.php | 2 +-
src/gen/test/Model/ProfitAndLossNetIncomeTest.php | 2 +-
.../test/Model/ProfitAndLossNetOperatingIncomeTest.php | 2 +-
src/gen/test/Model/ProfitAndLossRecordTest.php | 2 +-
src/gen/test/Model/ProfitAndLossSectionTest.php | 2 +-
src/gen/test/Model/ProfitAndLossTest.php | 2 +-
src/gen/test/Model/PurchaseOrderTest.php | 2 +-
src/gen/test/Model/PurchaseOrdersFilterTest.php | 2 +-
src/gen/test/Model/PurchaseOrdersSortTest.php | 2 +-
src/gen/test/Model/RequestCountAllocationTest.php | 2 +-
src/gen/test/Model/RequestRateTest.php | 2 +-
src/gen/test/Model/ResolveWebhookResponseTest.php | 2 +-
src/gen/test/Model/ResourceExampleTest.php | 2 +-
src/gen/test/Model/ResourceStatusTest.php | 2 +-
src/gen/test/Model/ScheduleTest.php | 2 +-
src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php | 2 +-
src/gen/test/Model/ScheduleWorkPatternTest.php | 2 +-
src/gen/test/Model/SchemaSupportTest.php | 2 +-
src/gen/test/Model/ServiceChargeTest.php | 2 +-
src/gen/test/Model/SessionSettingsTest.php | 2 +-
src/gen/test/Model/SessionTest.php | 2 +-
src/gen/test/Model/SessionThemeTest.php | 2 +-
src/gen/test/Model/SharedLinkTargetTest.php | 2 +-
src/gen/test/Model/SharedLinkTest.php | 2 +-
src/gen/test/Model/SimpleFormFieldOptionTest.php | 2 +-
src/gen/test/Model/SocialLinkTest.php | 2 +-
src/gen/test/Model/SortDirectionTest.php | 2 +-
src/gen/test/Model/StatusTest.php | 2 +-
src/gen/test/Model/SubsidiaryReferenceTest.php | 2 +-
src/gen/test/Model/SubsidiaryTest.php | 2 +-
src/gen/test/Model/SupplierTest.php | 2 +-
src/gen/test/Model/SuppliersFilterTest.php | 2 +-
src/gen/test/Model/SuppliersSortTest.php | 2 +-
src/gen/test/Model/SupportedPropertyTest.php | 2 +-
src/gen/test/Model/TaxRateTest.php | 2 +-
src/gen/test/Model/TaxRatesFilterTest.php | 2 +-
src/gen/test/Model/TaxTest.php | 2 +-
src/gen/test/Model/TeamTest.php | 2 +-
src/gen/test/Model/TenderTest.php | 2 +-
src/gen/test/Model/TicketTest.php | 2 +-
src/gen/test/Model/TicketsSortTest.php | 2 +-
src/gen/test/Model/TimeOffRequestNotesTest.php | 2 +-
src/gen/test/Model/TimeOffRequestTest.php | 2 +-
src/gen/test/Model/TimeOffRequestsFilterTest.php | 2 +-
.../test/Model/TooManyRequestsResponseDetailTest.php | 2 +-
src/gen/test/Model/TooManyRequestsResponseTest.php | 2 +-
src/gen/test/Model/TrackingItemTest.php | 2 +-
src/gen/test/Model/UnauthorizedResponseTest.php | 2 +-
src/gen/test/Model/UnexpectedErrorResponseTest.php | 2 +-
src/gen/test/Model/UnifiedApiIdTest.php | 2 +-
src/gen/test/Model/UnifiedFilePermissionsTest.php | 2 +-
src/gen/test/Model/UnifiedFileTest.php | 2 +-
src/gen/test/Model/UnifiedIdTest.php | 2 +-
src/gen/test/Model/UnprocessableResponseTest.php | 2 +-
.../Model/UpdateAccountingDepartmentResponseTest.php | 2 +-
.../Model/UpdateAccountingLocationResponseTest.php | 2 +-
src/gen/test/Model/UpdateActivityResponseTest.php | 2 +-
src/gen/test/Model/UpdateApplicantResponseTest.php | 2 +-
src/gen/test/Model/UpdateApplicationResponseTest.php | 2 +-
src/gen/test/Model/UpdateBillResponseTest.php | 2 +-
src/gen/test/Model/UpdateCommentResponseTest.php | 2 +-
src/gen/test/Model/UpdateCompanyResponseTest.php | 2 +-
src/gen/test/Model/UpdateConnectionResponseTest.php | 2 +-
src/gen/test/Model/UpdateConsumerRequestTest.php | 2 +-
src/gen/test/Model/UpdateConsumerResponseTest.php | 2 +-
src/gen/test/Model/UpdateContactResponseTest.php | 2 +-
src/gen/test/Model/UpdateCreditNoteResponseTest.php | 2 +-
src/gen/test/Model/UpdateCustomMappingRequestTest.php | 2 +-
src/gen/test/Model/UpdateCustomMappingResponseTest.php | 2 +-
src/gen/test/Model/UpdateCustomerResponseTest.php | 2 +-
src/gen/test/Model/UpdateDepartmentResponseTest.php | 2 +-
src/gen/test/Model/UpdateDriveGroupResponseTest.php | 2 +-
src/gen/test/Model/UpdateDriveResponseTest.php | 2 +-
.../test/Model/UpdateEcommerceCustomerResponseTest.php | 2 +-
.../test/Model/UpdateEcommerceOrderResponseTest.php | 2 +-
src/gen/test/Model/UpdateEmployeeResponseTest.php | 2 +-
src/gen/test/Model/UpdateFileRequestTest.php | 2 +-
src/gen/test/Model/UpdateFileResponseTest.php | 2 +-
src/gen/test/Model/UpdateFolderRequestTest.php | 2 +-
src/gen/test/Model/UpdateFolderResponseTest.php | 2 +-
src/gen/test/Model/UpdateHrisCompanyResponseTest.php | 2 +-
src/gen/test/Model/UpdateInvoiceItemsResponseTest.php | 2 +-
src/gen/test/Model/UpdateInvoiceResponseTest.php | 2 +-
src/gen/test/Model/UpdateItemResponseTest.php | 2 +-
src/gen/test/Model/UpdateJobResponseTest.php | 2 +-
src/gen/test/Model/UpdateJournalEntryResponseTest.php | 2 +-
src/gen/test/Model/UpdateLeadResponseTest.php | 2 +-
src/gen/test/Model/UpdateLedgerAccountResponseTest.php | 2 +-
src/gen/test/Model/UpdateLocationResponseTest.php | 2 +-
src/gen/test/Model/UpdateMerchantResponseTest.php | 2 +-
src/gen/test/Model/UpdateMessageResponseTest.php | 2 +-
src/gen/test/Model/UpdateModifierGroupResponseTest.php | 2 +-
src/gen/test/Model/UpdateModifierResponseTest.php | 2 +-
src/gen/test/Model/UpdateNoteResponseTest.php | 2 +-
src/gen/test/Model/UpdateOpportunityResponseTest.php | 2 +-
src/gen/test/Model/UpdateOrderResponseTest.php | 2 +-
src/gen/test/Model/UpdateOrderTypeResponseTest.php | 2 +-
src/gen/test/Model/UpdatePaymentResponseTest.php | 2 +-
src/gen/test/Model/UpdatePipelineResponseTest.php | 2 +-
src/gen/test/Model/UpdatePosPaymentResponseTest.php | 2 +-
src/gen/test/Model/UpdateProductResponseTest.php | 2 +-
src/gen/test/Model/UpdatePurchaseOrderResponseTest.php | 2 +-
src/gen/test/Model/UpdateSharedLinkResponseTest.php | 2 +-
src/gen/test/Model/UpdateSubsidiaryResponseTest.php | 2 +-
src/gen/test/Model/UpdateSupplierResponseTest.php | 2 +-
src/gen/test/Model/UpdateTaxRateResponseTest.php | 2 +-
src/gen/test/Model/UpdateTenderResponseTest.php | 2 +-
src/gen/test/Model/UpdateTicketResponseTest.php | 2 +-
.../test/Model/UpdateTimeOffRequestResponseTest.php | 2 +-
src/gen/test/Model/UpdateUploadSessionResponseTest.php | 2 +-
src/gen/test/Model/UpdateUserResponseTest.php | 2 +-
src/gen/test/Model/UpdateWebhookRequestTest.php | 2 +-
src/gen/test/Model/UpdateWebhookResponseTest.php | 2 +-
src/gen/test/Model/UploadSessionTest.php | 2 +-
src/gen/test/Model/UserTest.php | 2 +-
src/gen/test/Model/VaultEventTypeTest.php | 2 +-
src/gen/test/Model/VirtualWebhooksTest.php | 2 +-
src/gen/test/Model/WalletDetailsTest.php | 2 +-
src/gen/test/Model/WebhookEventLogAttemptsTest.php | 2 +-
src/gen/test/Model/WebhookEventLogServiceTest.php | 2 +-
src/gen/test/Model/WebhookEventLogTest.php | 2 +-
.../test/Model/WebhookEventLogsFilterServiceTest.php | 2 +-
src/gen/test/Model/WebhookEventLogsFilterTest.php | 2 +-
src/gen/test/Model/WebhookEventTest.php | 2 +-
src/gen/test/Model/WebhookEventTypeTest.php | 2 +-
src/gen/test/Model/WebhookSubscriptionTest.php | 2 +-
src/gen/test/Model/WebhookSupportTest.php | 2 +-
src/gen/test/Model/WebhookTest.php | 2 +-
src/gen/test/Model/WebsiteTest.php | 2 +-
1297 files changed, 1320 insertions(+), 1304 deletions(-)
diff --git a/src/gen/docs/models/UnauthorizedResponse.md b/src/gen/docs/models/UnauthorizedResponse.md
index 4f5becbb52..8a77b35067 100644
--- a/src/gen/docs/models/UnauthorizedResponse.md
+++ b/src/gen/docs/models/UnauthorizedResponse.md
@@ -9,13 +9,21 @@ Name | Type | Description | Notes
`error` | **string** | Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231) | [optional]
`type_name` | **string** | The type of error returned | [optional]
`message` | **string** | A human-readable message providing more details about the error. | [optional]
-`detail` | **string** | Contains parameter or domain specific information related to the error and why it occurred. | [optional]
+`detail` | [**AnyOfStringObject**](AnyOfStringObject.md) | Contains parameter or domain specific information related to the error and why it occurred. | [optional]
`ref` | **string** | Link to documentation of error type | [optional]
+## Referenced Types:
+
+
+
+
+* [`AnyOfStringObject`](AnyOfStringObject.md)
+
+
---
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
diff --git a/src/gen/docs/models/UnprocessableResponse.md b/src/gen/docs/models/UnprocessableResponse.md
index d4b71f1628..0e39d4e126 100644
--- a/src/gen/docs/models/UnprocessableResponse.md
+++ b/src/gen/docs/models/UnprocessableResponse.md
@@ -9,13 +9,21 @@ Name | Type | Description | Notes
`error` | **string** | Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231) | [optional]
`type_name` | **string** | The type of error returned | [optional]
`message` | **string** | A human-readable message providing more details about the error. | [optional]
-`detail` | **string** | Contains parameter or domain specific information related to the error and why it occurred. | [optional]
+`detail` | [**AnyOfStringObject**](AnyOfStringObject.md) | Contains parameter or domain specific information related to the error and why it occurred. | [optional]
`ref` | **string** | Link to documentation of error type | [optional]
+## Referenced Types:
+
+
+
+
+* [`AnyOfStringObject`](AnyOfStringObject.md)
+
+
---
[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md)
diff --git a/src/gen/lib/Api/AccountingApi.php b/src/gen/lib/Api/AccountingApi.php
index 3421b4db18..4115eb52ea 100644
--- a/src/gen/lib/Api/AccountingApi.php
+++ b/src/gen/lib/Api/AccountingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/AtsApi.php b/src/gen/lib/Api/AtsApi.php
index 07cb88e845..1ff5446d1d 100644
--- a/src/gen/lib/Api/AtsApi.php
+++ b/src/gen/lib/Api/AtsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/ConnectorApi.php b/src/gen/lib/Api/ConnectorApi.php
index bd4cf1c2b4..4705d3313c 100644
--- a/src/gen/lib/Api/ConnectorApi.php
+++ b/src/gen/lib/Api/ConnectorApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/CrmApi.php b/src/gen/lib/Api/CrmApi.php
index 93aa1b4fb8..aa1528348b 100644
--- a/src/gen/lib/Api/CrmApi.php
+++ b/src/gen/lib/Api/CrmApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/EcommerceApi.php b/src/gen/lib/Api/EcommerceApi.php
index d73397cf14..7b0ed9e4da 100644
--- a/src/gen/lib/Api/EcommerceApi.php
+++ b/src/gen/lib/Api/EcommerceApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/FileStorageApi.php b/src/gen/lib/Api/FileStorageApi.php
index ef0472836a..241e283be1 100644
--- a/src/gen/lib/Api/FileStorageApi.php
+++ b/src/gen/lib/Api/FileStorageApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/HrisApi.php b/src/gen/lib/Api/HrisApi.php
index 0baf78294c..79cd407ec7 100644
--- a/src/gen/lib/Api/HrisApi.php
+++ b/src/gen/lib/Api/HrisApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/IssueTrackingApi.php b/src/gen/lib/Api/IssueTrackingApi.php
index 0ab1a354c1..cea24066f7 100644
--- a/src/gen/lib/Api/IssueTrackingApi.php
+++ b/src/gen/lib/Api/IssueTrackingApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/LeadApi.php b/src/gen/lib/Api/LeadApi.php
index a84dcb1cd4..9d6850b599 100644
--- a/src/gen/lib/Api/LeadApi.php
+++ b/src/gen/lib/Api/LeadApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/PosApi.php b/src/gen/lib/Api/PosApi.php
index 19e1101fea..87bb2a28b8 100644
--- a/src/gen/lib/Api/PosApi.php
+++ b/src/gen/lib/Api/PosApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/SmsApi.php b/src/gen/lib/Api/SmsApi.php
index 1939842a40..2d1d54da36 100644
--- a/src/gen/lib/Api/SmsApi.php
+++ b/src/gen/lib/Api/SmsApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/VaultApi.php b/src/gen/lib/Api/VaultApi.php
index a03bd5b6c7..556e771a04 100644
--- a/src/gen/lib/Api/VaultApi.php
+++ b/src/gen/lib/Api/VaultApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Api/WebhookApi.php b/src/gen/lib/Api/WebhookApi.php
index 23dcbd5117..57e6d023f9 100644
--- a/src/gen/lib/Api/WebhookApi.php
+++ b/src/gen/lib/Api/WebhookApi.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ApiException.php b/src/gen/lib/ApiException.php
index 3c1ea9a648..f0902d88bd 100644
--- a/src/gen/lib/ApiException.php
+++ b/src/gen/lib/ApiException.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Configuration.php b/src/gen/lib/Configuration.php
index 61e7357305..43a8ab1afa 100644
--- a/src/gen/lib/Configuration.php
+++ b/src/gen/lib/Configuration.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -447,7 +447,7 @@ public static function toDebugReport()
$report = 'PHP SDK (Apideck\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: 10.3.0' . PHP_EOL;
+ $report .= ' The version of the OpenAPI document: 10.3.1' . PHP_EOL;
$report .= ' SDK Package Version: 3.2.0' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
diff --git a/src/gen/lib/HeaderSelector.php b/src/gen/lib/HeaderSelector.php
index 07e4060f4e..5fbdbe71aa 100644
--- a/src/gen/lib/HeaderSelector.php
+++ b/src/gen/lib/HeaderSelector.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingDepartment.php b/src/gen/lib/Model/AccountingDepartment.php
index 784bea1ae2..cc6530cf41 100644
--- a/src/gen/lib/Model/AccountingDepartment.php
+++ b/src/gen/lib/Model/AccountingDepartment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingDepartmentsFilter.php b/src/gen/lib/Model/AccountingDepartmentsFilter.php
index 7a774bbc9e..28a35d389a 100644
--- a/src/gen/lib/Model/AccountingDepartmentsFilter.php
+++ b/src/gen/lib/Model/AccountingDepartmentsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingEventType.php b/src/gen/lib/Model/AccountingEventType.php
index a94721a42b..62f53c634c 100644
--- a/src/gen/lib/Model/AccountingEventType.php
+++ b/src/gen/lib/Model/AccountingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingLocation.php b/src/gen/lib/Model/AccountingLocation.php
index 9e9a1c1235..90472ba082 100644
--- a/src/gen/lib/Model/AccountingLocation.php
+++ b/src/gen/lib/Model/AccountingLocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AccountingLocationsFilter.php b/src/gen/lib/Model/AccountingLocationsFilter.php
index 2100b82771..4aa6dd9f3f 100644
--- a/src/gen/lib/Model/AccountingLocationsFilter.php
+++ b/src/gen/lib/Model/AccountingLocationsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivitiesFilter.php b/src/gen/lib/Model/ActivitiesFilter.php
index 37b123ce53..3c7a1b64d4 100644
--- a/src/gen/lib/Model/ActivitiesFilter.php
+++ b/src/gen/lib/Model/ActivitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivitiesSort.php b/src/gen/lib/Model/ActivitiesSort.php
index f8ae66b52a..673e8cf3e3 100644
--- a/src/gen/lib/Model/ActivitiesSort.php
+++ b/src/gen/lib/Model/ActivitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Activity.php b/src/gen/lib/Model/Activity.php
index 781a71e690..894a19ef3b 100644
--- a/src/gen/lib/Model/Activity.php
+++ b/src/gen/lib/Model/Activity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ActivityAttendee.php b/src/gen/lib/Model/ActivityAttendee.php
index 77ec862a63..eef9b28f4d 100644
--- a/src/gen/lib/Model/ActivityAttendee.php
+++ b/src/gen/lib/Model/ActivityAttendee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Address.php b/src/gen/lib/Model/Address.php
index d3ecce4e5f..9762085110 100644
--- a/src/gen/lib/Model/Address.php
+++ b/src/gen/lib/Model/Address.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Api.php b/src/gen/lib/Model/Api.php
index a6cdba9341..f93b3f9894 100644
--- a/src/gen/lib/Model/Api.php
+++ b/src/gen/lib/Model/Api.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResource.php b/src/gen/lib/Model/ApiResource.php
index d9d77882bd..4b0ece4415 100644
--- a/src/gen/lib/Model/ApiResource.php
+++ b/src/gen/lib/Model/ApiResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverage.php b/src/gen/lib/Model/ApiResourceCoverage.php
index ba988379b0..50caa567af 100644
--- a/src/gen/lib/Model/ApiResourceCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceCoverageCoverage.php b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
index d392222c43..76c4ecd197 100644
--- a/src/gen/lib/Model/ApiResourceCoverageCoverage.php
+++ b/src/gen/lib/Model/ApiResourceCoverageCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResourceLinkedResources.php b/src/gen/lib/Model/ApiResourceLinkedResources.php
index 6d72e5dae3..ef7263f69b 100644
--- a/src/gen/lib/Model/ApiResourceLinkedResources.php
+++ b/src/gen/lib/Model/ApiResourceLinkedResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiResources.php b/src/gen/lib/Model/ApiResources.php
index e0b2d81fe0..69cfd8bee9 100644
--- a/src/gen/lib/Model/ApiResources.php
+++ b/src/gen/lib/Model/ApiResources.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApiStatus.php b/src/gen/lib/Model/ApiStatus.php
index 0f7574005c..60ed1dadbe 100644
--- a/src/gen/lib/Model/ApiStatus.php
+++ b/src/gen/lib/Model/ApiStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApisFilter.php b/src/gen/lib/Model/ApisFilter.php
index 3eaf50db21..96607a9069 100644
--- a/src/gen/lib/Model/ApisFilter.php
+++ b/src/gen/lib/Model/ApisFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Applicant.php b/src/gen/lib/Model/Applicant.php
index fd628f2c1f..d902f1ed5c 100644
--- a/src/gen/lib/Model/Applicant.php
+++ b/src/gen/lib/Model/Applicant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantSocialLinks.php b/src/gen/lib/Model/ApplicantSocialLinks.php
index 830a1cc056..3746e6f513 100644
--- a/src/gen/lib/Model/ApplicantSocialLinks.php
+++ b/src/gen/lib/Model/ApplicantSocialLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantWebsites.php b/src/gen/lib/Model/ApplicantWebsites.php
index 79deea58c6..03370c412e 100644
--- a/src/gen/lib/Model/ApplicantWebsites.php
+++ b/src/gen/lib/Model/ApplicantWebsites.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicantsFilter.php b/src/gen/lib/Model/ApplicantsFilter.php
index ce3a619e5e..065e1d562b 100644
--- a/src/gen/lib/Model/ApplicantsFilter.php
+++ b/src/gen/lib/Model/ApplicantsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Application.php b/src/gen/lib/Model/Application.php
index 8841abe8f2..26b6dfc472 100644
--- a/src/gen/lib/Model/Application.php
+++ b/src/gen/lib/Model/Application.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ApplicationStage.php b/src/gen/lib/Model/ApplicationStage.php
index 8ffe285c61..0b3207836b 100644
--- a/src/gen/lib/Model/ApplicationStage.php
+++ b/src/gen/lib/Model/ApplicationStage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Assignee.php b/src/gen/lib/Model/Assignee.php
index 9597404d2b..4efcf3d679 100644
--- a/src/gen/lib/Model/Assignee.php
+++ b/src/gen/lib/Model/Assignee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsActivity.php b/src/gen/lib/Model/AtsActivity.php
index f195b1b206..1d675a4d96 100644
--- a/src/gen/lib/Model/AtsActivity.php
+++ b/src/gen/lib/Model/AtsActivity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AtsEventType.php b/src/gen/lib/Model/AtsEventType.php
index 218bd9ac46..b250198116 100644
--- a/src/gen/lib/Model/AtsEventType.php
+++ b/src/gen/lib/Model/AtsEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/AuthType.php b/src/gen/lib/Model/AuthType.php
index 98709a3787..9f2e70fdb5 100644
--- a/src/gen/lib/Model/AuthType.php
+++ b/src/gen/lib/Model/AuthType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BadRequestResponse.php b/src/gen/lib/Model/BadRequestResponse.php
index ca66591230..b358ad1124 100644
--- a/src/gen/lib/Model/BadRequestResponse.php
+++ b/src/gen/lib/Model/BadRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheet.php b/src/gen/lib/Model/BalanceSheet.php
index b1c0b67ef1..d2d53a5e0f 100644
--- a/src/gen/lib/Model/BalanceSheet.php
+++ b/src/gen/lib/Model/BalanceSheet.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssets.php b/src/gen/lib/Model/BalanceSheetAssets.php
index bcb50b900a..4e72cb3dc0 100644
--- a/src/gen/lib/Model/BalanceSheetAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
index 96bca01563..e914d5cee3 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
index 51243bb286..6804ef01d8 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsCurrentAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
index 8cf18f5dcb..2211749320 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssets.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
index 19a75ccae4..be971c8a7c 100644
--- a/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetAssetsFixedAssetsAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquity.php b/src/gen/lib/Model/BalanceSheetEquity.php
index 65a81982f6..7f3e1ced99 100644
--- a/src/gen/lib/Model/BalanceSheetEquity.php
+++ b/src/gen/lib/Model/BalanceSheetEquity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetEquityItems.php b/src/gen/lib/Model/BalanceSheetEquityItems.php
index 19bbe98277..6930313287 100644
--- a/src/gen/lib/Model/BalanceSheetEquityItems.php
+++ b/src/gen/lib/Model/BalanceSheetEquityItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetFilter.php b/src/gen/lib/Model/BalanceSheetFilter.php
index 9dac0c8c4f..81fc2ed09b 100644
--- a/src/gen/lib/Model/BalanceSheetFilter.php
+++ b/src/gen/lib/Model/BalanceSheetFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilities.php b/src/gen/lib/Model/BalanceSheetLiabilities.php
index 355771a4d8..ec64b9ef35 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilities.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilities.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
index 59b92a9de2..c2c9e7302d 100644
--- a/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
+++ b/src/gen/lib/Model/BalanceSheetLiabilitiesAccounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BankAccount.php b/src/gen/lib/Model/BankAccount.php
index 71462e9270..3fd4fdd463 100644
--- a/src/gen/lib/Model/BankAccount.php
+++ b/src/gen/lib/Model/BankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Benefit.php b/src/gen/lib/Model/Benefit.php
index 0b66fc99bf..0dd4d285c2 100644
--- a/src/gen/lib/Model/Benefit.php
+++ b/src/gen/lib/Model/Benefit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Bill.php b/src/gen/lib/Model/Bill.php
index 0305e698c1..bafa2e60ce 100644
--- a/src/gen/lib/Model/Bill.php
+++ b/src/gen/lib/Model/Bill.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillLineItem.php b/src/gen/lib/Model/BillLineItem.php
index 82ec2f126c..9fb0b9112d 100644
--- a/src/gen/lib/Model/BillLineItem.php
+++ b/src/gen/lib/Model/BillLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsFilter.php b/src/gen/lib/Model/BillsFilter.php
index 8c1d804e15..f00b2162e4 100644
--- a/src/gen/lib/Model/BillsFilter.php
+++ b/src/gen/lib/Model/BillsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/BillsSort.php b/src/gen/lib/Model/BillsSort.php
index 1a3fd8205e..0038617796 100644
--- a/src/gen/lib/Model/BillsSort.php
+++ b/src/gen/lib/Model/BillsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Branch.php b/src/gen/lib/Model/Branch.php
index 2aee971a51..08c23665d6 100644
--- a/src/gen/lib/Model/Branch.php
+++ b/src/gen/lib/Model/Branch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CashDetails.php b/src/gen/lib/Model/CashDetails.php
index 5b69d97009..ed4714c82b 100644
--- a/src/gen/lib/Model/CashDetails.php
+++ b/src/gen/lib/Model/CashDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Collection.php b/src/gen/lib/Model/Collection.php
index a259f01886..f0a989f57a 100644
--- a/src/gen/lib/Model/Collection.php
+++ b/src/gen/lib/Model/Collection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTag.php b/src/gen/lib/Model/CollectionTag.php
index a191cb1574..347c7d9204 100644
--- a/src/gen/lib/Model/CollectionTag.php
+++ b/src/gen/lib/Model/CollectionTag.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionTicketComment.php b/src/gen/lib/Model/CollectionTicketComment.php
index e37be50a56..565059b3bc 100644
--- a/src/gen/lib/Model/CollectionTicketComment.php
+++ b/src/gen/lib/Model/CollectionTicketComment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionUser.php b/src/gen/lib/Model/CollectionUser.php
index 6faa803e45..2e0dcb8a3c 100644
--- a/src/gen/lib/Model/CollectionUser.php
+++ b/src/gen/lib/Model/CollectionUser.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CollectionsSort.php b/src/gen/lib/Model/CollectionsSort.php
index ac130dc371..3e2ad892b3 100644
--- a/src/gen/lib/Model/CollectionsSort.php
+++ b/src/gen/lib/Model/CollectionsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CommentsSort.php b/src/gen/lib/Model/CommentsSort.php
index 7d94fd85a3..0d5f050994 100644
--- a/src/gen/lib/Model/CommentsSort.php
+++ b/src/gen/lib/Model/CommentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesFilter.php b/src/gen/lib/Model/CompaniesFilter.php
index 46f3dd28e8..43e750eb3a 100644
--- a/src/gen/lib/Model/CompaniesFilter.php
+++ b/src/gen/lib/Model/CompaniesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompaniesSort.php b/src/gen/lib/Model/CompaniesSort.php
index f040a8b298..f1dc59aeff 100644
--- a/src/gen/lib/Model/CompaniesSort.php
+++ b/src/gen/lib/Model/CompaniesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Company.php b/src/gen/lib/Model/Company.php
index be17f3483c..510b39a649 100644
--- a/src/gen/lib/Model/Company.php
+++ b/src/gen/lib/Model/Company.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyInfo.php b/src/gen/lib/Model/CompanyInfo.php
index a7437d38f4..90ae52e37a 100644
--- a/src/gen/lib/Model/CompanyInfo.php
+++ b/src/gen/lib/Model/CompanyInfo.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CompanyRowType.php b/src/gen/lib/Model/CompanyRowType.php
index 4bd7026724..53f465e79b 100644
--- a/src/gen/lib/Model/CompanyRowType.php
+++ b/src/gen/lib/Model/CompanyRowType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Compensation.php b/src/gen/lib/Model/Compensation.php
index f4ea86268d..eeaac186b2 100644
--- a/src/gen/lib/Model/Compensation.php
+++ b/src/gen/lib/Model/Compensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connection.php b/src/gen/lib/Model/Connection.php
index 23b45c0a90..2ec0dfcfbd 100644
--- a/src/gen/lib/Model/Connection.php
+++ b/src/gen/lib/Model/Connection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionConfiguration.php b/src/gen/lib/Model/ConnectionConfiguration.php
index 2b75044805..8befe75180 100644
--- a/src/gen/lib/Model/ConnectionConfiguration.php
+++ b/src/gen/lib/Model/ConnectionConfiguration.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionDefaults.php b/src/gen/lib/Model/ConnectionDefaults.php
index 24d105ae70..8b7eeb8068 100644
--- a/src/gen/lib/Model/ConnectionDefaults.php
+++ b/src/gen/lib/Model/ConnectionDefaults.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportData.php b/src/gen/lib/Model/ConnectionImportData.php
index 382006065d..e43ac052ef 100644
--- a/src/gen/lib/Model/ConnectionImportData.php
+++ b/src/gen/lib/Model/ConnectionImportData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionImportDataCredentials.php b/src/gen/lib/Model/ConnectionImportDataCredentials.php
index 70583da80f..4dc43e3358 100644
--- a/src/gen/lib/Model/ConnectionImportDataCredentials.php
+++ b/src/gen/lib/Model/ConnectionImportDataCredentials.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionMetadata.php b/src/gen/lib/Model/ConnectionMetadata.php
index fa96ad66fb..11a2cb370f 100644
--- a/src/gen/lib/Model/ConnectionMetadata.php
+++ b/src/gen/lib/Model/ConnectionMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionState.php b/src/gen/lib/Model/ConnectionState.php
index 04c2cbc1e8..445b03cd52 100644
--- a/src/gen/lib/Model/ConnectionState.php
+++ b/src/gen/lib/Model/ConnectionState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectionWebhook.php b/src/gen/lib/Model/ConnectionWebhook.php
index 19334ec301..c7e7638a4b 100644
--- a/src/gen/lib/Model/ConnectionWebhook.php
+++ b/src/gen/lib/Model/ConnectionWebhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Connector.php b/src/gen/lib/Model/Connector.php
index 0428de6644..cd9871f727 100644
--- a/src/gen/lib/Model/Connector.php
+++ b/src/gen/lib/Model/Connector.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorDoc.php b/src/gen/lib/Model/ConnectorDoc.php
index 3c16378f53..95fa95293f 100644
--- a/src/gen/lib/Model/ConnectorDoc.php
+++ b/src/gen/lib/Model/ConnectorDoc.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorEvent.php b/src/gen/lib/Model/ConnectorEvent.php
index f8a47ebfac..53f169f0ab 100644
--- a/src/gen/lib/Model/ConnectorEvent.php
+++ b/src/gen/lib/Model/ConnectorEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes.php b/src/gen/lib/Model/ConnectorOauthScopes.php
index cb4990ba72..b003dbe3d3 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorOauthScopes1.php b/src/gen/lib/Model/ConnectorOauthScopes1.php
index 02dbdd9c81..a6ab19e7ea 100644
--- a/src/gen/lib/Model/ConnectorOauthScopes1.php
+++ b/src/gen/lib/Model/ConnectorOauthScopes1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorResource.php b/src/gen/lib/Model/ConnectorResource.php
index fc151c0ef9..63508973b2 100644
--- a/src/gen/lib/Model/ConnectorResource.php
+++ b/src/gen/lib/Model/ConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorSetting.php b/src/gen/lib/Model/ConnectorSetting.php
index 90b6adde9e..14d8c60321 100644
--- a/src/gen/lib/Model/ConnectorSetting.php
+++ b/src/gen/lib/Model/ConnectorSetting.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorStatus.php b/src/gen/lib/Model/ConnectorStatus.php
index bd2633cb97..8071d560dc 100644
--- a/src/gen/lib/Model/ConnectorStatus.php
+++ b/src/gen/lib/Model/ConnectorStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorTlsSupport.php b/src/gen/lib/Model/ConnectorTlsSupport.php
index b02c118cf7..10cbc6b0c9 100644
--- a/src/gen/lib/Model/ConnectorTlsSupport.php
+++ b/src/gen/lib/Model/ConnectorTlsSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorUnifiedApis.php b/src/gen/lib/Model/ConnectorUnifiedApis.php
index 05949661ff..be5c55c079 100644
--- a/src/gen/lib/Model/ConnectorUnifiedApis.php
+++ b/src/gen/lib/Model/ConnectorUnifiedApis.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConnectorsFilter.php b/src/gen/lib/Model/ConnectorsFilter.php
index 0925849d8b..62855d3f0e 100644
--- a/src/gen/lib/Model/ConnectorsFilter.php
+++ b/src/gen/lib/Model/ConnectorsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Consumer.php b/src/gen/lib/Model/Consumer.php
index 92f90e10d1..36df8f97ba 100644
--- a/src/gen/lib/Model/Consumer.php
+++ b/src/gen/lib/Model/Consumer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerConnection.php b/src/gen/lib/Model/ConsumerConnection.php
index 53f645a66a..1247febc06 100644
--- a/src/gen/lib/Model/ConsumerConnection.php
+++ b/src/gen/lib/Model/ConsumerConnection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerMetadata.php b/src/gen/lib/Model/ConsumerMetadata.php
index 26ebbb0d70..cff4adaba6 100644
--- a/src/gen/lib/Model/ConsumerMetadata.php
+++ b/src/gen/lib/Model/ConsumerMetadata.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
index b07db6f552..a83c3dad5a 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
index c514a7bfc3..d91afcc0fb 100644
--- a/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
+++ b/src/gen/lib/Model/ConsumerRequestCountsInDateRangeResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Contact.php b/src/gen/lib/Model/Contact.php
index ec23b9fabc..a623ad1801 100644
--- a/src/gen/lib/Model/Contact.php
+++ b/src/gen/lib/Model/Contact.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsFilter.php b/src/gen/lib/Model/ContactsFilter.php
index ce4bc1bec9..77be4ee78c 100644
--- a/src/gen/lib/Model/ContactsFilter.php
+++ b/src/gen/lib/Model/ContactsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ContactsSort.php b/src/gen/lib/Model/ContactsSort.php
index 825eea9021..ff18deb3e0 100644
--- a/src/gen/lib/Model/ContactsSort.php
+++ b/src/gen/lib/Model/ContactsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CopyFolderRequest.php b/src/gen/lib/Model/CopyFolderRequest.php
index 24a30a20f3..d51510e599 100644
--- a/src/gen/lib/Model/CopyFolderRequest.php
+++ b/src/gen/lib/Model/CopyFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateAccountingDepartmentResponse.php b/src/gen/lib/Model/CreateAccountingDepartmentResponse.php
index a4fdaa9de6..ace180a730 100644
--- a/src/gen/lib/Model/CreateAccountingDepartmentResponse.php
+++ b/src/gen/lib/Model/CreateAccountingDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateAccountingLocationResponse.php b/src/gen/lib/Model/CreateAccountingLocationResponse.php
index a0f2d444e9..95c341168a 100644
--- a/src/gen/lib/Model/CreateAccountingLocationResponse.php
+++ b/src/gen/lib/Model/CreateAccountingLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateActivityResponse.php b/src/gen/lib/Model/CreateActivityResponse.php
index abdea7f9c0..fdbd02866c 100644
--- a/src/gen/lib/Model/CreateActivityResponse.php
+++ b/src/gen/lib/Model/CreateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicantResponse.php b/src/gen/lib/Model/CreateApplicantResponse.php
index 983abcce8b..4de512866b 100644
--- a/src/gen/lib/Model/CreateApplicantResponse.php
+++ b/src/gen/lib/Model/CreateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateApplicationResponse.php b/src/gen/lib/Model/CreateApplicationResponse.php
index b8c8673512..75965a3b98 100644
--- a/src/gen/lib/Model/CreateApplicationResponse.php
+++ b/src/gen/lib/Model/CreateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateBillResponse.php b/src/gen/lib/Model/CreateBillResponse.php
index 06c3e8a436..c86d2fb955 100644
--- a/src/gen/lib/Model/CreateBillResponse.php
+++ b/src/gen/lib/Model/CreateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCommentResponse.php b/src/gen/lib/Model/CreateCommentResponse.php
index 45d10b2139..06de7baa0f 100644
--- a/src/gen/lib/Model/CreateCommentResponse.php
+++ b/src/gen/lib/Model/CreateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCompanyResponse.php b/src/gen/lib/Model/CreateCompanyResponse.php
index 8759724372..b1f4de7a49 100644
--- a/src/gen/lib/Model/CreateCompanyResponse.php
+++ b/src/gen/lib/Model/CreateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConnectionResponse.php b/src/gen/lib/Model/CreateConnectionResponse.php
index e5050f4901..3ee92f849f 100644
--- a/src/gen/lib/Model/CreateConnectionResponse.php
+++ b/src/gen/lib/Model/CreateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateConsumerResponse.php b/src/gen/lib/Model/CreateConsumerResponse.php
index 48e8d0fccf..373a533f1c 100644
--- a/src/gen/lib/Model/CreateConsumerResponse.php
+++ b/src/gen/lib/Model/CreateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateContactResponse.php b/src/gen/lib/Model/CreateContactResponse.php
index 76bacdc4b8..b69af25758 100644
--- a/src/gen/lib/Model/CreateContactResponse.php
+++ b/src/gen/lib/Model/CreateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCreditNoteResponse.php b/src/gen/lib/Model/CreateCreditNoteResponse.php
index 7ef11e8e92..05cd11bf4e 100644
--- a/src/gen/lib/Model/CreateCreditNoteResponse.php
+++ b/src/gen/lib/Model/CreateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingRequest.php b/src/gen/lib/Model/CreateCustomMappingRequest.php
index 3919803846..f4d29d754e 100644
--- a/src/gen/lib/Model/CreateCustomMappingRequest.php
+++ b/src/gen/lib/Model/CreateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomMappingResponse.php b/src/gen/lib/Model/CreateCustomMappingResponse.php
index 6c8937b4ff..e115d32104 100644
--- a/src/gen/lib/Model/CreateCustomMappingResponse.php
+++ b/src/gen/lib/Model/CreateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateCustomerResponse.php b/src/gen/lib/Model/CreateCustomerResponse.php
index 7fe28aa7de..b7a6e4f4fc 100644
--- a/src/gen/lib/Model/CreateCustomerResponse.php
+++ b/src/gen/lib/Model/CreateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDepartmentResponse.php b/src/gen/lib/Model/CreateDepartmentResponse.php
index 586bacbd81..aef886e823 100644
--- a/src/gen/lib/Model/CreateDepartmentResponse.php
+++ b/src/gen/lib/Model/CreateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveGroupResponse.php b/src/gen/lib/Model/CreateDriveGroupResponse.php
index 124020bc48..33aee4212c 100644
--- a/src/gen/lib/Model/CreateDriveGroupResponse.php
+++ b/src/gen/lib/Model/CreateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateDriveResponse.php b/src/gen/lib/Model/CreateDriveResponse.php
index fa09cc9835..2e33bec5f2 100644
--- a/src/gen/lib/Model/CreateDriveResponse.php
+++ b/src/gen/lib/Model/CreateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
index b7b2f3a95e..a9edd8e729 100644
--- a/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEcommerceOrderResponse.php b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
index 298532d4e5..a58fe76840 100644
--- a/src/gen/lib/Model/CreateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/CreateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateEmployeeResponse.php b/src/gen/lib/Model/CreateEmployeeResponse.php
index fc14a137cf..64afa0ead9 100644
--- a/src/gen/lib/Model/CreateEmployeeResponse.php
+++ b/src/gen/lib/Model/CreateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileRequest.php b/src/gen/lib/Model/CreateFileRequest.php
index 97bcc879db..a352358fdf 100644
--- a/src/gen/lib/Model/CreateFileRequest.php
+++ b/src/gen/lib/Model/CreateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFileResponse.php b/src/gen/lib/Model/CreateFileResponse.php
index 2a56e39164..18dd75bc62 100644
--- a/src/gen/lib/Model/CreateFileResponse.php
+++ b/src/gen/lib/Model/CreateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderRequest.php b/src/gen/lib/Model/CreateFolderRequest.php
index 6df004cd4e..72cee580ec 100644
--- a/src/gen/lib/Model/CreateFolderRequest.php
+++ b/src/gen/lib/Model/CreateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateFolderResponse.php b/src/gen/lib/Model/CreateFolderResponse.php
index 1533de8952..1cb561e3da 100644
--- a/src/gen/lib/Model/CreateFolderResponse.php
+++ b/src/gen/lib/Model/CreateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateHrisCompanyResponse.php b/src/gen/lib/Model/CreateHrisCompanyResponse.php
index 923e7d0de3..b187ce99dc 100644
--- a/src/gen/lib/Model/CreateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/CreateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceItemResponse.php b/src/gen/lib/Model/CreateInvoiceItemResponse.php
index debb4b5809..6c5e6144f8 100644
--- a/src/gen/lib/Model/CreateInvoiceItemResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateInvoiceResponse.php b/src/gen/lib/Model/CreateInvoiceResponse.php
index 6e1341965f..418573bc97 100644
--- a/src/gen/lib/Model/CreateInvoiceResponse.php
+++ b/src/gen/lib/Model/CreateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateItemResponse.php b/src/gen/lib/Model/CreateItemResponse.php
index 4aa7631130..b5243b1940 100644
--- a/src/gen/lib/Model/CreateItemResponse.php
+++ b/src/gen/lib/Model/CreateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJobResponse.php b/src/gen/lib/Model/CreateJobResponse.php
index 2f796528a2..c1237c9443 100644
--- a/src/gen/lib/Model/CreateJobResponse.php
+++ b/src/gen/lib/Model/CreateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateJournalEntryResponse.php b/src/gen/lib/Model/CreateJournalEntryResponse.php
index 6e3cd8e6b4..4f40ff1cd0 100644
--- a/src/gen/lib/Model/CreateJournalEntryResponse.php
+++ b/src/gen/lib/Model/CreateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLeadResponse.php b/src/gen/lib/Model/CreateLeadResponse.php
index b509163e87..b68bc2c68b 100644
--- a/src/gen/lib/Model/CreateLeadResponse.php
+++ b/src/gen/lib/Model/CreateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLedgerAccountResponse.php b/src/gen/lib/Model/CreateLedgerAccountResponse.php
index 54144d8cb5..d6fba8b19a 100644
--- a/src/gen/lib/Model/CreateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/CreateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateLocationResponse.php b/src/gen/lib/Model/CreateLocationResponse.php
index fde200b0ec..3a5a576d28 100644
--- a/src/gen/lib/Model/CreateLocationResponse.php
+++ b/src/gen/lib/Model/CreateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMerchantResponse.php b/src/gen/lib/Model/CreateMerchantResponse.php
index 2841c5a8b7..09fdc2a571 100644
--- a/src/gen/lib/Model/CreateMerchantResponse.php
+++ b/src/gen/lib/Model/CreateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateMessageResponse.php b/src/gen/lib/Model/CreateMessageResponse.php
index 04fef1873b..0190e97a23 100644
--- a/src/gen/lib/Model/CreateMessageResponse.php
+++ b/src/gen/lib/Model/CreateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierGroupResponse.php b/src/gen/lib/Model/CreateModifierGroupResponse.php
index 286b88d009..cacc0ca99c 100644
--- a/src/gen/lib/Model/CreateModifierGroupResponse.php
+++ b/src/gen/lib/Model/CreateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateModifierResponse.php b/src/gen/lib/Model/CreateModifierResponse.php
index 33d9ccde23..c8c3383feb 100644
--- a/src/gen/lib/Model/CreateModifierResponse.php
+++ b/src/gen/lib/Model/CreateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateNoteResponse.php b/src/gen/lib/Model/CreateNoteResponse.php
index df0836af22..acb9dc82b9 100644
--- a/src/gen/lib/Model/CreateNoteResponse.php
+++ b/src/gen/lib/Model/CreateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOpportunityResponse.php b/src/gen/lib/Model/CreateOpportunityResponse.php
index 5643a23875..c3054120fb 100644
--- a/src/gen/lib/Model/CreateOpportunityResponse.php
+++ b/src/gen/lib/Model/CreateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderResponse.php b/src/gen/lib/Model/CreateOrderResponse.php
index a7223e165c..88fd33d112 100644
--- a/src/gen/lib/Model/CreateOrderResponse.php
+++ b/src/gen/lib/Model/CreateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateOrderTypeResponse.php b/src/gen/lib/Model/CreateOrderTypeResponse.php
index bd5da8de92..3c5243478e 100644
--- a/src/gen/lib/Model/CreateOrderTypeResponse.php
+++ b/src/gen/lib/Model/CreateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePaymentResponse.php b/src/gen/lib/Model/CreatePaymentResponse.php
index a31fb36d02..1c1fd5dadd 100644
--- a/src/gen/lib/Model/CreatePaymentResponse.php
+++ b/src/gen/lib/Model/CreatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePipelineResponse.php b/src/gen/lib/Model/CreatePipelineResponse.php
index c23a0c58ac..37faf44ef5 100644
--- a/src/gen/lib/Model/CreatePipelineResponse.php
+++ b/src/gen/lib/Model/CreatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePosPaymentResponse.php b/src/gen/lib/Model/CreatePosPaymentResponse.php
index f42e9fef8d..903f4e6e6c 100644
--- a/src/gen/lib/Model/CreatePosPaymentResponse.php
+++ b/src/gen/lib/Model/CreatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateProductResponse.php b/src/gen/lib/Model/CreateProductResponse.php
index c6ee1b1463..4a43e4aad4 100644
--- a/src/gen/lib/Model/CreateProductResponse.php
+++ b/src/gen/lib/Model/CreateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreatePurchaseOrderResponse.php b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
index 8fc7776cb1..faa37fa896 100644
--- a/src/gen/lib/Model/CreatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/CreatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponse.php b/src/gen/lib/Model/CreateSessionResponse.php
index 0a2f2e2f61..e8fb051dd7 100644
--- a/src/gen/lib/Model/CreateSessionResponse.php
+++ b/src/gen/lib/Model/CreateSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSessionResponseData.php b/src/gen/lib/Model/CreateSessionResponseData.php
index 430dbc862b..12967b68d1 100644
--- a/src/gen/lib/Model/CreateSessionResponseData.php
+++ b/src/gen/lib/Model/CreateSessionResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSharedLinkResponse.php b/src/gen/lib/Model/CreateSharedLinkResponse.php
index 1b678657a2..a57dbef6be 100644
--- a/src/gen/lib/Model/CreateSharedLinkResponse.php
+++ b/src/gen/lib/Model/CreateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSubsidiaryResponse.php b/src/gen/lib/Model/CreateSubsidiaryResponse.php
index 573a18ebb1..f99b3db6ab 100644
--- a/src/gen/lib/Model/CreateSubsidiaryResponse.php
+++ b/src/gen/lib/Model/CreateSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateSupplierResponse.php b/src/gen/lib/Model/CreateSupplierResponse.php
index c50fe8731d..94d6b8408e 100644
--- a/src/gen/lib/Model/CreateSupplierResponse.php
+++ b/src/gen/lib/Model/CreateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTaxRateResponse.php b/src/gen/lib/Model/CreateTaxRateResponse.php
index 8569c4029f..fff2d4261f 100644
--- a/src/gen/lib/Model/CreateTaxRateResponse.php
+++ b/src/gen/lib/Model/CreateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTenderResponse.php b/src/gen/lib/Model/CreateTenderResponse.php
index f1f31ad79d..62315821c7 100644
--- a/src/gen/lib/Model/CreateTenderResponse.php
+++ b/src/gen/lib/Model/CreateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTicketResponse.php b/src/gen/lib/Model/CreateTicketResponse.php
index 12f89f08eb..798052a64b 100644
--- a/src/gen/lib/Model/CreateTicketResponse.php
+++ b/src/gen/lib/Model/CreateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateTimeOffRequestResponse.php b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
index 4a018865e0..038948083b 100644
--- a/src/gen/lib/Model/CreateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/CreateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionRequest.php b/src/gen/lib/Model/CreateUploadSessionRequest.php
index 37b5d0dd26..eb0e874b0d 100644
--- a/src/gen/lib/Model/CreateUploadSessionRequest.php
+++ b/src/gen/lib/Model/CreateUploadSessionRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUploadSessionResponse.php b/src/gen/lib/Model/CreateUploadSessionResponse.php
index aee4626a73..6326e506c2 100644
--- a/src/gen/lib/Model/CreateUploadSessionResponse.php
+++ b/src/gen/lib/Model/CreateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateUserResponse.php b/src/gen/lib/Model/CreateUserResponse.php
index 45fa16c5cd..4f3f2ad3e9 100644
--- a/src/gen/lib/Model/CreateUserResponse.php
+++ b/src/gen/lib/Model/CreateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookRequest.php b/src/gen/lib/Model/CreateWebhookRequest.php
index 32487bd22e..9b3e6f5782 100644
--- a/src/gen/lib/Model/CreateWebhookRequest.php
+++ b/src/gen/lib/Model/CreateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreateWebhookResponse.php b/src/gen/lib/Model/CreateWebhookResponse.php
index 4d27aaed8b..f49ca93e9a 100644
--- a/src/gen/lib/Model/CreateWebhookResponse.php
+++ b/src/gen/lib/Model/CreateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNote.php b/src/gen/lib/Model/CreditNote.php
index 16d84bace9..5c841b5514 100644
--- a/src/gen/lib/Model/CreditNote.php
+++ b/src/gen/lib/Model/CreditNote.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesFilter.php b/src/gen/lib/Model/CreditNotesFilter.php
index 5f26e3a683..a8e07c29a1 100644
--- a/src/gen/lib/Model/CreditNotesFilter.php
+++ b/src/gen/lib/Model/CreditNotesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CreditNotesSort.php b/src/gen/lib/Model/CreditNotesSort.php
index adff87f9a8..e8e236f9a8 100644
--- a/src/gen/lib/Model/CreditNotesSort.php
+++ b/src/gen/lib/Model/CreditNotesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CrmEventType.php b/src/gen/lib/Model/CrmEventType.php
index 276d58bd83..cce2ef1388 100644
--- a/src/gen/lib/Model/CrmEventType.php
+++ b/src/gen/lib/Model/CrmEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Currency.php b/src/gen/lib/Model/Currency.php
index e8d1a71e01..c461ca404b 100644
--- a/src/gen/lib/Model/Currency.php
+++ b/src/gen/lib/Model/Currency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomField.php b/src/gen/lib/Model/CustomField.php
index 6291158ce4..9426f6fddc 100644
--- a/src/gen/lib/Model/CustomField.php
+++ b/src/gen/lib/Model/CustomField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomFieldFinder.php b/src/gen/lib/Model/CustomFieldFinder.php
index 8d9ad11d48..dbef196648 100644
--- a/src/gen/lib/Model/CustomFieldFinder.php
+++ b/src/gen/lib/Model/CustomFieldFinder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomMapping.php b/src/gen/lib/Model/CustomMapping.php
index 9b72acf56b..cc982a5120 100644
--- a/src/gen/lib/Model/CustomMapping.php
+++ b/src/gen/lib/Model/CustomMapping.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Customer.php b/src/gen/lib/Model/Customer.php
index 03e624ca8f..d1a0774ae6 100644
--- a/src/gen/lib/Model/Customer.php
+++ b/src/gen/lib/Model/Customer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersFilter.php b/src/gen/lib/Model/CustomersFilter.php
index b094cf439a..9a634ba072 100644
--- a/src/gen/lib/Model/CustomersFilter.php
+++ b/src/gen/lib/Model/CustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/CustomersSort.php b/src/gen/lib/Model/CustomersSort.php
index a1e2d5beec..1684d9b063 100644
--- a/src/gen/lib/Model/CustomersSort.php
+++ b/src/gen/lib/Model/CustomersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Deduction.php b/src/gen/lib/Model/Deduction.php
index 22a7907716..3af1d467cc 100644
--- a/src/gen/lib/Model/Deduction.php
+++ b/src/gen/lib/Model/Deduction.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteAccountingDepartmentResponse.php b/src/gen/lib/Model/DeleteAccountingDepartmentResponse.php
index fbd0d5589e..bb624e3e8e 100644
--- a/src/gen/lib/Model/DeleteAccountingDepartmentResponse.php
+++ b/src/gen/lib/Model/DeleteAccountingDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteAccountingLocationResponse.php b/src/gen/lib/Model/DeleteAccountingLocationResponse.php
index d8fa1633f0..5806bb3fde 100644
--- a/src/gen/lib/Model/DeleteAccountingLocationResponse.php
+++ b/src/gen/lib/Model/DeleteAccountingLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteActivityResponse.php b/src/gen/lib/Model/DeleteActivityResponse.php
index 15e8df100d..97721577a9 100644
--- a/src/gen/lib/Model/DeleteActivityResponse.php
+++ b/src/gen/lib/Model/DeleteActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicantResponse.php b/src/gen/lib/Model/DeleteApplicantResponse.php
index 7e99dd5be5..7abfbc5d78 100644
--- a/src/gen/lib/Model/DeleteApplicantResponse.php
+++ b/src/gen/lib/Model/DeleteApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteApplicationResponse.php b/src/gen/lib/Model/DeleteApplicationResponse.php
index 65c00eb177..a4514c83e8 100644
--- a/src/gen/lib/Model/DeleteApplicationResponse.php
+++ b/src/gen/lib/Model/DeleteApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteBillResponse.php b/src/gen/lib/Model/DeleteBillResponse.php
index b453356a1a..c7b72be8d2 100644
--- a/src/gen/lib/Model/DeleteBillResponse.php
+++ b/src/gen/lib/Model/DeleteBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCommentResponse.php b/src/gen/lib/Model/DeleteCommentResponse.php
index 28d157d3e7..30aaa72e2f 100644
--- a/src/gen/lib/Model/DeleteCommentResponse.php
+++ b/src/gen/lib/Model/DeleteCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCompanyResponse.php b/src/gen/lib/Model/DeleteCompanyResponse.php
index a40d14eb45..fb7b31b879 100644
--- a/src/gen/lib/Model/DeleteCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteConsumerResponse.php b/src/gen/lib/Model/DeleteConsumerResponse.php
index 7a173819f3..e3673fa009 100644
--- a/src/gen/lib/Model/DeleteConsumerResponse.php
+++ b/src/gen/lib/Model/DeleteConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteContactResponse.php b/src/gen/lib/Model/DeleteContactResponse.php
index 32f22d6a1b..4a640da3e6 100644
--- a/src/gen/lib/Model/DeleteContactResponse.php
+++ b/src/gen/lib/Model/DeleteContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCreditNoteResponse.php b/src/gen/lib/Model/DeleteCreditNoteResponse.php
index 1db274d6e3..1f8b0abecc 100644
--- a/src/gen/lib/Model/DeleteCreditNoteResponse.php
+++ b/src/gen/lib/Model/DeleteCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteCustomerResponse.php b/src/gen/lib/Model/DeleteCustomerResponse.php
index 6dc1a8407d..fdf23ad95f 100644
--- a/src/gen/lib/Model/DeleteCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDepartmentResponse.php b/src/gen/lib/Model/DeleteDepartmentResponse.php
index e3965b8b83..cfd253e056 100644
--- a/src/gen/lib/Model/DeleteDepartmentResponse.php
+++ b/src/gen/lib/Model/DeleteDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveGroupResponse.php b/src/gen/lib/Model/DeleteDriveGroupResponse.php
index c0af41181a..58f671bc07 100644
--- a/src/gen/lib/Model/DeleteDriveGroupResponse.php
+++ b/src/gen/lib/Model/DeleteDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteDriveResponse.php b/src/gen/lib/Model/DeleteDriveResponse.php
index 715d2f7022..3a3af9a1c5 100644
--- a/src/gen/lib/Model/DeleteDriveResponse.php
+++ b/src/gen/lib/Model/DeleteDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
index 6230672fc9..c57dfbcbd6 100644
--- a/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
index 37ba589b88..b2eb780882 100644
--- a/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/DeleteEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteEmployeeResponse.php b/src/gen/lib/Model/DeleteEmployeeResponse.php
index 7592dbd16a..a68ba1c8c6 100644
--- a/src/gen/lib/Model/DeleteEmployeeResponse.php
+++ b/src/gen/lib/Model/DeleteEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFileResponse.php b/src/gen/lib/Model/DeleteFileResponse.php
index a3254e1e19..33eca67560 100644
--- a/src/gen/lib/Model/DeleteFileResponse.php
+++ b/src/gen/lib/Model/DeleteFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteFolderResponse.php b/src/gen/lib/Model/DeleteFolderResponse.php
index 84c9515c68..0d37163519 100644
--- a/src/gen/lib/Model/DeleteFolderResponse.php
+++ b/src/gen/lib/Model/DeleteFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteHrisCompanyResponse.php b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
index ee27939a83..5751bf8dee 100644
--- a/src/gen/lib/Model/DeleteHrisCompanyResponse.php
+++ b/src/gen/lib/Model/DeleteHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteInvoiceResponse.php b/src/gen/lib/Model/DeleteInvoiceResponse.php
index df42b2919f..7120c66284 100644
--- a/src/gen/lib/Model/DeleteInvoiceResponse.php
+++ b/src/gen/lib/Model/DeleteInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteItemResponse.php b/src/gen/lib/Model/DeleteItemResponse.php
index 31da84d05b..bd288d2475 100644
--- a/src/gen/lib/Model/DeleteItemResponse.php
+++ b/src/gen/lib/Model/DeleteItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJobResponse.php b/src/gen/lib/Model/DeleteJobResponse.php
index 6a727a327a..94bba6137d 100644
--- a/src/gen/lib/Model/DeleteJobResponse.php
+++ b/src/gen/lib/Model/DeleteJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteJournalEntryResponse.php b/src/gen/lib/Model/DeleteJournalEntryResponse.php
index ab570b3cb8..71c110b2ff 100644
--- a/src/gen/lib/Model/DeleteJournalEntryResponse.php
+++ b/src/gen/lib/Model/DeleteJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLeadResponse.php b/src/gen/lib/Model/DeleteLeadResponse.php
index 82d7956670..eb9b2fcd87 100644
--- a/src/gen/lib/Model/DeleteLeadResponse.php
+++ b/src/gen/lib/Model/DeleteLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLedgerAccountResponse.php b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
index b2d2958448..84a5af292e 100644
--- a/src/gen/lib/Model/DeleteLedgerAccountResponse.php
+++ b/src/gen/lib/Model/DeleteLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteLocationResponse.php b/src/gen/lib/Model/DeleteLocationResponse.php
index 8dfe141a8e..620620ef45 100644
--- a/src/gen/lib/Model/DeleteLocationResponse.php
+++ b/src/gen/lib/Model/DeleteLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMerchantResponse.php b/src/gen/lib/Model/DeleteMerchantResponse.php
index 6a7a8118c2..289b083581 100644
--- a/src/gen/lib/Model/DeleteMerchantResponse.php
+++ b/src/gen/lib/Model/DeleteMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteMessageResponse.php b/src/gen/lib/Model/DeleteMessageResponse.php
index bed01fa2bd..cbe702a4f3 100644
--- a/src/gen/lib/Model/DeleteMessageResponse.php
+++ b/src/gen/lib/Model/DeleteMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierGroupResponse.php b/src/gen/lib/Model/DeleteModifierGroupResponse.php
index 6421c80655..91acf376ad 100644
--- a/src/gen/lib/Model/DeleteModifierGroupResponse.php
+++ b/src/gen/lib/Model/DeleteModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteModifierResponse.php b/src/gen/lib/Model/DeleteModifierResponse.php
index e6f1792137..efdf6d7571 100644
--- a/src/gen/lib/Model/DeleteModifierResponse.php
+++ b/src/gen/lib/Model/DeleteModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteNoteResponse.php b/src/gen/lib/Model/DeleteNoteResponse.php
index 487e23568d..bae9a3ce99 100644
--- a/src/gen/lib/Model/DeleteNoteResponse.php
+++ b/src/gen/lib/Model/DeleteNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOpportunityResponse.php b/src/gen/lib/Model/DeleteOpportunityResponse.php
index 272dc46421..e43bbc176b 100644
--- a/src/gen/lib/Model/DeleteOpportunityResponse.php
+++ b/src/gen/lib/Model/DeleteOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderResponse.php b/src/gen/lib/Model/DeleteOrderResponse.php
index 106362c3c6..7e928c5aaf 100644
--- a/src/gen/lib/Model/DeleteOrderResponse.php
+++ b/src/gen/lib/Model/DeleteOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteOrderTypeResponse.php b/src/gen/lib/Model/DeleteOrderTypeResponse.php
index af51caf040..96bab2f497 100644
--- a/src/gen/lib/Model/DeleteOrderTypeResponse.php
+++ b/src/gen/lib/Model/DeleteOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePaymentResponse.php b/src/gen/lib/Model/DeletePaymentResponse.php
index b66d30b12b..efda723b28 100644
--- a/src/gen/lib/Model/DeletePaymentResponse.php
+++ b/src/gen/lib/Model/DeletePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePipelineResponse.php b/src/gen/lib/Model/DeletePipelineResponse.php
index b0fcbc27ef..e4aa1c3881 100644
--- a/src/gen/lib/Model/DeletePipelineResponse.php
+++ b/src/gen/lib/Model/DeletePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePosPaymentResponse.php b/src/gen/lib/Model/DeletePosPaymentResponse.php
index ee9022f2cf..a6213714b9 100644
--- a/src/gen/lib/Model/DeletePosPaymentResponse.php
+++ b/src/gen/lib/Model/DeletePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteProductResponse.php b/src/gen/lib/Model/DeleteProductResponse.php
index fce705f991..3337745ed1 100644
--- a/src/gen/lib/Model/DeleteProductResponse.php
+++ b/src/gen/lib/Model/DeleteProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeletePurchaseOrderResponse.php b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
index 7de290f950..d7b2f9f798 100644
--- a/src/gen/lib/Model/DeletePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/DeletePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSharedLinkResponse.php b/src/gen/lib/Model/DeleteSharedLinkResponse.php
index 191fdca7ca..07a1242a1f 100644
--- a/src/gen/lib/Model/DeleteSharedLinkResponse.php
+++ b/src/gen/lib/Model/DeleteSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSubsidiaryResponse.php b/src/gen/lib/Model/DeleteSubsidiaryResponse.php
index 4d238038f0..a725ee77cb 100644
--- a/src/gen/lib/Model/DeleteSubsidiaryResponse.php
+++ b/src/gen/lib/Model/DeleteSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteSupplierResponse.php b/src/gen/lib/Model/DeleteSupplierResponse.php
index 1e76f41a77..8bb9cf8760 100644
--- a/src/gen/lib/Model/DeleteSupplierResponse.php
+++ b/src/gen/lib/Model/DeleteSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTaxRateResponse.php b/src/gen/lib/Model/DeleteTaxRateResponse.php
index a03af0b3f0..7ca43cdebb 100644
--- a/src/gen/lib/Model/DeleteTaxRateResponse.php
+++ b/src/gen/lib/Model/DeleteTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTenderResponse.php b/src/gen/lib/Model/DeleteTenderResponse.php
index d2b61e01fe..69a85f8a20 100644
--- a/src/gen/lib/Model/DeleteTenderResponse.php
+++ b/src/gen/lib/Model/DeleteTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTicketResponse.php b/src/gen/lib/Model/DeleteTicketResponse.php
index c5d2aea7b9..41bcb65ca0 100644
--- a/src/gen/lib/Model/DeleteTicketResponse.php
+++ b/src/gen/lib/Model/DeleteTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
index 5b67f17ffc..1379cd4436 100644
--- a/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/DeleteTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUploadSessionResponse.php b/src/gen/lib/Model/DeleteUploadSessionResponse.php
index c4ac4f4ccc..293ece9ab1 100644
--- a/src/gen/lib/Model/DeleteUploadSessionResponse.php
+++ b/src/gen/lib/Model/DeleteUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteUserResponse.php b/src/gen/lib/Model/DeleteUserResponse.php
index e3679a605c..85913b540d 100644
--- a/src/gen/lib/Model/DeleteUserResponse.php
+++ b/src/gen/lib/Model/DeleteUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DeleteWebhookResponse.php b/src/gen/lib/Model/DeleteWebhookResponse.php
index 2da4530c85..d4dfa59368 100644
--- a/src/gen/lib/Model/DeleteWebhookResponse.php
+++ b/src/gen/lib/Model/DeleteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Department.php b/src/gen/lib/Model/Department.php
index ada170a55a..141682b95a 100644
--- a/src/gen/lib/Model/Department.php
+++ b/src/gen/lib/Model/Department.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Drive.php b/src/gen/lib/Model/Drive.php
index b9d6f3df31..1bc1e8eeb9 100644
--- a/src/gen/lib/Model/Drive.php
+++ b/src/gen/lib/Model/Drive.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroup.php b/src/gen/lib/Model/DriveGroup.php
index 5c56e7f4f2..9a6eab36ac 100644
--- a/src/gen/lib/Model/DriveGroup.php
+++ b/src/gen/lib/Model/DriveGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DriveGroupsFilter.php b/src/gen/lib/Model/DriveGroupsFilter.php
index e39631c83f..c3418e09f1 100644
--- a/src/gen/lib/Model/DriveGroupsFilter.php
+++ b/src/gen/lib/Model/DriveGroupsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/DrivesFilter.php b/src/gen/lib/Model/DrivesFilter.php
index fd2f8a034e..af753e8934 100644
--- a/src/gen/lib/Model/DrivesFilter.php
+++ b/src/gen/lib/Model/DrivesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceAddress.php b/src/gen/lib/Model/EcommerceAddress.php
index b72dbd7dd6..0fa4cf6947 100644
--- a/src/gen/lib/Model/EcommerceAddress.php
+++ b/src/gen/lib/Model/EcommerceAddress.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomer.php b/src/gen/lib/Model/EcommerceCustomer.php
index 4ae952d9ad..578b2fb5b6 100644
--- a/src/gen/lib/Model/EcommerceCustomer.php
+++ b/src/gen/lib/Model/EcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomerAddresses.php b/src/gen/lib/Model/EcommerceCustomerAddresses.php
index f46ba5f686..3509d3b3c0 100644
--- a/src/gen/lib/Model/EcommerceCustomerAddresses.php
+++ b/src/gen/lib/Model/EcommerceCustomerAddresses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceCustomersFilter.php b/src/gen/lib/Model/EcommerceCustomersFilter.php
index e7f7fff187..0019c699b8 100644
--- a/src/gen/lib/Model/EcommerceCustomersFilter.php
+++ b/src/gen/lib/Model/EcommerceCustomersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceDiscount.php b/src/gen/lib/Model/EcommerceDiscount.php
index 8dd8bd15ee..fcb3226317 100644
--- a/src/gen/lib/Model/EcommerceDiscount.php
+++ b/src/gen/lib/Model/EcommerceDiscount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrder.php b/src/gen/lib/Model/EcommerceOrder.php
index edcaa367fc..1226795bba 100644
--- a/src/gen/lib/Model/EcommerceOrder.php
+++ b/src/gen/lib/Model/EcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderLineItem.php b/src/gen/lib/Model/EcommerceOrderLineItem.php
index d33d01d536..a31610c7d7 100644
--- a/src/gen/lib/Model/EcommerceOrderLineItem.php
+++ b/src/gen/lib/Model/EcommerceOrderLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrderStatus.php b/src/gen/lib/Model/EcommerceOrderStatus.php
index 2f03e4fb36..737f8278f9 100644
--- a/src/gen/lib/Model/EcommerceOrderStatus.php
+++ b/src/gen/lib/Model/EcommerceOrderStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceOrdersFilter.php b/src/gen/lib/Model/EcommerceOrdersFilter.php
index 317e56ce3d..561050d7ae 100644
--- a/src/gen/lib/Model/EcommerceOrdersFilter.php
+++ b/src/gen/lib/Model/EcommerceOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProduct.php b/src/gen/lib/Model/EcommerceProduct.php
index d94a3b9b80..dfee46c830 100644
--- a/src/gen/lib/Model/EcommerceProduct.php
+++ b/src/gen/lib/Model/EcommerceProduct.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductCategories.php b/src/gen/lib/Model/EcommerceProductCategories.php
index 0303beb13a..de0313c13c 100644
--- a/src/gen/lib/Model/EcommerceProductCategories.php
+++ b/src/gen/lib/Model/EcommerceProductCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages.php b/src/gen/lib/Model/EcommerceProductImages.php
index 4fb1cfdc78..488121b3a8 100644
--- a/src/gen/lib/Model/EcommerceProductImages.php
+++ b/src/gen/lib/Model/EcommerceProductImages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductImages1.php b/src/gen/lib/Model/EcommerceProductImages1.php
index 4197f68c3d..a1c8e744bd 100644
--- a/src/gen/lib/Model/EcommerceProductImages1.php
+++ b/src/gen/lib/Model/EcommerceProductImages1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions.php b/src/gen/lib/Model/EcommerceProductOptions.php
index efc506ff33..43806f1c51 100644
--- a/src/gen/lib/Model/EcommerceProductOptions.php
+++ b/src/gen/lib/Model/EcommerceProductOptions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductOptions1.php b/src/gen/lib/Model/EcommerceProductOptions1.php
index 8c47275cdc..75276ecf4c 100644
--- a/src/gen/lib/Model/EcommerceProductOptions1.php
+++ b/src/gen/lib/Model/EcommerceProductOptions1.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceProductVariants.php b/src/gen/lib/Model/EcommerceProductVariants.php
index 13c6f40ae3..a47fd4d604 100644
--- a/src/gen/lib/Model/EcommerceProductVariants.php
+++ b/src/gen/lib/Model/EcommerceProductVariants.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EcommerceStore.php b/src/gen/lib/Model/EcommerceStore.php
index f8366207f7..7fd2f0dea1 100644
--- a/src/gen/lib/Model/EcommerceStore.php
+++ b/src/gen/lib/Model/EcommerceStore.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Email.php b/src/gen/lib/Model/Email.php
index 2875071c4f..85350293f5 100644
--- a/src/gen/lib/Model/Email.php
+++ b/src/gen/lib/Model/Email.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Employee.php b/src/gen/lib/Model/Employee.php
index 32c13d1029..7deb02b7a7 100644
--- a/src/gen/lib/Model/Employee.php
+++ b/src/gen/lib/Model/Employee.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeCompensation.php b/src/gen/lib/Model/EmployeeCompensation.php
index bfba261442..8ed5a1a347 100644
--- a/src/gen/lib/Model/EmployeeCompensation.php
+++ b/src/gen/lib/Model/EmployeeCompensation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeEmploymentRole.php b/src/gen/lib/Model/EmployeeEmploymentRole.php
index 3e8613de67..53858a936b 100644
--- a/src/gen/lib/Model/EmployeeEmploymentRole.php
+++ b/src/gen/lib/Model/EmployeeEmploymentRole.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeJob.php b/src/gen/lib/Model/EmployeeJob.php
index 9dcd2a49b8..067199d4b0 100644
--- a/src/gen/lib/Model/EmployeeJob.php
+++ b/src/gen/lib/Model/EmployeeJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeList.php b/src/gen/lib/Model/EmployeeList.php
index 02b37a2165..999be6651a 100644
--- a/src/gen/lib/Model/EmployeeList.php
+++ b/src/gen/lib/Model/EmployeeList.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeManager.php b/src/gen/lib/Model/EmployeeManager.php
index 25d4e4602b..d6b947bf25 100644
--- a/src/gen/lib/Model/EmployeeManager.php
+++ b/src/gen/lib/Model/EmployeeManager.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeePayroll.php b/src/gen/lib/Model/EmployeePayroll.php
index 4f0052b22d..d545356df9 100644
--- a/src/gen/lib/Model/EmployeePayroll.php
+++ b/src/gen/lib/Model/EmployeePayroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeeSchedules.php b/src/gen/lib/Model/EmployeeSchedules.php
index ea23c880c5..a2efec6533 100644
--- a/src/gen/lib/Model/EmployeeSchedules.php
+++ b/src/gen/lib/Model/EmployeeSchedules.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesFilter.php b/src/gen/lib/Model/EmployeesFilter.php
index c8a0cf6d82..17dd4359c3 100644
--- a/src/gen/lib/Model/EmployeesFilter.php
+++ b/src/gen/lib/Model/EmployeesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmployeesSort.php b/src/gen/lib/Model/EmployeesSort.php
index 5d73d764f3..6c5b112429 100644
--- a/src/gen/lib/Model/EmployeesSort.php
+++ b/src/gen/lib/Model/EmployeesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/EmploymentStatus.php b/src/gen/lib/Model/EmploymentStatus.php
index dbe1d62509..5b2186a1c0 100644
--- a/src/gen/lib/Model/EmploymentStatus.php
+++ b/src/gen/lib/Model/EmploymentStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Error.php b/src/gen/lib/Model/Error.php
index 25ab8eced1..3c82b3218c 100644
--- a/src/gen/lib/Model/Error.php
+++ b/src/gen/lib/Model/Error.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ExecuteWebhookResponse.php b/src/gen/lib/Model/ExecuteWebhookResponse.php
index 757c4f3772..66aa558b93 100644
--- a/src/gen/lib/Model/ExecuteWebhookResponse.php
+++ b/src/gen/lib/Model/ExecuteWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileStorageEventType.php b/src/gen/lib/Model/FileStorageEventType.php
index b3507cfa77..e3f472032d 100644
--- a/src/gen/lib/Model/FileStorageEventType.php
+++ b/src/gen/lib/Model/FileStorageEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FileType.php b/src/gen/lib/Model/FileType.php
index 8b841c22b8..31f34b3ab8 100644
--- a/src/gen/lib/Model/FileType.php
+++ b/src/gen/lib/Model/FileType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesFilter.php b/src/gen/lib/Model/FilesFilter.php
index f645c55ac5..fd7c8495dc 100644
--- a/src/gen/lib/Model/FilesFilter.php
+++ b/src/gen/lib/Model/FilesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSearch.php b/src/gen/lib/Model/FilesSearch.php
index bb874aa551..99e208caa5 100644
--- a/src/gen/lib/Model/FilesSearch.php
+++ b/src/gen/lib/Model/FilesSearch.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FilesSort.php b/src/gen/lib/Model/FilesSort.php
index 5233f9f36c..074a19fffc 100644
--- a/src/gen/lib/Model/FilesSort.php
+++ b/src/gen/lib/Model/FilesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Folder.php b/src/gen/lib/Model/Folder.php
index 521c4f8092..29f80af3e0 100644
--- a/src/gen/lib/Model/Folder.php
+++ b/src/gen/lib/Model/Folder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormField.php b/src/gen/lib/Model/FormField.php
index 746a3a9bce..6e5bde70ed 100644
--- a/src/gen/lib/Model/FormField.php
+++ b/src/gen/lib/Model/FormField.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOption.php b/src/gen/lib/Model/FormFieldOption.php
index 50972bcf98..bbd058a6e3 100644
--- a/src/gen/lib/Model/FormFieldOption.php
+++ b/src/gen/lib/Model/FormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/FormFieldOptionGroup.php b/src/gen/lib/Model/FormFieldOptionGroup.php
index 6848b5c325..21c76ec867 100644
--- a/src/gen/lib/Model/FormFieldOptionGroup.php
+++ b/src/gen/lib/Model/FormFieldOptionGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Gender.php b/src/gen/lib/Model/Gender.php
index 715fd488c5..72ba465565 100644
--- a/src/gen/lib/Model/Gender.php
+++ b/src/gen/lib/Model/Gender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetAccountingDepartmentResponse.php b/src/gen/lib/Model/GetAccountingDepartmentResponse.php
index fe22d48642..2fda1cd5b0 100644
--- a/src/gen/lib/Model/GetAccountingDepartmentResponse.php
+++ b/src/gen/lib/Model/GetAccountingDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetAccountingDepartmentsResponse.php b/src/gen/lib/Model/GetAccountingDepartmentsResponse.php
index 643d77b998..5a5bc96f8b 100644
--- a/src/gen/lib/Model/GetAccountingDepartmentsResponse.php
+++ b/src/gen/lib/Model/GetAccountingDepartmentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetAccountingLocationResponse.php b/src/gen/lib/Model/GetAccountingLocationResponse.php
index 0c80bee6ab..ae3098fd90 100644
--- a/src/gen/lib/Model/GetAccountingLocationResponse.php
+++ b/src/gen/lib/Model/GetAccountingLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetAccountingLocationsResponse.php b/src/gen/lib/Model/GetAccountingLocationsResponse.php
index 25d0b19050..a83e5d0946 100644
--- a/src/gen/lib/Model/GetAccountingLocationsResponse.php
+++ b/src/gen/lib/Model/GetAccountingLocationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetActivitiesResponse.php b/src/gen/lib/Model/GetActivitiesResponse.php
index 39c309a211..6f67876b59 100644
--- a/src/gen/lib/Model/GetActivitiesResponse.php
+++ b/src/gen/lib/Model/GetActivitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetActivityResponse.php b/src/gen/lib/Model/GetActivityResponse.php
index c4d5ad25af..99dbb8d6c6 100644
--- a/src/gen/lib/Model/GetActivityResponse.php
+++ b/src/gen/lib/Model/GetActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceCoverageResponse.php b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
index 00404772ec..ce5d7380e4 100644
--- a/src/gen/lib/Model/GetApiResourceCoverageResponse.php
+++ b/src/gen/lib/Model/GetApiResourceCoverageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResourceResponse.php b/src/gen/lib/Model/GetApiResourceResponse.php
index 6c89c77984..14b4cfd0c0 100644
--- a/src/gen/lib/Model/GetApiResourceResponse.php
+++ b/src/gen/lib/Model/GetApiResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApiResponse.php b/src/gen/lib/Model/GetApiResponse.php
index 6e635b7ab3..5edd6673f1 100644
--- a/src/gen/lib/Model/GetApiResponse.php
+++ b/src/gen/lib/Model/GetApiResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApisResponse.php b/src/gen/lib/Model/GetApisResponse.php
index 55ff8adf0e..3303bca438 100644
--- a/src/gen/lib/Model/GetApisResponse.php
+++ b/src/gen/lib/Model/GetApisResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantResponse.php b/src/gen/lib/Model/GetApplicantResponse.php
index fc64830cd2..abc2d3152f 100644
--- a/src/gen/lib/Model/GetApplicantResponse.php
+++ b/src/gen/lib/Model/GetApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicantsResponse.php b/src/gen/lib/Model/GetApplicantsResponse.php
index ef3871270a..ba84ccba0c 100644
--- a/src/gen/lib/Model/GetApplicantsResponse.php
+++ b/src/gen/lib/Model/GetApplicantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationResponse.php b/src/gen/lib/Model/GetApplicationResponse.php
index b5e80e9c8d..8f74ec07d1 100644
--- a/src/gen/lib/Model/GetApplicationResponse.php
+++ b/src/gen/lib/Model/GetApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetApplicationsResponse.php b/src/gen/lib/Model/GetApplicationsResponse.php
index 03a924a434..242bcb8cb4 100644
--- a/src/gen/lib/Model/GetApplicationsResponse.php
+++ b/src/gen/lib/Model/GetApplicationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBalanceSheetResponse.php b/src/gen/lib/Model/GetBalanceSheetResponse.php
index a3b8eb25c8..9cfa2ad1c3 100644
--- a/src/gen/lib/Model/GetBalanceSheetResponse.php
+++ b/src/gen/lib/Model/GetBalanceSheetResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillResponse.php b/src/gen/lib/Model/GetBillResponse.php
index ff1cfec87a..b6784a682d 100644
--- a/src/gen/lib/Model/GetBillResponse.php
+++ b/src/gen/lib/Model/GetBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetBillsResponse.php b/src/gen/lib/Model/GetBillsResponse.php
index 283e350021..f7eaaaa2c9 100644
--- a/src/gen/lib/Model/GetBillsResponse.php
+++ b/src/gen/lib/Model/GetBillsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionResponse.php b/src/gen/lib/Model/GetCollectionResponse.php
index 42a773f5e0..a8f2cea94f 100644
--- a/src/gen/lib/Model/GetCollectionResponse.php
+++ b/src/gen/lib/Model/GetCollectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionTagsResponse.php b/src/gen/lib/Model/GetCollectionTagsResponse.php
index 6d81b0aea2..944bedc6e2 100644
--- a/src/gen/lib/Model/GetCollectionTagsResponse.php
+++ b/src/gen/lib/Model/GetCollectionTagsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUserResponse.php b/src/gen/lib/Model/GetCollectionUserResponse.php
index 2866fc695e..4d82d017b9 100644
--- a/src/gen/lib/Model/GetCollectionUserResponse.php
+++ b/src/gen/lib/Model/GetCollectionUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionUsersResponse.php b/src/gen/lib/Model/GetCollectionUsersResponse.php
index 2e4126bc2b..978f1a3911 100644
--- a/src/gen/lib/Model/GetCollectionUsersResponse.php
+++ b/src/gen/lib/Model/GetCollectionUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCollectionsResponse.php b/src/gen/lib/Model/GetCollectionsResponse.php
index 9645f3721b..b305fa034c 100644
--- a/src/gen/lib/Model/GetCollectionsResponse.php
+++ b/src/gen/lib/Model/GetCollectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentResponse.php b/src/gen/lib/Model/GetCommentResponse.php
index e43222d63d..4b076286dc 100644
--- a/src/gen/lib/Model/GetCommentResponse.php
+++ b/src/gen/lib/Model/GetCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCommentsResponse.php b/src/gen/lib/Model/GetCommentsResponse.php
index 34d64210d1..85d8d5c319 100644
--- a/src/gen/lib/Model/GetCommentsResponse.php
+++ b/src/gen/lib/Model/GetCommentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompaniesResponse.php b/src/gen/lib/Model/GetCompaniesResponse.php
index 00e6abb484..0e170358b8 100644
--- a/src/gen/lib/Model/GetCompaniesResponse.php
+++ b/src/gen/lib/Model/GetCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyInfoResponse.php b/src/gen/lib/Model/GetCompanyInfoResponse.php
index 09aa1ab698..37037b0417 100644
--- a/src/gen/lib/Model/GetCompanyInfoResponse.php
+++ b/src/gen/lib/Model/GetCompanyInfoResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCompanyResponse.php b/src/gen/lib/Model/GetCompanyResponse.php
index fbd006df23..257e86f5c4 100644
--- a/src/gen/lib/Model/GetCompanyResponse.php
+++ b/src/gen/lib/Model/GetCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionResponse.php b/src/gen/lib/Model/GetConnectionResponse.php
index 0bb0f49b58..22e1a6c79e 100644
--- a/src/gen/lib/Model/GetConnectionResponse.php
+++ b/src/gen/lib/Model/GetConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectionsResponse.php b/src/gen/lib/Model/GetConnectionsResponse.php
index c23a81ae7b..66240f12ec 100644
--- a/src/gen/lib/Model/GetConnectionsResponse.php
+++ b/src/gen/lib/Model/GetConnectionsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
index f7f2f699bc..80f895f9b0 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
index 538f6089c7..3f94223af8 100644
--- a/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
+++ b/src/gen/lib/Model/GetConnectorResourceExampleResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceResponse.php b/src/gen/lib/Model/GetConnectorResourceResponse.php
index 87c6fdfe3d..6da6ddde4e 100644
--- a/src/gen/lib/Model/GetConnectorResourceResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
index 181a55f9c7..bc23cedae0 100644
--- a/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetConnectorResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorResponse.php b/src/gen/lib/Model/GetConnectorResponse.php
index cc4ceff29d..c68085a77e 100644
--- a/src/gen/lib/Model/GetConnectorResponse.php
+++ b/src/gen/lib/Model/GetConnectorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConnectorsResponse.php b/src/gen/lib/Model/GetConnectorsResponse.php
index ae8eb45909..bebf8b1dc5 100644
--- a/src/gen/lib/Model/GetConnectorsResponse.php
+++ b/src/gen/lib/Model/GetConnectorsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumerResponse.php b/src/gen/lib/Model/GetConsumerResponse.php
index 6349791463..589d76c45f 100644
--- a/src/gen/lib/Model/GetConsumerResponse.php
+++ b/src/gen/lib/Model/GetConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponse.php b/src/gen/lib/Model/GetConsumersResponse.php
index 42acd504b1..5d9616f296 100644
--- a/src/gen/lib/Model/GetConsumersResponse.php
+++ b/src/gen/lib/Model/GetConsumersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetConsumersResponseData.php b/src/gen/lib/Model/GetConsumersResponseData.php
index 302feaf41c..d61880f3fb 100644
--- a/src/gen/lib/Model/GetConsumersResponseData.php
+++ b/src/gen/lib/Model/GetConsumersResponseData.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactResponse.php b/src/gen/lib/Model/GetContactResponse.php
index ab22213a2e..ba7f3b765a 100644
--- a/src/gen/lib/Model/GetContactResponse.php
+++ b/src/gen/lib/Model/GetContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetContactsResponse.php b/src/gen/lib/Model/GetContactsResponse.php
index d0ceeec53b..d95be78c24 100644
--- a/src/gen/lib/Model/GetContactsResponse.php
+++ b/src/gen/lib/Model/GetContactsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNoteResponse.php b/src/gen/lib/Model/GetCreditNoteResponse.php
index 0bdfba3dd6..19a4f2f2f5 100644
--- a/src/gen/lib/Model/GetCreditNoteResponse.php
+++ b/src/gen/lib/Model/GetCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCreditNotesResponse.php b/src/gen/lib/Model/GetCreditNotesResponse.php
index 0558c7255f..9be36c409e 100644
--- a/src/gen/lib/Model/GetCreditNotesResponse.php
+++ b/src/gen/lib/Model/GetCreditNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomFieldsResponse.php b/src/gen/lib/Model/GetCustomFieldsResponse.php
index 7599072676..bf0c2ab413 100644
--- a/src/gen/lib/Model/GetCustomFieldsResponse.php
+++ b/src/gen/lib/Model/GetCustomFieldsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomMappingResponse.php b/src/gen/lib/Model/GetCustomMappingResponse.php
index 2a819e510a..367757e0dd 100644
--- a/src/gen/lib/Model/GetCustomMappingResponse.php
+++ b/src/gen/lib/Model/GetCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomerResponse.php b/src/gen/lib/Model/GetCustomerResponse.php
index 81367c1426..9c7e40a9a5 100644
--- a/src/gen/lib/Model/GetCustomerResponse.php
+++ b/src/gen/lib/Model/GetCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetCustomersResponse.php b/src/gen/lib/Model/GetCustomersResponse.php
index 8a180ec8fd..603e26af19 100644
--- a/src/gen/lib/Model/GetCustomersResponse.php
+++ b/src/gen/lib/Model/GetCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentResponse.php b/src/gen/lib/Model/GetDepartmentResponse.php
index 01075353e2..09b7a25e9d 100644
--- a/src/gen/lib/Model/GetDepartmentResponse.php
+++ b/src/gen/lib/Model/GetDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDepartmentsResponse.php b/src/gen/lib/Model/GetDepartmentsResponse.php
index cdc320e440..750350c4da 100644
--- a/src/gen/lib/Model/GetDepartmentsResponse.php
+++ b/src/gen/lib/Model/GetDepartmentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupResponse.php b/src/gen/lib/Model/GetDriveGroupResponse.php
index 22bd4d1cc8..25d891794f 100644
--- a/src/gen/lib/Model/GetDriveGroupResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveGroupsResponse.php b/src/gen/lib/Model/GetDriveGroupsResponse.php
index 501d6eaab5..a46d272ba0 100644
--- a/src/gen/lib/Model/GetDriveGroupsResponse.php
+++ b/src/gen/lib/Model/GetDriveGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDriveResponse.php b/src/gen/lib/Model/GetDriveResponse.php
index 7e97b9ba21..27f14c0f3c 100644
--- a/src/gen/lib/Model/GetDriveResponse.php
+++ b/src/gen/lib/Model/GetDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetDrivesResponse.php b/src/gen/lib/Model/GetDrivesResponse.php
index e17942f96c..7081cfcf2d 100644
--- a/src/gen/lib/Model/GetDrivesResponse.php
+++ b/src/gen/lib/Model/GetDrivesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomerResponse.php b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
index e57947d828..cfe9e05693 100644
--- a/src/gen/lib/Model/GetEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceCustomersResponse.php b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
index e87df64d25..267dc8ea8d 100644
--- a/src/gen/lib/Model/GetEcommerceCustomersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceCustomersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrderResponse.php b/src/gen/lib/Model/GetEcommerceOrderResponse.php
index f4fdcf06dc..0fd91a96e8 100644
--- a/src/gen/lib/Model/GetEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEcommerceOrdersResponse.php b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
index da84b73052..eaf141ce77 100644
--- a/src/gen/lib/Model/GetEcommerceOrdersResponse.php
+++ b/src/gen/lib/Model/GetEcommerceOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollResponse.php b/src/gen/lib/Model/GetEmployeePayrollResponse.php
index b46a29ea9d..be035a2423 100644
--- a/src/gen/lib/Model/GetEmployeePayrollResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeePayrollsResponse.php b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
index ed4d4644b1..bc18a0690f 100644
--- a/src/gen/lib/Model/GetEmployeePayrollsResponse.php
+++ b/src/gen/lib/Model/GetEmployeePayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeResponse.php b/src/gen/lib/Model/GetEmployeeResponse.php
index 57765dbc7a..617895fb42 100644
--- a/src/gen/lib/Model/GetEmployeeResponse.php
+++ b/src/gen/lib/Model/GetEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
index 025a7259b7..28763733be 100644
--- a/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
+++ b/src/gen/lib/Model/GetEmployeeSchedulesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetEmployeesResponse.php b/src/gen/lib/Model/GetEmployeesResponse.php
index 44b23db797..190a9dce1a 100644
--- a/src/gen/lib/Model/GetEmployeesResponse.php
+++ b/src/gen/lib/Model/GetEmployeesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFileResponse.php b/src/gen/lib/Model/GetFileResponse.php
index 638a86bf2d..5aad20b1c0 100644
--- a/src/gen/lib/Model/GetFileResponse.php
+++ b/src/gen/lib/Model/GetFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFilesResponse.php b/src/gen/lib/Model/GetFilesResponse.php
index 7f4fbdccba..f3160047b2 100644
--- a/src/gen/lib/Model/GetFilesResponse.php
+++ b/src/gen/lib/Model/GetFilesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFolderResponse.php b/src/gen/lib/Model/GetFolderResponse.php
index 519d65b80d..adf2a6b3ad 100644
--- a/src/gen/lib/Model/GetFolderResponse.php
+++ b/src/gen/lib/Model/GetFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetFoldersResponse.php b/src/gen/lib/Model/GetFoldersResponse.php
index f70def64c3..a9d5e28a96 100644
--- a/src/gen/lib/Model/GetFoldersResponse.php
+++ b/src/gen/lib/Model/GetFoldersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompaniesResponse.php b/src/gen/lib/Model/GetHrisCompaniesResponse.php
index 43c4703ea5..86a12a1752 100644
--- a/src/gen/lib/Model/GetHrisCompaniesResponse.php
+++ b/src/gen/lib/Model/GetHrisCompaniesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisCompanyResponse.php b/src/gen/lib/Model/GetHrisCompanyResponse.php
index 56fc541fd4..d037e478b4 100644
--- a/src/gen/lib/Model/GetHrisCompanyResponse.php
+++ b/src/gen/lib/Model/GetHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobResponse.php b/src/gen/lib/Model/GetHrisJobResponse.php
index 5dfc82b3c1..793a9a9d2e 100644
--- a/src/gen/lib/Model/GetHrisJobResponse.php
+++ b/src/gen/lib/Model/GetHrisJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetHrisJobsResponse.php b/src/gen/lib/Model/GetHrisJobsResponse.php
index 602552261e..1b16758fa1 100644
--- a/src/gen/lib/Model/GetHrisJobsResponse.php
+++ b/src/gen/lib/Model/GetHrisJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemResponse.php b/src/gen/lib/Model/GetInvoiceItemResponse.php
index 3a7a1a618f..3355304b96 100644
--- a/src/gen/lib/Model/GetInvoiceItemResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceItemsResponse.php b/src/gen/lib/Model/GetInvoiceItemsResponse.php
index 5d057f8f27..b3274fd5ad 100644
--- a/src/gen/lib/Model/GetInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/GetInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoiceResponse.php b/src/gen/lib/Model/GetInvoiceResponse.php
index 55e8876a97..68ac4d243c 100644
--- a/src/gen/lib/Model/GetInvoiceResponse.php
+++ b/src/gen/lib/Model/GetInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetInvoicesResponse.php b/src/gen/lib/Model/GetInvoicesResponse.php
index 08a400a480..ac1ea79620 100644
--- a/src/gen/lib/Model/GetInvoicesResponse.php
+++ b/src/gen/lib/Model/GetInvoicesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemResponse.php b/src/gen/lib/Model/GetItemResponse.php
index 7eb1df0b24..7d6bdcafaa 100644
--- a/src/gen/lib/Model/GetItemResponse.php
+++ b/src/gen/lib/Model/GetItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetItemsResponse.php b/src/gen/lib/Model/GetItemsResponse.php
index 71a1b05226..454ca17c2f 100644
--- a/src/gen/lib/Model/GetItemsResponse.php
+++ b/src/gen/lib/Model/GetItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobResponse.php b/src/gen/lib/Model/GetJobResponse.php
index 3d20df102c..2268fa5431 100644
--- a/src/gen/lib/Model/GetJobResponse.php
+++ b/src/gen/lib/Model/GetJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJobsResponse.php b/src/gen/lib/Model/GetJobsResponse.php
index 216e7ef18e..972319a77b 100644
--- a/src/gen/lib/Model/GetJobsResponse.php
+++ b/src/gen/lib/Model/GetJobsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntriesResponse.php b/src/gen/lib/Model/GetJournalEntriesResponse.php
index ffbaec62b9..995169f45c 100644
--- a/src/gen/lib/Model/GetJournalEntriesResponse.php
+++ b/src/gen/lib/Model/GetJournalEntriesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetJournalEntryResponse.php b/src/gen/lib/Model/GetJournalEntryResponse.php
index 61d024f6a4..eff8cd311b 100644
--- a/src/gen/lib/Model/GetJournalEntryResponse.php
+++ b/src/gen/lib/Model/GetJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadResponse.php b/src/gen/lib/Model/GetLeadResponse.php
index ddc8042e78..90f7b58b5f 100644
--- a/src/gen/lib/Model/GetLeadResponse.php
+++ b/src/gen/lib/Model/GetLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLeadsResponse.php b/src/gen/lib/Model/GetLeadsResponse.php
index bfc83713f5..15acdd92dc 100644
--- a/src/gen/lib/Model/GetLeadsResponse.php
+++ b/src/gen/lib/Model/GetLeadsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountResponse.php b/src/gen/lib/Model/GetLedgerAccountResponse.php
index 6a90cb0d6b..ebd89a8733 100644
--- a/src/gen/lib/Model/GetLedgerAccountResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLedgerAccountsResponse.php b/src/gen/lib/Model/GetLedgerAccountsResponse.php
index 005d3af4ae..36051a49c8 100644
--- a/src/gen/lib/Model/GetLedgerAccountsResponse.php
+++ b/src/gen/lib/Model/GetLedgerAccountsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationResponse.php b/src/gen/lib/Model/GetLocationResponse.php
index ec48f1a9da..c83b0e959e 100644
--- a/src/gen/lib/Model/GetLocationResponse.php
+++ b/src/gen/lib/Model/GetLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLocationsResponse.php b/src/gen/lib/Model/GetLocationsResponse.php
index 61410f0d3f..c847cf1355 100644
--- a/src/gen/lib/Model/GetLocationsResponse.php
+++ b/src/gen/lib/Model/GetLocationsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetLogsResponse.php b/src/gen/lib/Model/GetLogsResponse.php
index 329badf46b..d283a8303a 100644
--- a/src/gen/lib/Model/GetLogsResponse.php
+++ b/src/gen/lib/Model/GetLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantResponse.php b/src/gen/lib/Model/GetMerchantResponse.php
index 46a3d12cdd..67afe30093 100644
--- a/src/gen/lib/Model/GetMerchantResponse.php
+++ b/src/gen/lib/Model/GetMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMerchantsResponse.php b/src/gen/lib/Model/GetMerchantsResponse.php
index fd083052a9..23618654c8 100644
--- a/src/gen/lib/Model/GetMerchantsResponse.php
+++ b/src/gen/lib/Model/GetMerchantsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessageResponse.php b/src/gen/lib/Model/GetMessageResponse.php
index 4eeb04e5f8..7a1b50d5a9 100644
--- a/src/gen/lib/Model/GetMessageResponse.php
+++ b/src/gen/lib/Model/GetMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetMessagesResponse.php b/src/gen/lib/Model/GetMessagesResponse.php
index fc73f38576..cecf0e1662 100644
--- a/src/gen/lib/Model/GetMessagesResponse.php
+++ b/src/gen/lib/Model/GetMessagesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupResponse.php b/src/gen/lib/Model/GetModifierGroupResponse.php
index ad66b6a574..02209e2b0a 100644
--- a/src/gen/lib/Model/GetModifierGroupResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierGroupsResponse.php b/src/gen/lib/Model/GetModifierGroupsResponse.php
index 1b706f0c69..92dd49ca30 100644
--- a/src/gen/lib/Model/GetModifierGroupsResponse.php
+++ b/src/gen/lib/Model/GetModifierGroupsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifierResponse.php b/src/gen/lib/Model/GetModifierResponse.php
index 900a0af191..f09f4f7813 100644
--- a/src/gen/lib/Model/GetModifierResponse.php
+++ b/src/gen/lib/Model/GetModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetModifiersResponse.php b/src/gen/lib/Model/GetModifiersResponse.php
index adedd8ed30..d1e96a9357 100644
--- a/src/gen/lib/Model/GetModifiersResponse.php
+++ b/src/gen/lib/Model/GetModifiersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNoteResponse.php b/src/gen/lib/Model/GetNoteResponse.php
index 8bc135aee8..35ffb33914 100644
--- a/src/gen/lib/Model/GetNoteResponse.php
+++ b/src/gen/lib/Model/GetNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetNotesResponse.php b/src/gen/lib/Model/GetNotesResponse.php
index 0e3e8ae85b..eea83e90d8 100644
--- a/src/gen/lib/Model/GetNotesResponse.php
+++ b/src/gen/lib/Model/GetNotesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunitiesResponse.php b/src/gen/lib/Model/GetOpportunitiesResponse.php
index b5d93404e6..da9b211c03 100644
--- a/src/gen/lib/Model/GetOpportunitiesResponse.php
+++ b/src/gen/lib/Model/GetOpportunitiesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOpportunityResponse.php b/src/gen/lib/Model/GetOpportunityResponse.php
index 8d3c54dfad..da36aed113 100644
--- a/src/gen/lib/Model/GetOpportunityResponse.php
+++ b/src/gen/lib/Model/GetOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderResponse.php b/src/gen/lib/Model/GetOrderResponse.php
index cb54980ab9..a56d1c728c 100644
--- a/src/gen/lib/Model/GetOrderResponse.php
+++ b/src/gen/lib/Model/GetOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypeResponse.php b/src/gen/lib/Model/GetOrderTypeResponse.php
index 5202aae847..43eab9ac54 100644
--- a/src/gen/lib/Model/GetOrderTypeResponse.php
+++ b/src/gen/lib/Model/GetOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrderTypesResponse.php b/src/gen/lib/Model/GetOrderTypesResponse.php
index dd66dc0189..885deaece1 100644
--- a/src/gen/lib/Model/GetOrderTypesResponse.php
+++ b/src/gen/lib/Model/GetOrderTypesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetOrdersResponse.php b/src/gen/lib/Model/GetOrdersResponse.php
index ceffcfdbaf..baff3cd37c 100644
--- a/src/gen/lib/Model/GetOrdersResponse.php
+++ b/src/gen/lib/Model/GetOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentResponse.php b/src/gen/lib/Model/GetPaymentResponse.php
index e2137e03d3..70f446b767 100644
--- a/src/gen/lib/Model/GetPaymentResponse.php
+++ b/src/gen/lib/Model/GetPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPaymentsResponse.php b/src/gen/lib/Model/GetPaymentsResponse.php
index 49966a1839..f6f6c5fc70 100644
--- a/src/gen/lib/Model/GetPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollResponse.php b/src/gen/lib/Model/GetPayrollResponse.php
index 23ad466d68..ab0a7ab415 100644
--- a/src/gen/lib/Model/GetPayrollResponse.php
+++ b/src/gen/lib/Model/GetPayrollResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPayrollsResponse.php b/src/gen/lib/Model/GetPayrollsResponse.php
index 0ad814d3d7..0554614529 100644
--- a/src/gen/lib/Model/GetPayrollsResponse.php
+++ b/src/gen/lib/Model/GetPayrollsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelineResponse.php b/src/gen/lib/Model/GetPipelineResponse.php
index 78e390b385..5c5b020926 100644
--- a/src/gen/lib/Model/GetPipelineResponse.php
+++ b/src/gen/lib/Model/GetPipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPipelinesResponse.php b/src/gen/lib/Model/GetPipelinesResponse.php
index 0c0cb429fb..55f6b6569b 100644
--- a/src/gen/lib/Model/GetPipelinesResponse.php
+++ b/src/gen/lib/Model/GetPipelinesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentResponse.php b/src/gen/lib/Model/GetPosPaymentResponse.php
index 06ea5fb97e..76758bd3cd 100644
--- a/src/gen/lib/Model/GetPosPaymentResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPosPaymentsResponse.php b/src/gen/lib/Model/GetPosPaymentsResponse.php
index 807265f6d1..5201fa22ea 100644
--- a/src/gen/lib/Model/GetPosPaymentsResponse.php
+++ b/src/gen/lib/Model/GetPosPaymentsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductResponse.php b/src/gen/lib/Model/GetProductResponse.php
index 9ac0d8f0d3..6f6608eb70 100644
--- a/src/gen/lib/Model/GetProductResponse.php
+++ b/src/gen/lib/Model/GetProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProductsResponse.php b/src/gen/lib/Model/GetProductsResponse.php
index 5bbee9219a..b9a6d3362a 100644
--- a/src/gen/lib/Model/GetProductsResponse.php
+++ b/src/gen/lib/Model/GetProductsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetProfitAndLossResponse.php b/src/gen/lib/Model/GetProfitAndLossResponse.php
index f0508d9676..2e37932b88 100644
--- a/src/gen/lib/Model/GetProfitAndLossResponse.php
+++ b/src/gen/lib/Model/GetProfitAndLossResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrderResponse.php b/src/gen/lib/Model/GetPurchaseOrderResponse.php
index 1e5b2a191a..f0290b7d5e 100644
--- a/src/gen/lib/Model/GetPurchaseOrderResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetPurchaseOrdersResponse.php b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
index a112aa6526..307ef97f9d 100644
--- a/src/gen/lib/Model/GetPurchaseOrdersResponse.php
+++ b/src/gen/lib/Model/GetPurchaseOrdersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceExampleResponse.php b/src/gen/lib/Model/GetResourceExampleResponse.php
index f9da283279..9052ba9f7c 100644
--- a/src/gen/lib/Model/GetResourceExampleResponse.php
+++ b/src/gen/lib/Model/GetResourceExampleResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetResourceSchemaResponse.php b/src/gen/lib/Model/GetResourceSchemaResponse.php
index 63b4d42ff2..113951d2ca 100644
--- a/src/gen/lib/Model/GetResourceSchemaResponse.php
+++ b/src/gen/lib/Model/GetResourceSchemaResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinkResponse.php b/src/gen/lib/Model/GetSharedLinkResponse.php
index 2894c07ee5..7a4137b6c3 100644
--- a/src/gen/lib/Model/GetSharedLinkResponse.php
+++ b/src/gen/lib/Model/GetSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSharedLinksResponse.php b/src/gen/lib/Model/GetSharedLinksResponse.php
index 68c0fbe049..d1819c8b56 100644
--- a/src/gen/lib/Model/GetSharedLinksResponse.php
+++ b/src/gen/lib/Model/GetSharedLinksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoreResponse.php b/src/gen/lib/Model/GetStoreResponse.php
index 8e87810a2e..83a0449848 100644
--- a/src/gen/lib/Model/GetStoreResponse.php
+++ b/src/gen/lib/Model/GetStoreResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetStoresResponse.php b/src/gen/lib/Model/GetStoresResponse.php
index f332674653..08d0089c10 100644
--- a/src/gen/lib/Model/GetStoresResponse.php
+++ b/src/gen/lib/Model/GetStoresResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSubsidiariesResponse.php b/src/gen/lib/Model/GetSubsidiariesResponse.php
index 7cad938f0d..25d7e20fd8 100644
--- a/src/gen/lib/Model/GetSubsidiariesResponse.php
+++ b/src/gen/lib/Model/GetSubsidiariesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSubsidiaryResponse.php b/src/gen/lib/Model/GetSubsidiaryResponse.php
index 4b2bae1ed7..ce7ee9f61d 100644
--- a/src/gen/lib/Model/GetSubsidiaryResponse.php
+++ b/src/gen/lib/Model/GetSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSupplierResponse.php b/src/gen/lib/Model/GetSupplierResponse.php
index d0b91c0ef2..bbc78ac11d 100644
--- a/src/gen/lib/Model/GetSupplierResponse.php
+++ b/src/gen/lib/Model/GetSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetSuppliersResponse.php b/src/gen/lib/Model/GetSuppliersResponse.php
index 620ef198d9..768bb7673d 100644
--- a/src/gen/lib/Model/GetSuppliersResponse.php
+++ b/src/gen/lib/Model/GetSuppliersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRateResponse.php b/src/gen/lib/Model/GetTaxRateResponse.php
index d9891c667e..a22124a61b 100644
--- a/src/gen/lib/Model/GetTaxRateResponse.php
+++ b/src/gen/lib/Model/GetTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTaxRatesResponse.php b/src/gen/lib/Model/GetTaxRatesResponse.php
index 645ad43102..72314d444a 100644
--- a/src/gen/lib/Model/GetTaxRatesResponse.php
+++ b/src/gen/lib/Model/GetTaxRatesResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTenderResponse.php b/src/gen/lib/Model/GetTenderResponse.php
index 5cad0fd272..dac3afdd76 100644
--- a/src/gen/lib/Model/GetTenderResponse.php
+++ b/src/gen/lib/Model/GetTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTendersResponse.php b/src/gen/lib/Model/GetTendersResponse.php
index 2f735b6e9a..14b589619e 100644
--- a/src/gen/lib/Model/GetTendersResponse.php
+++ b/src/gen/lib/Model/GetTendersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketResponse.php b/src/gen/lib/Model/GetTicketResponse.php
index 1b2c508b2a..235b415526 100644
--- a/src/gen/lib/Model/GetTicketResponse.php
+++ b/src/gen/lib/Model/GetTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTicketsResponse.php b/src/gen/lib/Model/GetTicketsResponse.php
index 342127f3a8..1131cf4237 100644
--- a/src/gen/lib/Model/GetTicketsResponse.php
+++ b/src/gen/lib/Model/GetTicketsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestResponse.php b/src/gen/lib/Model/GetTimeOffRequestResponse.php
index 74aaa7b8ec..39a2855ea7 100644
--- a/src/gen/lib/Model/GetTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetTimeOffRequestsResponse.php b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
index 552aaddfe4..df065b3a1f 100644
--- a/src/gen/lib/Model/GetTimeOffRequestsResponse.php
+++ b/src/gen/lib/Model/GetTimeOffRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUploadSessionResponse.php b/src/gen/lib/Model/GetUploadSessionResponse.php
index ae6e090000..4477d1942e 100644
--- a/src/gen/lib/Model/GetUploadSessionResponse.php
+++ b/src/gen/lib/Model/GetUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUserResponse.php b/src/gen/lib/Model/GetUserResponse.php
index 571ec1dcdd..2c7212d059 100644
--- a/src/gen/lib/Model/GetUserResponse.php
+++ b/src/gen/lib/Model/GetUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetUsersResponse.php b/src/gen/lib/Model/GetUsersResponse.php
index 122c035f51..07962d7a87 100644
--- a/src/gen/lib/Model/GetUsersResponse.php
+++ b/src/gen/lib/Model/GetUsersResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookEventLogsResponse.php b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
index 0d3732498a..d62d8f3ad5 100644
--- a/src/gen/lib/Model/GetWebhookEventLogsResponse.php
+++ b/src/gen/lib/Model/GetWebhookEventLogsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhookResponse.php b/src/gen/lib/Model/GetWebhookResponse.php
index 98a97e7a15..9f428938da 100644
--- a/src/gen/lib/Model/GetWebhookResponse.php
+++ b/src/gen/lib/Model/GetWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/GetWebhooksResponse.php b/src/gen/lib/Model/GetWebhooksResponse.php
index 19dc5fdca2..eb99f7867a 100644
--- a/src/gen/lib/Model/GetWebhooksResponse.php
+++ b/src/gen/lib/Model/GetWebhooksResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisCompany.php b/src/gen/lib/Model/HrisCompany.php
index 89890b0b5e..d615a6f4c6 100644
--- a/src/gen/lib/Model/HrisCompany.php
+++ b/src/gen/lib/Model/HrisCompany.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisEventType.php b/src/gen/lib/Model/HrisEventType.php
index c53f9e600f..012cc60146 100644
--- a/src/gen/lib/Model/HrisEventType.php
+++ b/src/gen/lib/Model/HrisEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJob.php b/src/gen/lib/Model/HrisJob.php
index f585a2ef7f..9a50f72a08 100644
--- a/src/gen/lib/Model/HrisJob.php
+++ b/src/gen/lib/Model/HrisJob.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobLocation.php b/src/gen/lib/Model/HrisJobLocation.php
index edd60f800d..c39f1b1a62 100644
--- a/src/gen/lib/Model/HrisJobLocation.php
+++ b/src/gen/lib/Model/HrisJobLocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/HrisJobs.php b/src/gen/lib/Model/HrisJobs.php
index 24b84d120a..9578f95c72 100644
--- a/src/gen/lib/Model/HrisJobs.php
+++ b/src/gen/lib/Model/HrisJobs.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IntegrationState.php b/src/gen/lib/Model/IntegrationState.php
index 5493b7e2c4..7257eda37f 100644
--- a/src/gen/lib/Model/IntegrationState.php
+++ b/src/gen/lib/Model/IntegrationState.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Invoice.php b/src/gen/lib/Model/Invoice.php
index 81411598f4..4534c056b1 100644
--- a/src/gen/lib/Model/Invoice.php
+++ b/src/gen/lib/Model/Invoice.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItem.php b/src/gen/lib/Model/InvoiceItem.php
index 3a78f6bfb1..594b39e0eb 100644
--- a/src/gen/lib/Model/InvoiceItem.php
+++ b/src/gen/lib/Model/InvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemSalesDetails.php b/src/gen/lib/Model/InvoiceItemSalesDetails.php
index db06c1f158..f2de490b4b 100644
--- a/src/gen/lib/Model/InvoiceItemSalesDetails.php
+++ b/src/gen/lib/Model/InvoiceItemSalesDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceItemsFilter.php b/src/gen/lib/Model/InvoiceItemsFilter.php
index aa96418024..b64adcbc9a 100644
--- a/src/gen/lib/Model/InvoiceItemsFilter.php
+++ b/src/gen/lib/Model/InvoiceItemsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceLineItem.php b/src/gen/lib/Model/InvoiceLineItem.php
index c617093995..3c33484640 100644
--- a/src/gen/lib/Model/InvoiceLineItem.php
+++ b/src/gen/lib/Model/InvoiceLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoiceResponse.php b/src/gen/lib/Model/InvoiceResponse.php
index 20148a3894..92dc94ca8b 100644
--- a/src/gen/lib/Model/InvoiceResponse.php
+++ b/src/gen/lib/Model/InvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesFilter.php b/src/gen/lib/Model/InvoicesFilter.php
index 859197129e..23e96791b3 100644
--- a/src/gen/lib/Model/InvoicesFilter.php
+++ b/src/gen/lib/Model/InvoicesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/InvoicesSort.php b/src/gen/lib/Model/InvoicesSort.php
index 62e5075e46..101359e35c 100644
--- a/src/gen/lib/Model/InvoicesSort.php
+++ b/src/gen/lib/Model/InvoicesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssueTrackingEventType.php b/src/gen/lib/Model/IssueTrackingEventType.php
index fac8c441b0..5de85cdf52 100644
--- a/src/gen/lib/Model/IssueTrackingEventType.php
+++ b/src/gen/lib/Model/IssueTrackingEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/IssuesFilter.php b/src/gen/lib/Model/IssuesFilter.php
index 610179194a..cf929ef3ca 100644
--- a/src/gen/lib/Model/IssuesFilter.php
+++ b/src/gen/lib/Model/IssuesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Item.php b/src/gen/lib/Model/Item.php
index 2f10a1d4e3..a3de494106 100644
--- a/src/gen/lib/Model/Item.php
+++ b/src/gen/lib/Model/Item.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Job.php b/src/gen/lib/Model/Job.php
index 48e47e4f04..be7ac28e70 100644
--- a/src/gen/lib/Model/Job.php
+++ b/src/gen/lib/Model/Job.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobLinks.php b/src/gen/lib/Model/JobLinks.php
index d168a1993a..fea1f15fe2 100644
--- a/src/gen/lib/Model/JobLinks.php
+++ b/src/gen/lib/Model/JobLinks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobSalary.php b/src/gen/lib/Model/JobSalary.php
index c9a53f67a8..484183deb5 100644
--- a/src/gen/lib/Model/JobSalary.php
+++ b/src/gen/lib/Model/JobSalary.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JobStatus.php b/src/gen/lib/Model/JobStatus.php
index 5429f52b9d..4671a5f4c4 100644
--- a/src/gen/lib/Model/JobStatus.php
+++ b/src/gen/lib/Model/JobStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesFilter.php b/src/gen/lib/Model/JournalEntriesFilter.php
index 6bf6430ab9..e51c940832 100644
--- a/src/gen/lib/Model/JournalEntriesFilter.php
+++ b/src/gen/lib/Model/JournalEntriesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntriesSort.php b/src/gen/lib/Model/JournalEntriesSort.php
index aab460d1eb..011d996e74 100644
--- a/src/gen/lib/Model/JournalEntriesSort.php
+++ b/src/gen/lib/Model/JournalEntriesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntry.php b/src/gen/lib/Model/JournalEntry.php
index f88301f43c..fb66c2fb18 100644
--- a/src/gen/lib/Model/JournalEntry.php
+++ b/src/gen/lib/Model/JournalEntry.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/JournalEntryLineItem.php b/src/gen/lib/Model/JournalEntryLineItem.php
index de5e720a44..fca93396c0 100644
--- a/src/gen/lib/Model/JournalEntryLineItem.php
+++ b/src/gen/lib/Model/JournalEntryLineItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Lead.php b/src/gen/lib/Model/Lead.php
index b2117a8171..6065f1013c 100644
--- a/src/gen/lib/Model/Lead.php
+++ b/src/gen/lib/Model/Lead.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadEventType.php b/src/gen/lib/Model/LeadEventType.php
index 030ed73e6e..0233893647 100644
--- a/src/gen/lib/Model/LeadEventType.php
+++ b/src/gen/lib/Model/LeadEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsFilter.php b/src/gen/lib/Model/LeadsFilter.php
index 340d757334..0e816fc287 100644
--- a/src/gen/lib/Model/LeadsFilter.php
+++ b/src/gen/lib/Model/LeadsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LeadsSort.php b/src/gen/lib/Model/LeadsSort.php
index 891fb76c53..1e862a033c 100644
--- a/src/gen/lib/Model/LeadsSort.php
+++ b/src/gen/lib/Model/LeadsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccount.php b/src/gen/lib/Model/LedgerAccount.php
index f73a0a285a..97921a9a38 100644
--- a/src/gen/lib/Model/LedgerAccount.php
+++ b/src/gen/lib/Model/LedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountCategories.php b/src/gen/lib/Model/LedgerAccountCategories.php
index d2812e93f7..b4aa7488af 100644
--- a/src/gen/lib/Model/LedgerAccountCategories.php
+++ b/src/gen/lib/Model/LedgerAccountCategories.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountParentAccount.php b/src/gen/lib/Model/LedgerAccountParentAccount.php
index 9fc7dad2a2..b9e64ee88e 100644
--- a/src/gen/lib/Model/LedgerAccountParentAccount.php
+++ b/src/gen/lib/Model/LedgerAccountParentAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsFilter.php b/src/gen/lib/Model/LedgerAccountsFilter.php
index 6eb1f59690..55e096015a 100644
--- a/src/gen/lib/Model/LedgerAccountsFilter.php
+++ b/src/gen/lib/Model/LedgerAccountsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LedgerAccountsSort.php b/src/gen/lib/Model/LedgerAccountsSort.php
index bd6bf3c11f..9aff7df206 100644
--- a/src/gen/lib/Model/LedgerAccountsSort.php
+++ b/src/gen/lib/Model/LedgerAccountsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedConnectorResource.php b/src/gen/lib/Model/LinkedConnectorResource.php
index 3abb9a74af..bfc95ddc47 100644
--- a/src/gen/lib/Model/LinkedConnectorResource.php
+++ b/src/gen/lib/Model/LinkedConnectorResource.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedCustomer.php b/src/gen/lib/Model/LinkedCustomer.php
index d415de6913..2b63555f37 100644
--- a/src/gen/lib/Model/LinkedCustomer.php
+++ b/src/gen/lib/Model/LinkedCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceCustomer.php b/src/gen/lib/Model/LinkedEcommerceCustomer.php
index 7bdd39fe77..90f47738cc 100644
--- a/src/gen/lib/Model/LinkedEcommerceCustomer.php
+++ b/src/gen/lib/Model/LinkedEcommerceCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedEcommerceOrder.php b/src/gen/lib/Model/LinkedEcommerceOrder.php
index 06159e5653..ea08514388 100644
--- a/src/gen/lib/Model/LinkedEcommerceOrder.php
+++ b/src/gen/lib/Model/LinkedEcommerceOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedFolder.php b/src/gen/lib/Model/LinkedFolder.php
index b642897e12..c73b852d31 100644
--- a/src/gen/lib/Model/LinkedFolder.php
+++ b/src/gen/lib/Model/LinkedFolder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedInvoiceItem.php b/src/gen/lib/Model/LinkedInvoiceItem.php
index cc844de7bc..3142e993be 100644
--- a/src/gen/lib/Model/LinkedInvoiceItem.php
+++ b/src/gen/lib/Model/LinkedInvoiceItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedLedgerAccount.php b/src/gen/lib/Model/LinkedLedgerAccount.php
index de5c02fa9a..630324f65d 100644
--- a/src/gen/lib/Model/LinkedLedgerAccount.php
+++ b/src/gen/lib/Model/LinkedLedgerAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedParentCustomer.php b/src/gen/lib/Model/LinkedParentCustomer.php
index 4107fa4cc5..0ef7d824f7 100644
--- a/src/gen/lib/Model/LinkedParentCustomer.php
+++ b/src/gen/lib/Model/LinkedParentCustomer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedSupplier.php b/src/gen/lib/Model/LinkedSupplier.php
index 103b09c1a5..ce5a1a02e6 100644
--- a/src/gen/lib/Model/LinkedSupplier.php
+++ b/src/gen/lib/Model/LinkedSupplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTaxRate.php b/src/gen/lib/Model/LinkedTaxRate.php
index 71c2e6a2ee..f5f0a178cb 100644
--- a/src/gen/lib/Model/LinkedTaxRate.php
+++ b/src/gen/lib/Model/LinkedTaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LinkedTrackingCategory.php b/src/gen/lib/Model/LinkedTrackingCategory.php
index 602ff3ccd0..415a8e62e8 100644
--- a/src/gen/lib/Model/LinkedTrackingCategory.php
+++ b/src/gen/lib/Model/LinkedTrackingCategory.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Links.php b/src/gen/lib/Model/Links.php
index 210ee80441..4435095111 100644
--- a/src/gen/lib/Model/Links.php
+++ b/src/gen/lib/Model/Links.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Location.php b/src/gen/lib/Model/Location.php
index 61611e6990..1abeb6d777 100644
--- a/src/gen/lib/Model/Location.php
+++ b/src/gen/lib/Model/Location.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Log.php b/src/gen/lib/Model/Log.php
index 1391ef8e73..9605fa5b5d 100644
--- a/src/gen/lib/Model/Log.php
+++ b/src/gen/lib/Model/Log.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogOperation.php b/src/gen/lib/Model/LogOperation.php
index 1e9dbeb5c0..0ef48764eb 100644
--- a/src/gen/lib/Model/LogOperation.php
+++ b/src/gen/lib/Model/LogOperation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogService.php b/src/gen/lib/Model/LogService.php
index 27cf311db8..f55e7e0e92 100644
--- a/src/gen/lib/Model/LogService.php
+++ b/src/gen/lib/Model/LogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/LogsFilter.php b/src/gen/lib/Model/LogsFilter.php
index b9bbe3b190..4713f32db3 100644
--- a/src/gen/lib/Model/LogsFilter.php
+++ b/src/gen/lib/Model/LogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Merchant.php b/src/gen/lib/Model/Merchant.php
index 549ccb1dca..5c1a7d7631 100644
--- a/src/gen/lib/Model/Merchant.php
+++ b/src/gen/lib/Model/Merchant.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Message.php b/src/gen/lib/Model/Message.php
index ced0e0bb6a..317066ca49 100644
--- a/src/gen/lib/Model/Message.php
+++ b/src/gen/lib/Model/Message.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Meta.php b/src/gen/lib/Model/Meta.php
index be857c1b50..2dc10d2aae 100644
--- a/src/gen/lib/Model/Meta.php
+++ b/src/gen/lib/Model/Meta.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/MetaCursors.php b/src/gen/lib/Model/MetaCursors.php
index fa3b111740..1161da081e 100644
--- a/src/gen/lib/Model/MetaCursors.php
+++ b/src/gen/lib/Model/MetaCursors.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModelInterface.php b/src/gen/lib/Model/ModelInterface.php
index 01d8de3cd2..f2853cee50 100644
--- a/src/gen/lib/Model/ModelInterface.php
+++ b/src/gen/lib/Model/ModelInterface.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Modifier.php b/src/gen/lib/Model/Modifier.php
index e14cfcd49b..e13bf5e444 100644
--- a/src/gen/lib/Model/Modifier.php
+++ b/src/gen/lib/Model/Modifier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroup.php b/src/gen/lib/Model/ModifierGroup.php
index 278a559f78..5a28d2c8cb 100644
--- a/src/gen/lib/Model/ModifierGroup.php
+++ b/src/gen/lib/Model/ModifierGroup.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ModifierGroupFilter.php b/src/gen/lib/Model/ModifierGroupFilter.php
index 64d18417ec..72c5f902f0 100644
--- a/src/gen/lib/Model/ModifierGroupFilter.php
+++ b/src/gen/lib/Model/ModifierGroupFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotFoundResponse.php b/src/gen/lib/Model/NotFoundResponse.php
index d3c926e722..58102f8acd 100644
--- a/src/gen/lib/Model/NotFoundResponse.php
+++ b/src/gen/lib/Model/NotFoundResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/NotImplementedResponse.php b/src/gen/lib/Model/NotImplementedResponse.php
index 031edee0ba..9559abbab2 100644
--- a/src/gen/lib/Model/NotImplementedResponse.php
+++ b/src/gen/lib/Model/NotImplementedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Note.php b/src/gen/lib/Model/Note.php
index 86c050bd8d..611740e11b 100644
--- a/src/gen/lib/Model/Note.php
+++ b/src/gen/lib/Model/Note.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OAuthGrantType.php b/src/gen/lib/Model/OAuthGrantType.php
index ec080f3baf..b499a6f3bd 100644
--- a/src/gen/lib/Model/OAuthGrantType.php
+++ b/src/gen/lib/Model/OAuthGrantType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Offer.php b/src/gen/lib/Model/Offer.php
index 2e40abc5ef..3661cac359 100644
--- a/src/gen/lib/Model/Offer.php
+++ b/src/gen/lib/Model/Offer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesFilter.php b/src/gen/lib/Model/OpportunitiesFilter.php
index d0d6a8eb29..96add64522 100644
--- a/src/gen/lib/Model/OpportunitiesFilter.php
+++ b/src/gen/lib/Model/OpportunitiesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OpportunitiesSort.php b/src/gen/lib/Model/OpportunitiesSort.php
index a429211330..f6b934ad39 100644
--- a/src/gen/lib/Model/OpportunitiesSort.php
+++ b/src/gen/lib/Model/OpportunitiesSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Opportunity.php b/src/gen/lib/Model/Opportunity.php
index 678ec4bfd9..a058b8ea77 100644
--- a/src/gen/lib/Model/Opportunity.php
+++ b/src/gen/lib/Model/Opportunity.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Order.php b/src/gen/lib/Model/Order.php
index a4fc219d14..a46b49d135 100644
--- a/src/gen/lib/Model/Order.php
+++ b/src/gen/lib/Model/Order.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderCustomers.php b/src/gen/lib/Model/OrderCustomers.php
index d425f5b9cc..f08aaee17c 100644
--- a/src/gen/lib/Model/OrderCustomers.php
+++ b/src/gen/lib/Model/OrderCustomers.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderDiscounts.php b/src/gen/lib/Model/OrderDiscounts.php
index 2020b18e27..324a8f34a4 100644
--- a/src/gen/lib/Model/OrderDiscounts.php
+++ b/src/gen/lib/Model/OrderDiscounts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderFulfillments.php b/src/gen/lib/Model/OrderFulfillments.php
index 779144361c..ba033df8f4 100644
--- a/src/gen/lib/Model/OrderFulfillments.php
+++ b/src/gen/lib/Model/OrderFulfillments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderLineItems.php b/src/gen/lib/Model/OrderLineItems.php
index d734b7fd96..1ae2087f9e 100644
--- a/src/gen/lib/Model/OrderLineItems.php
+++ b/src/gen/lib/Model/OrderLineItems.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPayments.php b/src/gen/lib/Model/OrderPayments.php
index b61cf9975c..85559cf614 100644
--- a/src/gen/lib/Model/OrderPayments.php
+++ b/src/gen/lib/Model/OrderPayments.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetails.php b/src/gen/lib/Model/OrderPickupDetails.php
index 765f8630ec..d241510a5d 100644
--- a/src/gen/lib/Model/OrderPickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
index dd01803611..a374a7c7b7 100644
--- a/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
+++ b/src/gen/lib/Model/OrderPickupDetailsCurbsidePickupDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderPickupDetailsRecipient.php b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
index 328f6651c3..af66d80fec 100644
--- a/src/gen/lib/Model/OrderPickupDetailsRecipient.php
+++ b/src/gen/lib/Model/OrderPickupDetailsRecipient.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderRefunds.php b/src/gen/lib/Model/OrderRefunds.php
index 3153276855..58b4119a5b 100644
--- a/src/gen/lib/Model/OrderRefunds.php
+++ b/src/gen/lib/Model/OrderRefunds.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderTenders.php b/src/gen/lib/Model/OrderTenders.php
index 0a2ec47f82..0206e5e64b 100644
--- a/src/gen/lib/Model/OrderTenders.php
+++ b/src/gen/lib/Model/OrderTenders.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/OrderType.php b/src/gen/lib/Model/OrderType.php
index 000f91f50f..4f27d5d2b3 100644
--- a/src/gen/lib/Model/OrderType.php
+++ b/src/gen/lib/Model/OrderType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Owner.php b/src/gen/lib/Model/Owner.php
index 885b6e04e7..8d3fd00056 100644
--- a/src/gen/lib/Model/Owner.php
+++ b/src/gen/lib/Model/Owner.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaginationCoverage.php b/src/gen/lib/Model/PaginationCoverage.php
index 094408e23f..7a58ad80a1 100644
--- a/src/gen/lib/Model/PaginationCoverage.php
+++ b/src/gen/lib/Model/PaginationCoverage.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PassThroughQuery.php b/src/gen/lib/Model/PassThroughQuery.php
index 0bcdde6f75..1b198280b1 100644
--- a/src/gen/lib/Model/PassThroughQuery.php
+++ b/src/gen/lib/Model/PassThroughQuery.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payment.php b/src/gen/lib/Model/Payment.php
index dc9b563506..036ad3b19c 100644
--- a/src/gen/lib/Model/Payment.php
+++ b/src/gen/lib/Model/Payment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentAllocations.php b/src/gen/lib/Model/PaymentAllocations.php
index 7dc28cfed5..844ddd9bc7 100644
--- a/src/gen/lib/Model/PaymentAllocations.php
+++ b/src/gen/lib/Model/PaymentAllocations.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentCard.php b/src/gen/lib/Model/PaymentCard.php
index 9721842760..39d37a92a6 100644
--- a/src/gen/lib/Model/PaymentCard.php
+++ b/src/gen/lib/Model/PaymentCard.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentFrequency.php b/src/gen/lib/Model/PaymentFrequency.php
index dcfa2e3fdb..9733c8c921 100644
--- a/src/gen/lib/Model/PaymentFrequency.php
+++ b/src/gen/lib/Model/PaymentFrequency.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentRequiredResponse.php b/src/gen/lib/Model/PaymentRequiredResponse.php
index 94f6185f30..de0f67b214 100644
--- a/src/gen/lib/Model/PaymentRequiredResponse.php
+++ b/src/gen/lib/Model/PaymentRequiredResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentUnit.php b/src/gen/lib/Model/PaymentUnit.php
index c6cb13a752..058a438508 100644
--- a/src/gen/lib/Model/PaymentUnit.php
+++ b/src/gen/lib/Model/PaymentUnit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsFilter.php b/src/gen/lib/Model/PaymentsFilter.php
index 1c22f6bfe0..cb622e6b31 100644
--- a/src/gen/lib/Model/PaymentsFilter.php
+++ b/src/gen/lib/Model/PaymentsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PaymentsSort.php b/src/gen/lib/Model/PaymentsSort.php
index 7327cb8830..52c5f3e791 100644
--- a/src/gen/lib/Model/PaymentsSort.php
+++ b/src/gen/lib/Model/PaymentsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Payroll.php b/src/gen/lib/Model/Payroll.php
index 3372446650..b47222f54f 100644
--- a/src/gen/lib/Model/Payroll.php
+++ b/src/gen/lib/Model/Payroll.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollTotals.php b/src/gen/lib/Model/PayrollTotals.php
index 8ae4193704..f2b9c007de 100644
--- a/src/gen/lib/Model/PayrollTotals.php
+++ b/src/gen/lib/Model/PayrollTotals.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PayrollsFilter.php b/src/gen/lib/Model/PayrollsFilter.php
index d313e17181..02223f397c 100644
--- a/src/gen/lib/Model/PayrollsFilter.php
+++ b/src/gen/lib/Model/PayrollsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Person.php b/src/gen/lib/Model/Person.php
index bc96d47210..7e571b49ea 100644
--- a/src/gen/lib/Model/Person.php
+++ b/src/gen/lib/Model/Person.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PhoneNumber.php b/src/gen/lib/Model/PhoneNumber.php
index 82b1253ca6..b54ed261c6 100644
--- a/src/gen/lib/Model/PhoneNumber.php
+++ b/src/gen/lib/Model/PhoneNumber.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Pipeline.php b/src/gen/lib/Model/Pipeline.php
index 024f8dc5b0..6537f313bd 100644
--- a/src/gen/lib/Model/Pipeline.php
+++ b/src/gen/lib/Model/Pipeline.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PipelineStages.php b/src/gen/lib/Model/PipelineStages.php
index 87a5b27c04..c4e32ba630 100644
--- a/src/gen/lib/Model/PipelineStages.php
+++ b/src/gen/lib/Model/PipelineStages.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccount.php b/src/gen/lib/Model/PosBankAccount.php
index 1e6a732c22..7a291ec111 100644
--- a/src/gen/lib/Model/PosBankAccount.php
+++ b/src/gen/lib/Model/PosBankAccount.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosBankAccountAchDetails.php b/src/gen/lib/Model/PosBankAccountAchDetails.php
index 5c557fe2b9..4f24f276c8 100644
--- a/src/gen/lib/Model/PosBankAccountAchDetails.php
+++ b/src/gen/lib/Model/PosBankAccountAchDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPayment.php b/src/gen/lib/Model/PosPayment.php
index 49114a70e4..db4276f214 100644
--- a/src/gen/lib/Model/PosPayment.php
+++ b/src/gen/lib/Model/PosPayment.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentCardDetails.php b/src/gen/lib/Model/PosPaymentCardDetails.php
index 696ab0b103..508f520892 100644
--- a/src/gen/lib/Model/PosPaymentCardDetails.php
+++ b/src/gen/lib/Model/PosPaymentCardDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PosPaymentExternalDetails.php b/src/gen/lib/Model/PosPaymentExternalDetails.php
index d127da36b9..33a4c69236 100644
--- a/src/gen/lib/Model/PosPaymentExternalDetails.php
+++ b/src/gen/lib/Model/PosPaymentExternalDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Price.php b/src/gen/lib/Model/Price.php
index e1aee5b326..5fc5507bd8 100644
--- a/src/gen/lib/Model/Price.php
+++ b/src/gen/lib/Model/Price.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProbationPeriod.php b/src/gen/lib/Model/ProbationPeriod.php
index 8d462c3ff3..015aee77ec 100644
--- a/src/gen/lib/Model/ProbationPeriod.php
+++ b/src/gen/lib/Model/ProbationPeriod.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLoss.php b/src/gen/lib/Model/ProfitAndLoss.php
index 43059d511e..62c05fdfcd 100644
--- a/src/gen/lib/Model/ProfitAndLoss.php
+++ b/src/gen/lib/Model/ProfitAndLoss.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossExpenses.php b/src/gen/lib/Model/ProfitAndLossExpenses.php
index ec813d17d0..b087a2806f 100644
--- a/src/gen/lib/Model/ProfitAndLossExpenses.php
+++ b/src/gen/lib/Model/ProfitAndLossExpenses.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossFilter.php b/src/gen/lib/Model/ProfitAndLossFilter.php
index 5d4e5daf4d..95fd432f64 100644
--- a/src/gen/lib/Model/ProfitAndLossFilter.php
+++ b/src/gen/lib/Model/ProfitAndLossFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossGrossProfit.php b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
index ff2ac9ad0a..5b138a20a1 100644
--- a/src/gen/lib/Model/ProfitAndLossGrossProfit.php
+++ b/src/gen/lib/Model/ProfitAndLossGrossProfit.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossIncome.php b/src/gen/lib/Model/ProfitAndLossIncome.php
index eb732087cc..5dc32a1131 100644
--- a/src/gen/lib/Model/ProfitAndLossIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetIncome.php b/src/gen/lib/Model/ProfitAndLossNetIncome.php
index 373fe61648..fe704a5563 100644
--- a/src/gen/lib/Model/ProfitAndLossNetIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
index f88b9f5839..2aa23f69f6 100644
--- a/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
+++ b/src/gen/lib/Model/ProfitAndLossNetOperatingIncome.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossRecord.php b/src/gen/lib/Model/ProfitAndLossRecord.php
index 4328f60b71..8b12b59607 100644
--- a/src/gen/lib/Model/ProfitAndLossRecord.php
+++ b/src/gen/lib/Model/ProfitAndLossRecord.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ProfitAndLossSection.php b/src/gen/lib/Model/ProfitAndLossSection.php
index 8cdcbc22f4..90847483a0 100644
--- a/src/gen/lib/Model/ProfitAndLossSection.php
+++ b/src/gen/lib/Model/ProfitAndLossSection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrder.php b/src/gen/lib/Model/PurchaseOrder.php
index 5ba3a2c296..44b7ce8bed 100644
--- a/src/gen/lib/Model/PurchaseOrder.php
+++ b/src/gen/lib/Model/PurchaseOrder.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersFilter.php b/src/gen/lib/Model/PurchaseOrdersFilter.php
index 1b2f78759e..32defcf62a 100644
--- a/src/gen/lib/Model/PurchaseOrdersFilter.php
+++ b/src/gen/lib/Model/PurchaseOrdersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/PurchaseOrdersSort.php b/src/gen/lib/Model/PurchaseOrdersSort.php
index 82370c1df6..a4b06abf3a 100644
--- a/src/gen/lib/Model/PurchaseOrdersSort.php
+++ b/src/gen/lib/Model/PurchaseOrdersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestCountAllocation.php b/src/gen/lib/Model/RequestCountAllocation.php
index c6636bfbcc..9daf4cc5a8 100644
--- a/src/gen/lib/Model/RequestCountAllocation.php
+++ b/src/gen/lib/Model/RequestCountAllocation.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/RequestRate.php b/src/gen/lib/Model/RequestRate.php
index b5176dc8ad..1083c4adfc 100644
--- a/src/gen/lib/Model/RequestRate.php
+++ b/src/gen/lib/Model/RequestRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResolveWebhookResponse.php b/src/gen/lib/Model/ResolveWebhookResponse.php
index 3e3046b099..4fd81bef10 100644
--- a/src/gen/lib/Model/ResolveWebhookResponse.php
+++ b/src/gen/lib/Model/ResolveWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceExample.php b/src/gen/lib/Model/ResourceExample.php
index fec389df0c..3f51ecdbcd 100644
--- a/src/gen/lib/Model/ResourceExample.php
+++ b/src/gen/lib/Model/ResourceExample.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ResourceStatus.php b/src/gen/lib/Model/ResourceStatus.php
index 508fbc6eb6..6f25fc2d1f 100644
--- a/src/gen/lib/Model/ResourceStatus.php
+++ b/src/gen/lib/Model/ResourceStatus.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Schedule.php b/src/gen/lib/Model/Schedule.php
index f0517c88b2..e8986d0f87 100644
--- a/src/gen/lib/Model/Schedule.php
+++ b/src/gen/lib/Model/Schedule.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPattern.php b/src/gen/lib/Model/ScheduleWorkPattern.php
index a04f5923a0..e769b9c974 100644
--- a/src/gen/lib/Model/ScheduleWorkPattern.php
+++ b/src/gen/lib/Model/ScheduleWorkPattern.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
index c858f4ba1a..6735d521e3 100644
--- a/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
+++ b/src/gen/lib/Model/ScheduleWorkPatternOddWeeks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SchemaSupport.php b/src/gen/lib/Model/SchemaSupport.php
index dfa3af5e4b..5cfb504ad2 100644
--- a/src/gen/lib/Model/SchemaSupport.php
+++ b/src/gen/lib/Model/SchemaSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/ServiceCharge.php b/src/gen/lib/Model/ServiceCharge.php
index d53c34e659..fe8c90ef34 100644
--- a/src/gen/lib/Model/ServiceCharge.php
+++ b/src/gen/lib/Model/ServiceCharge.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Session.php b/src/gen/lib/Model/Session.php
index 2f0965a0b2..8cfd2de63f 100644
--- a/src/gen/lib/Model/Session.php
+++ b/src/gen/lib/Model/Session.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionSettings.php b/src/gen/lib/Model/SessionSettings.php
index 630025b739..1bc2d3c323 100644
--- a/src/gen/lib/Model/SessionSettings.php
+++ b/src/gen/lib/Model/SessionSettings.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SessionTheme.php b/src/gen/lib/Model/SessionTheme.php
index ea09dcc976..315d536081 100644
--- a/src/gen/lib/Model/SessionTheme.php
+++ b/src/gen/lib/Model/SessionTheme.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLink.php b/src/gen/lib/Model/SharedLink.php
index 60e425c2a3..e3b84cdf44 100644
--- a/src/gen/lib/Model/SharedLink.php
+++ b/src/gen/lib/Model/SharedLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SharedLinkTarget.php b/src/gen/lib/Model/SharedLinkTarget.php
index 1ee531d926..9c01a4373f 100644
--- a/src/gen/lib/Model/SharedLinkTarget.php
+++ b/src/gen/lib/Model/SharedLinkTarget.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SimpleFormFieldOption.php b/src/gen/lib/Model/SimpleFormFieldOption.php
index 4d44e66ff0..db6effd324 100644
--- a/src/gen/lib/Model/SimpleFormFieldOption.php
+++ b/src/gen/lib/Model/SimpleFormFieldOption.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SocialLink.php b/src/gen/lib/Model/SocialLink.php
index ab4d63bc3d..f8beff2b3e 100644
--- a/src/gen/lib/Model/SocialLink.php
+++ b/src/gen/lib/Model/SocialLink.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SortDirection.php b/src/gen/lib/Model/SortDirection.php
index 04241635ec..18e67b0107 100644
--- a/src/gen/lib/Model/SortDirection.php
+++ b/src/gen/lib/Model/SortDirection.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Status.php b/src/gen/lib/Model/Status.php
index 6814b1bf17..0e41091d35 100644
--- a/src/gen/lib/Model/Status.php
+++ b/src/gen/lib/Model/Status.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Subsidiary.php b/src/gen/lib/Model/Subsidiary.php
index b7af56db7b..d4263e15aa 100644
--- a/src/gen/lib/Model/Subsidiary.php
+++ b/src/gen/lib/Model/Subsidiary.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SubsidiaryReference.php b/src/gen/lib/Model/SubsidiaryReference.php
index 72b71deb40..0e537cf2bf 100644
--- a/src/gen/lib/Model/SubsidiaryReference.php
+++ b/src/gen/lib/Model/SubsidiaryReference.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Supplier.php b/src/gen/lib/Model/Supplier.php
index 2210274b65..23db370336 100644
--- a/src/gen/lib/Model/Supplier.php
+++ b/src/gen/lib/Model/Supplier.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersFilter.php b/src/gen/lib/Model/SuppliersFilter.php
index cd7256466b..c8d6979691 100644
--- a/src/gen/lib/Model/SuppliersFilter.php
+++ b/src/gen/lib/Model/SuppliersFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SuppliersSort.php b/src/gen/lib/Model/SuppliersSort.php
index eba8f45c3f..addebf687d 100644
--- a/src/gen/lib/Model/SuppliersSort.php
+++ b/src/gen/lib/Model/SuppliersSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/SupportedProperty.php b/src/gen/lib/Model/SupportedProperty.php
index f0786074ab..418183c823 100644
--- a/src/gen/lib/Model/SupportedProperty.php
+++ b/src/gen/lib/Model/SupportedProperty.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tax.php b/src/gen/lib/Model/Tax.php
index 26385f5229..4c1f71973a 100644
--- a/src/gen/lib/Model/Tax.php
+++ b/src/gen/lib/Model/Tax.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRate.php b/src/gen/lib/Model/TaxRate.php
index c5b9ff4a65..5b172be7f2 100644
--- a/src/gen/lib/Model/TaxRate.php
+++ b/src/gen/lib/Model/TaxRate.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TaxRatesFilter.php b/src/gen/lib/Model/TaxRatesFilter.php
index 3d87900371..f3d2f690fa 100644
--- a/src/gen/lib/Model/TaxRatesFilter.php
+++ b/src/gen/lib/Model/TaxRatesFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Team.php b/src/gen/lib/Model/Team.php
index ba2c6f82a1..10575f1ea2 100644
--- a/src/gen/lib/Model/Team.php
+++ b/src/gen/lib/Model/Team.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Tender.php b/src/gen/lib/Model/Tender.php
index 2323a439df..1488f15e45 100644
--- a/src/gen/lib/Model/Tender.php
+++ b/src/gen/lib/Model/Tender.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Ticket.php b/src/gen/lib/Model/Ticket.php
index 00489b970b..48bdd534ec 100644
--- a/src/gen/lib/Model/Ticket.php
+++ b/src/gen/lib/Model/Ticket.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TicketsSort.php b/src/gen/lib/Model/TicketsSort.php
index 15e4697255..e75f663c37 100644
--- a/src/gen/lib/Model/TicketsSort.php
+++ b/src/gen/lib/Model/TicketsSort.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequest.php b/src/gen/lib/Model/TimeOffRequest.php
index a92e01f50c..5cfcdc89d6 100644
--- a/src/gen/lib/Model/TimeOffRequest.php
+++ b/src/gen/lib/Model/TimeOffRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestNotes.php b/src/gen/lib/Model/TimeOffRequestNotes.php
index d7302afdd0..f87a662be7 100644
--- a/src/gen/lib/Model/TimeOffRequestNotes.php
+++ b/src/gen/lib/Model/TimeOffRequestNotes.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TimeOffRequestsFilter.php b/src/gen/lib/Model/TimeOffRequestsFilter.php
index a237bd9c3c..854d95bd90 100644
--- a/src/gen/lib/Model/TimeOffRequestsFilter.php
+++ b/src/gen/lib/Model/TimeOffRequestsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponse.php b/src/gen/lib/Model/TooManyRequestsResponse.php
index 1b3fa95274..0b2ef0f9c1 100644
--- a/src/gen/lib/Model/TooManyRequestsResponse.php
+++ b/src/gen/lib/Model/TooManyRequestsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TooManyRequestsResponseDetail.php b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
index 8f866c6f23..ad7e35a524 100644
--- a/src/gen/lib/Model/TooManyRequestsResponseDetail.php
+++ b/src/gen/lib/Model/TooManyRequestsResponseDetail.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/TrackingItem.php b/src/gen/lib/Model/TrackingItem.php
index ef3b19aa10..60d1354458 100644
--- a/src/gen/lib/Model/TrackingItem.php
+++ b/src/gen/lib/Model/TrackingItem.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnauthorizedResponse.php b/src/gen/lib/Model/UnauthorizedResponse.php
index a867366760..ee88b6540a 100644
--- a/src/gen/lib/Model/UnauthorizedResponse.php
+++ b/src/gen/lib/Model/UnauthorizedResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -63,7 +63,7 @@ class UnauthorizedResponse implements ModelInterface, ArrayAccess, \JsonSerializ
'error' => 'string',
'type_name' => 'string',
'message' => 'string',
- 'detail' => 'string',
+ 'detail' => 'AnyOfStringObject',
'ref' => 'string'
];
@@ -334,7 +334,7 @@ public function setMessage($message)
/**
* Gets detail
*
- * @return string|null
+ * @return AnyOfStringObject|null
*/
public function getDetail()
{
@@ -344,7 +344,7 @@ public function getDetail()
/**
* Sets detail
*
- * @param string|null $detail Contains parameter or domain specific information related to the error and why it occurred.
+ * @param AnyOfStringObject|null $detail Contains parameter or domain specific information related to the error and why it occurred.
*
* @return self
*/
diff --git a/src/gen/lib/Model/UnexpectedErrorResponse.php b/src/gen/lib/Model/UnexpectedErrorResponse.php
index 48bb486c0b..289b7ca10b 100644
--- a/src/gen/lib/Model/UnexpectedErrorResponse.php
+++ b/src/gen/lib/Model/UnexpectedErrorResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedApiId.php b/src/gen/lib/Model/UnifiedApiId.php
index 2e1aa6c9f6..03d9a8e0c5 100644
--- a/src/gen/lib/Model/UnifiedApiId.php
+++ b/src/gen/lib/Model/UnifiedApiId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFile.php b/src/gen/lib/Model/UnifiedFile.php
index 4d6d8ad872..c189d29698 100644
--- a/src/gen/lib/Model/UnifiedFile.php
+++ b/src/gen/lib/Model/UnifiedFile.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedFilePermissions.php b/src/gen/lib/Model/UnifiedFilePermissions.php
index 9736aa5d9a..2f87639e23 100644
--- a/src/gen/lib/Model/UnifiedFilePermissions.php
+++ b/src/gen/lib/Model/UnifiedFilePermissions.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnifiedId.php b/src/gen/lib/Model/UnifiedId.php
index 6fbcaaceb2..03e51089f0 100644
--- a/src/gen/lib/Model/UnifiedId.php
+++ b/src/gen/lib/Model/UnifiedId.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UnprocessableResponse.php b/src/gen/lib/Model/UnprocessableResponse.php
index 8a548bf84c..43e6c68740 100644
--- a/src/gen/lib/Model/UnprocessableResponse.php
+++ b/src/gen/lib/Model/UnprocessableResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
@@ -63,7 +63,7 @@ class UnprocessableResponse implements ModelInterface, ArrayAccess, \JsonSeriali
'error' => 'string',
'type_name' => 'string',
'message' => 'string',
- 'detail' => 'string',
+ 'detail' => 'AnyOfStringObject',
'ref' => 'string'
];
@@ -334,7 +334,7 @@ public function setMessage($message)
/**
* Gets detail
*
- * @return string|null
+ * @return AnyOfStringObject|null
*/
public function getDetail()
{
@@ -344,7 +344,7 @@ public function getDetail()
/**
* Sets detail
*
- * @param string|null $detail Contains parameter or domain specific information related to the error and why it occurred.
+ * @param AnyOfStringObject|null $detail Contains parameter or domain specific information related to the error and why it occurred.
*
* @return self
*/
diff --git a/src/gen/lib/Model/UpdateAccountingDepartmentResponse.php b/src/gen/lib/Model/UpdateAccountingDepartmentResponse.php
index 75d46732cf..b7cf691192 100644
--- a/src/gen/lib/Model/UpdateAccountingDepartmentResponse.php
+++ b/src/gen/lib/Model/UpdateAccountingDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateAccountingLocationResponse.php b/src/gen/lib/Model/UpdateAccountingLocationResponse.php
index 560ae63423..562a1d699c 100644
--- a/src/gen/lib/Model/UpdateAccountingLocationResponse.php
+++ b/src/gen/lib/Model/UpdateAccountingLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateActivityResponse.php b/src/gen/lib/Model/UpdateActivityResponse.php
index 398dd0e3d9..b296b99ded 100644
--- a/src/gen/lib/Model/UpdateActivityResponse.php
+++ b/src/gen/lib/Model/UpdateActivityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicantResponse.php b/src/gen/lib/Model/UpdateApplicantResponse.php
index 0592201185..762f3bfdfd 100644
--- a/src/gen/lib/Model/UpdateApplicantResponse.php
+++ b/src/gen/lib/Model/UpdateApplicantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateApplicationResponse.php b/src/gen/lib/Model/UpdateApplicationResponse.php
index 96d047bd77..04ba0ad55a 100644
--- a/src/gen/lib/Model/UpdateApplicationResponse.php
+++ b/src/gen/lib/Model/UpdateApplicationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateBillResponse.php b/src/gen/lib/Model/UpdateBillResponse.php
index a1b65412b2..815ddb3dd7 100644
--- a/src/gen/lib/Model/UpdateBillResponse.php
+++ b/src/gen/lib/Model/UpdateBillResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCommentResponse.php b/src/gen/lib/Model/UpdateCommentResponse.php
index 0af3ae135e..1fe4e36a61 100644
--- a/src/gen/lib/Model/UpdateCommentResponse.php
+++ b/src/gen/lib/Model/UpdateCommentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCompanyResponse.php b/src/gen/lib/Model/UpdateCompanyResponse.php
index c5317890fd..e3138e50a2 100644
--- a/src/gen/lib/Model/UpdateCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConnectionResponse.php b/src/gen/lib/Model/UpdateConnectionResponse.php
index 34d755340b..5a631ab7a1 100644
--- a/src/gen/lib/Model/UpdateConnectionResponse.php
+++ b/src/gen/lib/Model/UpdateConnectionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerRequest.php b/src/gen/lib/Model/UpdateConsumerRequest.php
index 535a3ab472..6d021aecdc 100644
--- a/src/gen/lib/Model/UpdateConsumerRequest.php
+++ b/src/gen/lib/Model/UpdateConsumerRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateConsumerResponse.php b/src/gen/lib/Model/UpdateConsumerResponse.php
index 27d25b7419..da1fd25ac8 100644
--- a/src/gen/lib/Model/UpdateConsumerResponse.php
+++ b/src/gen/lib/Model/UpdateConsumerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateContactResponse.php b/src/gen/lib/Model/UpdateContactResponse.php
index 5cc57ec2b0..998b4f798a 100644
--- a/src/gen/lib/Model/UpdateContactResponse.php
+++ b/src/gen/lib/Model/UpdateContactResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCreditNoteResponse.php b/src/gen/lib/Model/UpdateCreditNoteResponse.php
index e0c32285fb..0ed480bcd5 100644
--- a/src/gen/lib/Model/UpdateCreditNoteResponse.php
+++ b/src/gen/lib/Model/UpdateCreditNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingRequest.php b/src/gen/lib/Model/UpdateCustomMappingRequest.php
index d32f155380..a54d6bf23a 100644
--- a/src/gen/lib/Model/UpdateCustomMappingRequest.php
+++ b/src/gen/lib/Model/UpdateCustomMappingRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomMappingResponse.php b/src/gen/lib/Model/UpdateCustomMappingResponse.php
index b0d4bd09fc..7b5df7c3f2 100644
--- a/src/gen/lib/Model/UpdateCustomMappingResponse.php
+++ b/src/gen/lib/Model/UpdateCustomMappingResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateCustomerResponse.php b/src/gen/lib/Model/UpdateCustomerResponse.php
index 2b571a9917..fc680dd22d 100644
--- a/src/gen/lib/Model/UpdateCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDepartmentResponse.php b/src/gen/lib/Model/UpdateDepartmentResponse.php
index f03ab40b86..2587a8cc49 100644
--- a/src/gen/lib/Model/UpdateDepartmentResponse.php
+++ b/src/gen/lib/Model/UpdateDepartmentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveGroupResponse.php b/src/gen/lib/Model/UpdateDriveGroupResponse.php
index f16658a74e..fa914fbe7c 100644
--- a/src/gen/lib/Model/UpdateDriveGroupResponse.php
+++ b/src/gen/lib/Model/UpdateDriveGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateDriveResponse.php b/src/gen/lib/Model/UpdateDriveResponse.php
index 762266965e..5c524fd3d3 100644
--- a/src/gen/lib/Model/UpdateDriveResponse.php
+++ b/src/gen/lib/Model/UpdateDriveResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
index 4666aca90b..06b5d5a18e 100644
--- a/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceCustomerResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
index a26f418eef..327d63a028 100644
--- a/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
+++ b/src/gen/lib/Model/UpdateEcommerceOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateEmployeeResponse.php b/src/gen/lib/Model/UpdateEmployeeResponse.php
index e639f0120f..6ccd643960 100644
--- a/src/gen/lib/Model/UpdateEmployeeResponse.php
+++ b/src/gen/lib/Model/UpdateEmployeeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileRequest.php b/src/gen/lib/Model/UpdateFileRequest.php
index c2a0d81538..b3dd548218 100644
--- a/src/gen/lib/Model/UpdateFileRequest.php
+++ b/src/gen/lib/Model/UpdateFileRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFileResponse.php b/src/gen/lib/Model/UpdateFileResponse.php
index 7e4aec2218..36e1b20e20 100644
--- a/src/gen/lib/Model/UpdateFileResponse.php
+++ b/src/gen/lib/Model/UpdateFileResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderRequest.php b/src/gen/lib/Model/UpdateFolderRequest.php
index b0abf527a3..f941f2a13f 100644
--- a/src/gen/lib/Model/UpdateFolderRequest.php
+++ b/src/gen/lib/Model/UpdateFolderRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateFolderResponse.php b/src/gen/lib/Model/UpdateFolderResponse.php
index 22143a16fa..ef9c0dfaa3 100644
--- a/src/gen/lib/Model/UpdateFolderResponse.php
+++ b/src/gen/lib/Model/UpdateFolderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateHrisCompanyResponse.php b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
index 7d800e0ac2..a92f581e88 100644
--- a/src/gen/lib/Model/UpdateHrisCompanyResponse.php
+++ b/src/gen/lib/Model/UpdateHrisCompanyResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
index ec649ba184..3e15bee4ad 100644
--- a/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceItemsResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateInvoiceResponse.php b/src/gen/lib/Model/UpdateInvoiceResponse.php
index a8e72f7263..77310ef2d7 100644
--- a/src/gen/lib/Model/UpdateInvoiceResponse.php
+++ b/src/gen/lib/Model/UpdateInvoiceResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateItemResponse.php b/src/gen/lib/Model/UpdateItemResponse.php
index 9d2fffd745..96f0af6066 100644
--- a/src/gen/lib/Model/UpdateItemResponse.php
+++ b/src/gen/lib/Model/UpdateItemResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJobResponse.php b/src/gen/lib/Model/UpdateJobResponse.php
index 026716d1be..29d790e8fb 100644
--- a/src/gen/lib/Model/UpdateJobResponse.php
+++ b/src/gen/lib/Model/UpdateJobResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateJournalEntryResponse.php b/src/gen/lib/Model/UpdateJournalEntryResponse.php
index 19ddab1b57..288cfd7085 100644
--- a/src/gen/lib/Model/UpdateJournalEntryResponse.php
+++ b/src/gen/lib/Model/UpdateJournalEntryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLeadResponse.php b/src/gen/lib/Model/UpdateLeadResponse.php
index 7d09ae63f8..0fc6dfca0f 100644
--- a/src/gen/lib/Model/UpdateLeadResponse.php
+++ b/src/gen/lib/Model/UpdateLeadResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLedgerAccountResponse.php b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
index 1e4329f8a6..e552508caa 100644
--- a/src/gen/lib/Model/UpdateLedgerAccountResponse.php
+++ b/src/gen/lib/Model/UpdateLedgerAccountResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateLocationResponse.php b/src/gen/lib/Model/UpdateLocationResponse.php
index 5f3204f597..cdd8907a13 100644
--- a/src/gen/lib/Model/UpdateLocationResponse.php
+++ b/src/gen/lib/Model/UpdateLocationResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMerchantResponse.php b/src/gen/lib/Model/UpdateMerchantResponse.php
index 2534143542..a57e698ada 100644
--- a/src/gen/lib/Model/UpdateMerchantResponse.php
+++ b/src/gen/lib/Model/UpdateMerchantResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateMessageResponse.php b/src/gen/lib/Model/UpdateMessageResponse.php
index 5623e44ea8..cb0d041679 100644
--- a/src/gen/lib/Model/UpdateMessageResponse.php
+++ b/src/gen/lib/Model/UpdateMessageResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierGroupResponse.php b/src/gen/lib/Model/UpdateModifierGroupResponse.php
index cd73ae5beb..f321de1efd 100644
--- a/src/gen/lib/Model/UpdateModifierGroupResponse.php
+++ b/src/gen/lib/Model/UpdateModifierGroupResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateModifierResponse.php b/src/gen/lib/Model/UpdateModifierResponse.php
index 08eb9e8958..d18cbb3d3d 100644
--- a/src/gen/lib/Model/UpdateModifierResponse.php
+++ b/src/gen/lib/Model/UpdateModifierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateNoteResponse.php b/src/gen/lib/Model/UpdateNoteResponse.php
index 37a1f9c34f..dac7f6eaa3 100644
--- a/src/gen/lib/Model/UpdateNoteResponse.php
+++ b/src/gen/lib/Model/UpdateNoteResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOpportunityResponse.php b/src/gen/lib/Model/UpdateOpportunityResponse.php
index fd437ffe59..3744d29616 100644
--- a/src/gen/lib/Model/UpdateOpportunityResponse.php
+++ b/src/gen/lib/Model/UpdateOpportunityResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderResponse.php b/src/gen/lib/Model/UpdateOrderResponse.php
index 3ba8d71b9b..fc0c0a77ef 100644
--- a/src/gen/lib/Model/UpdateOrderResponse.php
+++ b/src/gen/lib/Model/UpdateOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateOrderTypeResponse.php b/src/gen/lib/Model/UpdateOrderTypeResponse.php
index 8843ca87ae..f50ac9cf5f 100644
--- a/src/gen/lib/Model/UpdateOrderTypeResponse.php
+++ b/src/gen/lib/Model/UpdateOrderTypeResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePaymentResponse.php b/src/gen/lib/Model/UpdatePaymentResponse.php
index 57ba0a0be6..517bc4303e 100644
--- a/src/gen/lib/Model/UpdatePaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePipelineResponse.php b/src/gen/lib/Model/UpdatePipelineResponse.php
index fc3d069a7a..66d28c48ba 100644
--- a/src/gen/lib/Model/UpdatePipelineResponse.php
+++ b/src/gen/lib/Model/UpdatePipelineResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePosPaymentResponse.php b/src/gen/lib/Model/UpdatePosPaymentResponse.php
index 09433a6335..7b591939f0 100644
--- a/src/gen/lib/Model/UpdatePosPaymentResponse.php
+++ b/src/gen/lib/Model/UpdatePosPaymentResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateProductResponse.php b/src/gen/lib/Model/UpdateProductResponse.php
index 3e9719ac66..923f663d91 100644
--- a/src/gen/lib/Model/UpdateProductResponse.php
+++ b/src/gen/lib/Model/UpdateProductResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
index e6ad42f5e3..bf67366a58 100644
--- a/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
+++ b/src/gen/lib/Model/UpdatePurchaseOrderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSharedLinkResponse.php b/src/gen/lib/Model/UpdateSharedLinkResponse.php
index 034520c390..be827b7202 100644
--- a/src/gen/lib/Model/UpdateSharedLinkResponse.php
+++ b/src/gen/lib/Model/UpdateSharedLinkResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSubsidiaryResponse.php b/src/gen/lib/Model/UpdateSubsidiaryResponse.php
index ae79bb43a0..eadb2fa89b 100644
--- a/src/gen/lib/Model/UpdateSubsidiaryResponse.php
+++ b/src/gen/lib/Model/UpdateSubsidiaryResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateSupplierResponse.php b/src/gen/lib/Model/UpdateSupplierResponse.php
index 45ab1d0ebc..1468e14d54 100644
--- a/src/gen/lib/Model/UpdateSupplierResponse.php
+++ b/src/gen/lib/Model/UpdateSupplierResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTaxRateResponse.php b/src/gen/lib/Model/UpdateTaxRateResponse.php
index 7c90c87e9f..3d1c66e00e 100644
--- a/src/gen/lib/Model/UpdateTaxRateResponse.php
+++ b/src/gen/lib/Model/UpdateTaxRateResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTenderResponse.php b/src/gen/lib/Model/UpdateTenderResponse.php
index 0ea7f86a55..eccd2d14ac 100644
--- a/src/gen/lib/Model/UpdateTenderResponse.php
+++ b/src/gen/lib/Model/UpdateTenderResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTicketResponse.php b/src/gen/lib/Model/UpdateTicketResponse.php
index e15f741f9b..893987cfbd 100644
--- a/src/gen/lib/Model/UpdateTicketResponse.php
+++ b/src/gen/lib/Model/UpdateTicketResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
index 89285025c6..9b0d606f13 100644
--- a/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
+++ b/src/gen/lib/Model/UpdateTimeOffRequestResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUploadSessionResponse.php b/src/gen/lib/Model/UpdateUploadSessionResponse.php
index 3170bfba3f..2228a2a188 100644
--- a/src/gen/lib/Model/UpdateUploadSessionResponse.php
+++ b/src/gen/lib/Model/UpdateUploadSessionResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateUserResponse.php b/src/gen/lib/Model/UpdateUserResponse.php
index 7e1c4c5c9e..6b5b436282 100644
--- a/src/gen/lib/Model/UpdateUserResponse.php
+++ b/src/gen/lib/Model/UpdateUserResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookRequest.php b/src/gen/lib/Model/UpdateWebhookRequest.php
index 9c4b215885..17614f98b8 100644
--- a/src/gen/lib/Model/UpdateWebhookRequest.php
+++ b/src/gen/lib/Model/UpdateWebhookRequest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UpdateWebhookResponse.php b/src/gen/lib/Model/UpdateWebhookResponse.php
index 89c96bc7a0..71e1a6791a 100644
--- a/src/gen/lib/Model/UpdateWebhookResponse.php
+++ b/src/gen/lib/Model/UpdateWebhookResponse.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/UploadSession.php b/src/gen/lib/Model/UploadSession.php
index 36a3745c02..c87343d6c9 100644
--- a/src/gen/lib/Model/UploadSession.php
+++ b/src/gen/lib/Model/UploadSession.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/User.php b/src/gen/lib/Model/User.php
index e8844aaadf..b7e507dd1d 100644
--- a/src/gen/lib/Model/User.php
+++ b/src/gen/lib/Model/User.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VaultEventType.php b/src/gen/lib/Model/VaultEventType.php
index dcadd1152e..1741bce5ea 100644
--- a/src/gen/lib/Model/VaultEventType.php
+++ b/src/gen/lib/Model/VaultEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/VirtualWebhooks.php b/src/gen/lib/Model/VirtualWebhooks.php
index 54604c963c..63ec21230b 100644
--- a/src/gen/lib/Model/VirtualWebhooks.php
+++ b/src/gen/lib/Model/VirtualWebhooks.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WalletDetails.php b/src/gen/lib/Model/WalletDetails.php
index 100278a4e2..997c10d45d 100644
--- a/src/gen/lib/Model/WalletDetails.php
+++ b/src/gen/lib/Model/WalletDetails.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Webhook.php b/src/gen/lib/Model/Webhook.php
index 37ef798c48..43a9143c1d 100644
--- a/src/gen/lib/Model/Webhook.php
+++ b/src/gen/lib/Model/Webhook.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEvent.php b/src/gen/lib/Model/WebhookEvent.php
index 6b76c617b3..029c3705e6 100644
--- a/src/gen/lib/Model/WebhookEvent.php
+++ b/src/gen/lib/Model/WebhookEvent.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLog.php b/src/gen/lib/Model/WebhookEventLog.php
index d7124b923a..b3aabdda1f 100644
--- a/src/gen/lib/Model/WebhookEventLog.php
+++ b/src/gen/lib/Model/WebhookEventLog.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogAttempts.php b/src/gen/lib/Model/WebhookEventLogAttempts.php
index 4eb639324a..9496ffbce6 100644
--- a/src/gen/lib/Model/WebhookEventLogAttempts.php
+++ b/src/gen/lib/Model/WebhookEventLogAttempts.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogService.php b/src/gen/lib/Model/WebhookEventLogService.php
index ea0a36db93..024352751e 100644
--- a/src/gen/lib/Model/WebhookEventLogService.php
+++ b/src/gen/lib/Model/WebhookEventLogService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilter.php b/src/gen/lib/Model/WebhookEventLogsFilter.php
index 22a2715663..68feec2279 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilter.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilter.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventLogsFilterService.php b/src/gen/lib/Model/WebhookEventLogsFilterService.php
index a1787ea856..f132e2f595 100644
--- a/src/gen/lib/Model/WebhookEventLogsFilterService.php
+++ b/src/gen/lib/Model/WebhookEventLogsFilterService.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookEventType.php b/src/gen/lib/Model/WebhookEventType.php
index c5b4910bdf..7915f0aa5a 100644
--- a/src/gen/lib/Model/WebhookEventType.php
+++ b/src/gen/lib/Model/WebhookEventType.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSubscription.php b/src/gen/lib/Model/WebhookSubscription.php
index fc2df90d48..dd5300ae24 100644
--- a/src/gen/lib/Model/WebhookSubscription.php
+++ b/src/gen/lib/Model/WebhookSubscription.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/WebhookSupport.php b/src/gen/lib/Model/WebhookSupport.php
index e5b738f71e..03634443d9 100644
--- a/src/gen/lib/Model/WebhookSupport.php
+++ b/src/gen/lib/Model/WebhookSupport.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/Model/Website.php b/src/gen/lib/Model/Website.php
index 4fe1f494a7..3fcc4e2a3e 100644
--- a/src/gen/lib/Model/Website.php
+++ b/src/gen/lib/Model/Website.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/lib/ObjectSerializer.php b/src/gen/lib/ObjectSerializer.php
index be53a4acbc..749fa41e3d 100644
--- a/src/gen/lib/ObjectSerializer.php
+++ b/src/gen/lib/ObjectSerializer.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/AccountingApiTest.php b/src/gen/test/Api/AccountingApiTest.php
index 1134d6701f..379a7cf3f7 100644
--- a/src/gen/test/Api/AccountingApiTest.php
+++ b/src/gen/test/Api/AccountingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/AtsApiTest.php b/src/gen/test/Api/AtsApiTest.php
index 2a31916766..9d0acc0d16 100644
--- a/src/gen/test/Api/AtsApiTest.php
+++ b/src/gen/test/Api/AtsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/ConnectorApiTest.php b/src/gen/test/Api/ConnectorApiTest.php
index 4598ff3fc1..93d400a612 100644
--- a/src/gen/test/Api/ConnectorApiTest.php
+++ b/src/gen/test/Api/ConnectorApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/CrmApiTest.php b/src/gen/test/Api/CrmApiTest.php
index c19d5d46c9..384416e3b8 100644
--- a/src/gen/test/Api/CrmApiTest.php
+++ b/src/gen/test/Api/CrmApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/EcommerceApiTest.php b/src/gen/test/Api/EcommerceApiTest.php
index 19de3a645e..cd0dd4eec6 100644
--- a/src/gen/test/Api/EcommerceApiTest.php
+++ b/src/gen/test/Api/EcommerceApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/FileStorageApiTest.php b/src/gen/test/Api/FileStorageApiTest.php
index 458847caf8..6319db508c 100644
--- a/src/gen/test/Api/FileStorageApiTest.php
+++ b/src/gen/test/Api/FileStorageApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/HrisApiTest.php b/src/gen/test/Api/HrisApiTest.php
index 30c94b5b85..efb0930450 100644
--- a/src/gen/test/Api/HrisApiTest.php
+++ b/src/gen/test/Api/HrisApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/IssueTrackingApiTest.php b/src/gen/test/Api/IssueTrackingApiTest.php
index d9c148bf9e..8315c47e73 100644
--- a/src/gen/test/Api/IssueTrackingApiTest.php
+++ b/src/gen/test/Api/IssueTrackingApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/LeadApiTest.php b/src/gen/test/Api/LeadApiTest.php
index d190c3ad5d..1841e9049b 100644
--- a/src/gen/test/Api/LeadApiTest.php
+++ b/src/gen/test/Api/LeadApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/PosApiTest.php b/src/gen/test/Api/PosApiTest.php
index eef88f1d16..84037a686a 100644
--- a/src/gen/test/Api/PosApiTest.php
+++ b/src/gen/test/Api/PosApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/SmsApiTest.php b/src/gen/test/Api/SmsApiTest.php
index fe25f1f09e..97071786be 100644
--- a/src/gen/test/Api/SmsApiTest.php
+++ b/src/gen/test/Api/SmsApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/VaultApiTest.php b/src/gen/test/Api/VaultApiTest.php
index c219cac5b2..60d9b15948 100644
--- a/src/gen/test/Api/VaultApiTest.php
+++ b/src/gen/test/Api/VaultApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Api/WebhookApiTest.php b/src/gen/test/Api/WebhookApiTest.php
index 9520148c81..e2a49bb60b 100644
--- a/src/gen/test/Api/WebhookApiTest.php
+++ b/src/gen/test/Api/WebhookApiTest.php
@@ -14,7 +14,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingDepartmentTest.php b/src/gen/test/Model/AccountingDepartmentTest.php
index b6a46786e0..a17d1e034b 100644
--- a/src/gen/test/Model/AccountingDepartmentTest.php
+++ b/src/gen/test/Model/AccountingDepartmentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingDepartmentsFilterTest.php b/src/gen/test/Model/AccountingDepartmentsFilterTest.php
index c155ca8510..4c5e55311b 100644
--- a/src/gen/test/Model/AccountingDepartmentsFilterTest.php
+++ b/src/gen/test/Model/AccountingDepartmentsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingEventTypeTest.php b/src/gen/test/Model/AccountingEventTypeTest.php
index 5a4c9b638e..df910ba665 100644
--- a/src/gen/test/Model/AccountingEventTypeTest.php
+++ b/src/gen/test/Model/AccountingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingLocationTest.php b/src/gen/test/Model/AccountingLocationTest.php
index 8641978847..aa0cce6c9d 100644
--- a/src/gen/test/Model/AccountingLocationTest.php
+++ b/src/gen/test/Model/AccountingLocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AccountingLocationsFilterTest.php b/src/gen/test/Model/AccountingLocationsFilterTest.php
index cde6381377..d69f2c0d45 100644
--- a/src/gen/test/Model/AccountingLocationsFilterTest.php
+++ b/src/gen/test/Model/AccountingLocationsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivitiesFilterTest.php b/src/gen/test/Model/ActivitiesFilterTest.php
index 9e13d38e7a..d753064256 100644
--- a/src/gen/test/Model/ActivitiesFilterTest.php
+++ b/src/gen/test/Model/ActivitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivitiesSortTest.php b/src/gen/test/Model/ActivitiesSortTest.php
index 7879248c98..2ab2debbc6 100644
--- a/src/gen/test/Model/ActivitiesSortTest.php
+++ b/src/gen/test/Model/ActivitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityAttendeeTest.php b/src/gen/test/Model/ActivityAttendeeTest.php
index d97c23b175..380fe205b4 100644
--- a/src/gen/test/Model/ActivityAttendeeTest.php
+++ b/src/gen/test/Model/ActivityAttendeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ActivityTest.php b/src/gen/test/Model/ActivityTest.php
index fa9c3027ea..ee89eea401 100644
--- a/src/gen/test/Model/ActivityTest.php
+++ b/src/gen/test/Model/ActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AddressTest.php b/src/gen/test/Model/AddressTest.php
index 9794b35632..5c723120be 100644
--- a/src/gen/test/Model/AddressTest.php
+++ b/src/gen/test/Model/AddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
index b740353b89..2323a7c659 100644
--- a/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceCoverageTest.php b/src/gen/test/Model/ApiResourceCoverageTest.php
index fc2c895277..d9251109a0 100644
--- a/src/gen/test/Model/ApiResourceCoverageTest.php
+++ b/src/gen/test/Model/ApiResourceCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
index 1a57e248b5..50bf7715c2 100644
--- a/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
+++ b/src/gen/test/Model/ApiResourceLinkedResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourceTest.php b/src/gen/test/Model/ApiResourceTest.php
index c6af00d595..14a1604787 100644
--- a/src/gen/test/Model/ApiResourceTest.php
+++ b/src/gen/test/Model/ApiResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiResourcesTest.php b/src/gen/test/Model/ApiResourcesTest.php
index c9e60490a9..0595a0a1dc 100644
--- a/src/gen/test/Model/ApiResourcesTest.php
+++ b/src/gen/test/Model/ApiResourcesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiStatusTest.php b/src/gen/test/Model/ApiStatusTest.php
index fd562a407e..70faf8abcc 100644
--- a/src/gen/test/Model/ApiStatusTest.php
+++ b/src/gen/test/Model/ApiStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApiTest.php b/src/gen/test/Model/ApiTest.php
index 2377a7d181..fec132f239 100644
--- a/src/gen/test/Model/ApiTest.php
+++ b/src/gen/test/Model/ApiTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApisFilterTest.php b/src/gen/test/Model/ApisFilterTest.php
index 414458bc2c..129ae52fb8 100644
--- a/src/gen/test/Model/ApisFilterTest.php
+++ b/src/gen/test/Model/ApisFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantSocialLinksTest.php b/src/gen/test/Model/ApplicantSocialLinksTest.php
index 897047e13e..f61dc34dd4 100644
--- a/src/gen/test/Model/ApplicantSocialLinksTest.php
+++ b/src/gen/test/Model/ApplicantSocialLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantTest.php b/src/gen/test/Model/ApplicantTest.php
index fc661db5ea..a360718518 100644
--- a/src/gen/test/Model/ApplicantTest.php
+++ b/src/gen/test/Model/ApplicantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantWebsitesTest.php b/src/gen/test/Model/ApplicantWebsitesTest.php
index b75925ae8e..c99dba3866 100644
--- a/src/gen/test/Model/ApplicantWebsitesTest.php
+++ b/src/gen/test/Model/ApplicantWebsitesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicantsFilterTest.php b/src/gen/test/Model/ApplicantsFilterTest.php
index b2568d1991..0bb9a12ea7 100644
--- a/src/gen/test/Model/ApplicantsFilterTest.php
+++ b/src/gen/test/Model/ApplicantsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationStageTest.php b/src/gen/test/Model/ApplicationStageTest.php
index 6d65c981b6..0b3ce3d8dc 100644
--- a/src/gen/test/Model/ApplicationStageTest.php
+++ b/src/gen/test/Model/ApplicationStageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ApplicationTest.php b/src/gen/test/Model/ApplicationTest.php
index 23514b3806..29004c094f 100644
--- a/src/gen/test/Model/ApplicationTest.php
+++ b/src/gen/test/Model/ApplicationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AssigneeTest.php b/src/gen/test/Model/AssigneeTest.php
index 47da59b3dd..5dbf2412aa 100644
--- a/src/gen/test/Model/AssigneeTest.php
+++ b/src/gen/test/Model/AssigneeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsActivityTest.php b/src/gen/test/Model/AtsActivityTest.php
index 5a5357b3fb..7e9e6fc750 100644
--- a/src/gen/test/Model/AtsActivityTest.php
+++ b/src/gen/test/Model/AtsActivityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AtsEventTypeTest.php b/src/gen/test/Model/AtsEventTypeTest.php
index c8af02e0ff..eea5f25730 100644
--- a/src/gen/test/Model/AtsEventTypeTest.php
+++ b/src/gen/test/Model/AtsEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/AuthTypeTest.php b/src/gen/test/Model/AuthTypeTest.php
index cce77d2e9e..8ec30db96d 100644
--- a/src/gen/test/Model/AuthTypeTest.php
+++ b/src/gen/test/Model/AuthTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BadRequestResponseTest.php b/src/gen/test/Model/BadRequestResponseTest.php
index ba604e273d..2138dd307b 100644
--- a/src/gen/test/Model/BadRequestResponseTest.php
+++ b/src/gen/test/Model/BadRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
index fcbb850e07..b441cbc8a3 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
index 3ae0f6dbc9..f97727c139 100644
--- a/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsCurrentAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
index 95b82ab86f..a57835b61f 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
index 8d3a9d8483..07b6e925af 100644
--- a/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsFixedAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetAssetsTest.php b/src/gen/test/Model/BalanceSheetAssetsTest.php
index a914dd2785..2c5a9a245a 100644
--- a/src/gen/test/Model/BalanceSheetAssetsTest.php
+++ b/src/gen/test/Model/BalanceSheetAssetsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityItemsTest.php b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
index bf8f70bb03..83d56afa2a 100644
--- a/src/gen/test/Model/BalanceSheetEquityItemsTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetEquityTest.php b/src/gen/test/Model/BalanceSheetEquityTest.php
index d195b15940..de68d863e3 100644
--- a/src/gen/test/Model/BalanceSheetEquityTest.php
+++ b/src/gen/test/Model/BalanceSheetEquityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetFilterTest.php b/src/gen/test/Model/BalanceSheetFilterTest.php
index b8f32186fa..691d538237 100644
--- a/src/gen/test/Model/BalanceSheetFilterTest.php
+++ b/src/gen/test/Model/BalanceSheetFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
index 2a21678795..9d83765d67 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesAccountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
index 632220420d..8372bcfed3 100644
--- a/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
+++ b/src/gen/test/Model/BalanceSheetLiabilitiesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BalanceSheetTest.php b/src/gen/test/Model/BalanceSheetTest.php
index 55f4f12473..11125f3264 100644
--- a/src/gen/test/Model/BalanceSheetTest.php
+++ b/src/gen/test/Model/BalanceSheetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BankAccountTest.php b/src/gen/test/Model/BankAccountTest.php
index b591db0d08..d58a5b1834 100644
--- a/src/gen/test/Model/BankAccountTest.php
+++ b/src/gen/test/Model/BankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BenefitTest.php b/src/gen/test/Model/BenefitTest.php
index a5a25b1450..09a84e1984 100644
--- a/src/gen/test/Model/BenefitTest.php
+++ b/src/gen/test/Model/BenefitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillLineItemTest.php b/src/gen/test/Model/BillLineItemTest.php
index 569dc1ce6e..5c0e84c01b 100644
--- a/src/gen/test/Model/BillLineItemTest.php
+++ b/src/gen/test/Model/BillLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillTest.php b/src/gen/test/Model/BillTest.php
index 2df49ea3af..dc0559b88c 100644
--- a/src/gen/test/Model/BillTest.php
+++ b/src/gen/test/Model/BillTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsFilterTest.php b/src/gen/test/Model/BillsFilterTest.php
index d3e81f1531..bbde8b6fc4 100644
--- a/src/gen/test/Model/BillsFilterTest.php
+++ b/src/gen/test/Model/BillsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BillsSortTest.php b/src/gen/test/Model/BillsSortTest.php
index cd79f00d3a..18ab1cf928 100644
--- a/src/gen/test/Model/BillsSortTest.php
+++ b/src/gen/test/Model/BillsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/BranchTest.php b/src/gen/test/Model/BranchTest.php
index 31c3351d59..6134e94729 100644
--- a/src/gen/test/Model/BranchTest.php
+++ b/src/gen/test/Model/BranchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CashDetailsTest.php b/src/gen/test/Model/CashDetailsTest.php
index d9efcbd172..2d698cf05b 100644
--- a/src/gen/test/Model/CashDetailsTest.php
+++ b/src/gen/test/Model/CashDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTagTest.php b/src/gen/test/Model/CollectionTagTest.php
index f9a007bdfc..cc98d6da0e 100644
--- a/src/gen/test/Model/CollectionTagTest.php
+++ b/src/gen/test/Model/CollectionTagTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTest.php b/src/gen/test/Model/CollectionTest.php
index c3c5977889..cc63f3c0e9 100644
--- a/src/gen/test/Model/CollectionTest.php
+++ b/src/gen/test/Model/CollectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionTicketCommentTest.php b/src/gen/test/Model/CollectionTicketCommentTest.php
index a656407a12..6b88b633e1 100644
--- a/src/gen/test/Model/CollectionTicketCommentTest.php
+++ b/src/gen/test/Model/CollectionTicketCommentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionUserTest.php b/src/gen/test/Model/CollectionUserTest.php
index 96492da0e1..6640b097e9 100644
--- a/src/gen/test/Model/CollectionUserTest.php
+++ b/src/gen/test/Model/CollectionUserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CollectionsSortTest.php b/src/gen/test/Model/CollectionsSortTest.php
index edfa07686a..d75c5e8137 100644
--- a/src/gen/test/Model/CollectionsSortTest.php
+++ b/src/gen/test/Model/CollectionsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CommentsSortTest.php b/src/gen/test/Model/CommentsSortTest.php
index 0d8f010f5c..24263a0737 100644
--- a/src/gen/test/Model/CommentsSortTest.php
+++ b/src/gen/test/Model/CommentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesFilterTest.php b/src/gen/test/Model/CompaniesFilterTest.php
index da989ced93..14a4ce09b6 100644
--- a/src/gen/test/Model/CompaniesFilterTest.php
+++ b/src/gen/test/Model/CompaniesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompaniesSortTest.php b/src/gen/test/Model/CompaniesSortTest.php
index f1d1f2dd0b..4f51d007fd 100644
--- a/src/gen/test/Model/CompaniesSortTest.php
+++ b/src/gen/test/Model/CompaniesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyInfoTest.php b/src/gen/test/Model/CompanyInfoTest.php
index 0bbcd6a7a7..8db093dc33 100644
--- a/src/gen/test/Model/CompanyInfoTest.php
+++ b/src/gen/test/Model/CompanyInfoTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyRowTypeTest.php b/src/gen/test/Model/CompanyRowTypeTest.php
index b91485a29f..1661f694ac 100644
--- a/src/gen/test/Model/CompanyRowTypeTest.php
+++ b/src/gen/test/Model/CompanyRowTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompanyTest.php b/src/gen/test/Model/CompanyTest.php
index 502fede273..91bbf24aff 100644
--- a/src/gen/test/Model/CompanyTest.php
+++ b/src/gen/test/Model/CompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CompensationTest.php b/src/gen/test/Model/CompensationTest.php
index e06f53d6d6..c4720f0e8b 100644
--- a/src/gen/test/Model/CompensationTest.php
+++ b/src/gen/test/Model/CompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionConfigurationTest.php b/src/gen/test/Model/ConnectionConfigurationTest.php
index 048e0f6974..921f4f7f2b 100644
--- a/src/gen/test/Model/ConnectionConfigurationTest.php
+++ b/src/gen/test/Model/ConnectionConfigurationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionDefaultsTest.php b/src/gen/test/Model/ConnectionDefaultsTest.php
index 0fb6c4617b..49d0520cbf 100644
--- a/src/gen/test/Model/ConnectionDefaultsTest.php
+++ b/src/gen/test/Model/ConnectionDefaultsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
index ec1f2fcb25..03619b9e00 100644
--- a/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
+++ b/src/gen/test/Model/ConnectionImportDataCredentialsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionImportDataTest.php b/src/gen/test/Model/ConnectionImportDataTest.php
index 292072ab49..bc95b670f5 100644
--- a/src/gen/test/Model/ConnectionImportDataTest.php
+++ b/src/gen/test/Model/ConnectionImportDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionMetadataTest.php b/src/gen/test/Model/ConnectionMetadataTest.php
index 71726367f4..2388d09bac 100644
--- a/src/gen/test/Model/ConnectionMetadataTest.php
+++ b/src/gen/test/Model/ConnectionMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionStateTest.php b/src/gen/test/Model/ConnectionStateTest.php
index 4d36b7b0ae..f62738b97b 100644
--- a/src/gen/test/Model/ConnectionStateTest.php
+++ b/src/gen/test/Model/ConnectionStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionTest.php b/src/gen/test/Model/ConnectionTest.php
index d7dccebe10..e5bb54c829 100644
--- a/src/gen/test/Model/ConnectionTest.php
+++ b/src/gen/test/Model/ConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectionWebhookTest.php b/src/gen/test/Model/ConnectionWebhookTest.php
index 959b19fb21..4067aacb99 100644
--- a/src/gen/test/Model/ConnectionWebhookTest.php
+++ b/src/gen/test/Model/ConnectionWebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorDocTest.php b/src/gen/test/Model/ConnectorDocTest.php
index c2fd6a17c7..eaa73017d3 100644
--- a/src/gen/test/Model/ConnectorDocTest.php
+++ b/src/gen/test/Model/ConnectorDocTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorEventTest.php b/src/gen/test/Model/ConnectorEventTest.php
index 592e07d372..bbb3a1300c 100644
--- a/src/gen/test/Model/ConnectorEventTest.php
+++ b/src/gen/test/Model/ConnectorEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopes1Test.php b/src/gen/test/Model/ConnectorOauthScopes1Test.php
index 03d8be6ed5..7a3e225b61 100644
--- a/src/gen/test/Model/ConnectorOauthScopes1Test.php
+++ b/src/gen/test/Model/ConnectorOauthScopes1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorOauthScopesTest.php b/src/gen/test/Model/ConnectorOauthScopesTest.php
index aac6df264c..87ab07d6ef 100644
--- a/src/gen/test/Model/ConnectorOauthScopesTest.php
+++ b/src/gen/test/Model/ConnectorOauthScopesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorResourceTest.php b/src/gen/test/Model/ConnectorResourceTest.php
index 33b4295c89..0cf0f4359f 100644
--- a/src/gen/test/Model/ConnectorResourceTest.php
+++ b/src/gen/test/Model/ConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorSettingTest.php b/src/gen/test/Model/ConnectorSettingTest.php
index ea96bf1c26..31073ea4ac 100644
--- a/src/gen/test/Model/ConnectorSettingTest.php
+++ b/src/gen/test/Model/ConnectorSettingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorStatusTest.php b/src/gen/test/Model/ConnectorStatusTest.php
index fbcb537123..31a797b872 100644
--- a/src/gen/test/Model/ConnectorStatusTest.php
+++ b/src/gen/test/Model/ConnectorStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTest.php b/src/gen/test/Model/ConnectorTest.php
index 822be3ab5d..009ae43510 100644
--- a/src/gen/test/Model/ConnectorTest.php
+++ b/src/gen/test/Model/ConnectorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorTlsSupportTest.php b/src/gen/test/Model/ConnectorTlsSupportTest.php
index 0d46d499af..3d97cf4fd1 100644
--- a/src/gen/test/Model/ConnectorTlsSupportTest.php
+++ b/src/gen/test/Model/ConnectorTlsSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorUnifiedApisTest.php b/src/gen/test/Model/ConnectorUnifiedApisTest.php
index 20e309626b..0c767c291a 100644
--- a/src/gen/test/Model/ConnectorUnifiedApisTest.php
+++ b/src/gen/test/Model/ConnectorUnifiedApisTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConnectorsFilterTest.php b/src/gen/test/Model/ConnectorsFilterTest.php
index 057a6a84c9..630f43f37d 100644
--- a/src/gen/test/Model/ConnectorsFilterTest.php
+++ b/src/gen/test/Model/ConnectorsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerConnectionTest.php b/src/gen/test/Model/ConsumerConnectionTest.php
index be8c433109..50a46c0ea2 100644
--- a/src/gen/test/Model/ConsumerConnectionTest.php
+++ b/src/gen/test/Model/ConsumerConnectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerMetadataTest.php b/src/gen/test/Model/ConsumerMetadataTest.php
index b899c4a4c7..466be30b4b 100644
--- a/src/gen/test/Model/ConsumerMetadataTest.php
+++ b/src/gen/test/Model/ConsumerMetadataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
index 454e7b2c9e..b3e8a1e99e 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
index c219939207..01783dba5d 100644
--- a/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
+++ b/src/gen/test/Model/ConsumerRequestCountsInDateRangeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ConsumerTest.php b/src/gen/test/Model/ConsumerTest.php
index f8792de904..b9f293bfb3 100644
--- a/src/gen/test/Model/ConsumerTest.php
+++ b/src/gen/test/Model/ConsumerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactTest.php b/src/gen/test/Model/ContactTest.php
index 15e91c9b85..b4c8d70273 100644
--- a/src/gen/test/Model/ContactTest.php
+++ b/src/gen/test/Model/ContactTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsFilterTest.php b/src/gen/test/Model/ContactsFilterTest.php
index 3bc97073a9..6981eae530 100644
--- a/src/gen/test/Model/ContactsFilterTest.php
+++ b/src/gen/test/Model/ContactsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ContactsSortTest.php b/src/gen/test/Model/ContactsSortTest.php
index e5e3243904..c8070b2f55 100644
--- a/src/gen/test/Model/ContactsSortTest.php
+++ b/src/gen/test/Model/ContactsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CopyFolderRequestTest.php b/src/gen/test/Model/CopyFolderRequestTest.php
index b7440a57d9..a2aa27eebf 100644
--- a/src/gen/test/Model/CopyFolderRequestTest.php
+++ b/src/gen/test/Model/CopyFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateAccountingDepartmentResponseTest.php b/src/gen/test/Model/CreateAccountingDepartmentResponseTest.php
index 739237e533..fdc31f40ca 100644
--- a/src/gen/test/Model/CreateAccountingDepartmentResponseTest.php
+++ b/src/gen/test/Model/CreateAccountingDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateAccountingLocationResponseTest.php b/src/gen/test/Model/CreateAccountingLocationResponseTest.php
index 78e815d733..44bedc5411 100644
--- a/src/gen/test/Model/CreateAccountingLocationResponseTest.php
+++ b/src/gen/test/Model/CreateAccountingLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateActivityResponseTest.php b/src/gen/test/Model/CreateActivityResponseTest.php
index fb7a71d503..73b4d9c0c8 100644
--- a/src/gen/test/Model/CreateActivityResponseTest.php
+++ b/src/gen/test/Model/CreateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicantResponseTest.php b/src/gen/test/Model/CreateApplicantResponseTest.php
index 6bb7c214cd..810c96d8eb 100644
--- a/src/gen/test/Model/CreateApplicantResponseTest.php
+++ b/src/gen/test/Model/CreateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateApplicationResponseTest.php b/src/gen/test/Model/CreateApplicationResponseTest.php
index 83a28223aa..e639f8fd6b 100644
--- a/src/gen/test/Model/CreateApplicationResponseTest.php
+++ b/src/gen/test/Model/CreateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateBillResponseTest.php b/src/gen/test/Model/CreateBillResponseTest.php
index 0c0f394607..734d6df2bc 100644
--- a/src/gen/test/Model/CreateBillResponseTest.php
+++ b/src/gen/test/Model/CreateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCommentResponseTest.php b/src/gen/test/Model/CreateCommentResponseTest.php
index 5166f36216..b844889f6d 100644
--- a/src/gen/test/Model/CreateCommentResponseTest.php
+++ b/src/gen/test/Model/CreateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCompanyResponseTest.php b/src/gen/test/Model/CreateCompanyResponseTest.php
index f491fec4a6..5b41686daa 100644
--- a/src/gen/test/Model/CreateCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConnectionResponseTest.php b/src/gen/test/Model/CreateConnectionResponseTest.php
index f542c7d4ba..dca54eb8b2 100644
--- a/src/gen/test/Model/CreateConnectionResponseTest.php
+++ b/src/gen/test/Model/CreateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateConsumerResponseTest.php b/src/gen/test/Model/CreateConsumerResponseTest.php
index a3f0ad31fb..d8002df78a 100644
--- a/src/gen/test/Model/CreateConsumerResponseTest.php
+++ b/src/gen/test/Model/CreateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateContactResponseTest.php b/src/gen/test/Model/CreateContactResponseTest.php
index a397fc6592..772483c26f 100644
--- a/src/gen/test/Model/CreateContactResponseTest.php
+++ b/src/gen/test/Model/CreateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCreditNoteResponseTest.php b/src/gen/test/Model/CreateCreditNoteResponseTest.php
index 553546593f..0b2042bfe3 100644
--- a/src/gen/test/Model/CreateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/CreateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingRequestTest.php b/src/gen/test/Model/CreateCustomMappingRequestTest.php
index 905f7fca75..244d7eb25f 100644
--- a/src/gen/test/Model/CreateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/CreateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomMappingResponseTest.php b/src/gen/test/Model/CreateCustomMappingResponseTest.php
index d048d8b040..025dfa5f74 100644
--- a/src/gen/test/Model/CreateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/CreateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateCustomerResponseTest.php b/src/gen/test/Model/CreateCustomerResponseTest.php
index 620952cad9..fdf03680fa 100644
--- a/src/gen/test/Model/CreateCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDepartmentResponseTest.php b/src/gen/test/Model/CreateDepartmentResponseTest.php
index 3f38fdd47d..cb45d4cfff 100644
--- a/src/gen/test/Model/CreateDepartmentResponseTest.php
+++ b/src/gen/test/Model/CreateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveGroupResponseTest.php b/src/gen/test/Model/CreateDriveGroupResponseTest.php
index 9ad7b003f3..e61bb79e14 100644
--- a/src/gen/test/Model/CreateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/CreateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateDriveResponseTest.php b/src/gen/test/Model/CreateDriveResponseTest.php
index bfd6b7f692..499290b1bb 100644
--- a/src/gen/test/Model/CreateDriveResponseTest.php
+++ b/src/gen/test/Model/CreateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
index 9764799d75..2c07bdfeb8 100644
--- a/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
index 7ce66dbd8d..64d72165f5 100644
--- a/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/CreateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateEmployeeResponseTest.php b/src/gen/test/Model/CreateEmployeeResponseTest.php
index 827b5f5b21..5619a2d9ba 100644
--- a/src/gen/test/Model/CreateEmployeeResponseTest.php
+++ b/src/gen/test/Model/CreateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileRequestTest.php b/src/gen/test/Model/CreateFileRequestTest.php
index eb2763997c..d3d0be3b6b 100644
--- a/src/gen/test/Model/CreateFileRequestTest.php
+++ b/src/gen/test/Model/CreateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFileResponseTest.php b/src/gen/test/Model/CreateFileResponseTest.php
index d9d63ed620..ffa80ca9f1 100644
--- a/src/gen/test/Model/CreateFileResponseTest.php
+++ b/src/gen/test/Model/CreateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderRequestTest.php b/src/gen/test/Model/CreateFolderRequestTest.php
index f524aca69b..4d5bcbcc5f 100644
--- a/src/gen/test/Model/CreateFolderRequestTest.php
+++ b/src/gen/test/Model/CreateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateFolderResponseTest.php b/src/gen/test/Model/CreateFolderResponseTest.php
index 5eeb493ebf..d42d4f36fc 100644
--- a/src/gen/test/Model/CreateFolderResponseTest.php
+++ b/src/gen/test/Model/CreateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateHrisCompanyResponseTest.php b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
index 81298dd053..027720d8f8 100644
--- a/src/gen/test/Model/CreateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/CreateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceItemResponseTest.php b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
index b26ba6d624..38e2b537b7 100644
--- a/src/gen/test/Model/CreateInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateInvoiceResponseTest.php b/src/gen/test/Model/CreateInvoiceResponseTest.php
index 22b920d938..20227f2b82 100644
--- a/src/gen/test/Model/CreateInvoiceResponseTest.php
+++ b/src/gen/test/Model/CreateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateItemResponseTest.php b/src/gen/test/Model/CreateItemResponseTest.php
index 8ad153c6c3..e291b383af 100644
--- a/src/gen/test/Model/CreateItemResponseTest.php
+++ b/src/gen/test/Model/CreateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJobResponseTest.php b/src/gen/test/Model/CreateJobResponseTest.php
index 2e439f070e..84630828cf 100644
--- a/src/gen/test/Model/CreateJobResponseTest.php
+++ b/src/gen/test/Model/CreateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateJournalEntryResponseTest.php b/src/gen/test/Model/CreateJournalEntryResponseTest.php
index 4110259ee4..9e53546a0a 100644
--- a/src/gen/test/Model/CreateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/CreateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLeadResponseTest.php b/src/gen/test/Model/CreateLeadResponseTest.php
index bd2edbabff..c57ba33044 100644
--- a/src/gen/test/Model/CreateLeadResponseTest.php
+++ b/src/gen/test/Model/CreateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLedgerAccountResponseTest.php b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
index c381f9bc5c..d6bc395199 100644
--- a/src/gen/test/Model/CreateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/CreateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateLocationResponseTest.php b/src/gen/test/Model/CreateLocationResponseTest.php
index 82a5f5bc56..5731391de5 100644
--- a/src/gen/test/Model/CreateLocationResponseTest.php
+++ b/src/gen/test/Model/CreateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMerchantResponseTest.php b/src/gen/test/Model/CreateMerchantResponseTest.php
index a3c5c434bc..d332206e91 100644
--- a/src/gen/test/Model/CreateMerchantResponseTest.php
+++ b/src/gen/test/Model/CreateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateMessageResponseTest.php b/src/gen/test/Model/CreateMessageResponseTest.php
index 7f6da4e915..6bde2d9298 100644
--- a/src/gen/test/Model/CreateMessageResponseTest.php
+++ b/src/gen/test/Model/CreateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierGroupResponseTest.php b/src/gen/test/Model/CreateModifierGroupResponseTest.php
index 5ca408a2b1..1d5b13076b 100644
--- a/src/gen/test/Model/CreateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/CreateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateModifierResponseTest.php b/src/gen/test/Model/CreateModifierResponseTest.php
index 839943aa7a..763a98e1c4 100644
--- a/src/gen/test/Model/CreateModifierResponseTest.php
+++ b/src/gen/test/Model/CreateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateNoteResponseTest.php b/src/gen/test/Model/CreateNoteResponseTest.php
index cd18ab12d9..014b30ef18 100644
--- a/src/gen/test/Model/CreateNoteResponseTest.php
+++ b/src/gen/test/Model/CreateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOpportunityResponseTest.php b/src/gen/test/Model/CreateOpportunityResponseTest.php
index 229266835f..2b05e95c72 100644
--- a/src/gen/test/Model/CreateOpportunityResponseTest.php
+++ b/src/gen/test/Model/CreateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderResponseTest.php b/src/gen/test/Model/CreateOrderResponseTest.php
index a19475cd3f..a392004bca 100644
--- a/src/gen/test/Model/CreateOrderResponseTest.php
+++ b/src/gen/test/Model/CreateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateOrderTypeResponseTest.php b/src/gen/test/Model/CreateOrderTypeResponseTest.php
index 1d16667440..30d34c03cf 100644
--- a/src/gen/test/Model/CreateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/CreateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePaymentResponseTest.php b/src/gen/test/Model/CreatePaymentResponseTest.php
index 97c0cb7942..647f5ff8e1 100644
--- a/src/gen/test/Model/CreatePaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePipelineResponseTest.php b/src/gen/test/Model/CreatePipelineResponseTest.php
index 1eddfb86df..0b4b0460d8 100644
--- a/src/gen/test/Model/CreatePipelineResponseTest.php
+++ b/src/gen/test/Model/CreatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePosPaymentResponseTest.php b/src/gen/test/Model/CreatePosPaymentResponseTest.php
index 8755d369da..e8b70defdd 100644
--- a/src/gen/test/Model/CreatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/CreatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateProductResponseTest.php b/src/gen/test/Model/CreateProductResponseTest.php
index 7ab4afd4aa..75ed65f288 100644
--- a/src/gen/test/Model/CreateProductResponseTest.php
+++ b/src/gen/test/Model/CreateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
index 3a88754152..bca7f3ad53 100644
--- a/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/CreatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseDataTest.php b/src/gen/test/Model/CreateSessionResponseDataTest.php
index a9eaafb1ad..75b1159c3e 100644
--- a/src/gen/test/Model/CreateSessionResponseDataTest.php
+++ b/src/gen/test/Model/CreateSessionResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSessionResponseTest.php b/src/gen/test/Model/CreateSessionResponseTest.php
index fcdd6b0be2..6633e87623 100644
--- a/src/gen/test/Model/CreateSessionResponseTest.php
+++ b/src/gen/test/Model/CreateSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSharedLinkResponseTest.php b/src/gen/test/Model/CreateSharedLinkResponseTest.php
index 7996cbcf64..4c1310c131 100644
--- a/src/gen/test/Model/CreateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/CreateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSubsidiaryResponseTest.php b/src/gen/test/Model/CreateSubsidiaryResponseTest.php
index c113ebac97..201bdc1875 100644
--- a/src/gen/test/Model/CreateSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/CreateSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateSupplierResponseTest.php b/src/gen/test/Model/CreateSupplierResponseTest.php
index 164b38cc41..b7bdece0cb 100644
--- a/src/gen/test/Model/CreateSupplierResponseTest.php
+++ b/src/gen/test/Model/CreateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTaxRateResponseTest.php b/src/gen/test/Model/CreateTaxRateResponseTest.php
index 35b5bc7329..31af9b37aa 100644
--- a/src/gen/test/Model/CreateTaxRateResponseTest.php
+++ b/src/gen/test/Model/CreateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTenderResponseTest.php b/src/gen/test/Model/CreateTenderResponseTest.php
index ca72f95224..903866b94c 100644
--- a/src/gen/test/Model/CreateTenderResponseTest.php
+++ b/src/gen/test/Model/CreateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTicketResponseTest.php b/src/gen/test/Model/CreateTicketResponseTest.php
index 00be35663d..990e153760 100644
--- a/src/gen/test/Model/CreateTicketResponseTest.php
+++ b/src/gen/test/Model/CreateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
index 457785399f..85eb381c46 100644
--- a/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/CreateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionRequestTest.php b/src/gen/test/Model/CreateUploadSessionRequestTest.php
index 51ca1604a6..8589f9b940 100644
--- a/src/gen/test/Model/CreateUploadSessionRequestTest.php
+++ b/src/gen/test/Model/CreateUploadSessionRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUploadSessionResponseTest.php b/src/gen/test/Model/CreateUploadSessionResponseTest.php
index 87d8f0516f..58079fbb67 100644
--- a/src/gen/test/Model/CreateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/CreateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateUserResponseTest.php b/src/gen/test/Model/CreateUserResponseTest.php
index a49f71dc14..56e8e6c218 100644
--- a/src/gen/test/Model/CreateUserResponseTest.php
+++ b/src/gen/test/Model/CreateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookRequestTest.php b/src/gen/test/Model/CreateWebhookRequestTest.php
index 4050905f37..544168fa47 100644
--- a/src/gen/test/Model/CreateWebhookRequestTest.php
+++ b/src/gen/test/Model/CreateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreateWebhookResponseTest.php b/src/gen/test/Model/CreateWebhookResponseTest.php
index a0e2934ece..03b9aa6aa7 100644
--- a/src/gen/test/Model/CreateWebhookResponseTest.php
+++ b/src/gen/test/Model/CreateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNoteTest.php b/src/gen/test/Model/CreditNoteTest.php
index c57182b86a..263fb2c8a7 100644
--- a/src/gen/test/Model/CreditNoteTest.php
+++ b/src/gen/test/Model/CreditNoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesFilterTest.php b/src/gen/test/Model/CreditNotesFilterTest.php
index 89e7558a0c..0a8a947551 100644
--- a/src/gen/test/Model/CreditNotesFilterTest.php
+++ b/src/gen/test/Model/CreditNotesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CreditNotesSortTest.php b/src/gen/test/Model/CreditNotesSortTest.php
index dcdb98bdf0..6a709a1b8e 100644
--- a/src/gen/test/Model/CreditNotesSortTest.php
+++ b/src/gen/test/Model/CreditNotesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CrmEventTypeTest.php b/src/gen/test/Model/CrmEventTypeTest.php
index d06853d814..346f538157 100644
--- a/src/gen/test/Model/CrmEventTypeTest.php
+++ b/src/gen/test/Model/CrmEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CurrencyTest.php b/src/gen/test/Model/CurrencyTest.php
index 008a8c936e..93747a7dbb 100644
--- a/src/gen/test/Model/CurrencyTest.php
+++ b/src/gen/test/Model/CurrencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldFinderTest.php b/src/gen/test/Model/CustomFieldFinderTest.php
index c464cef8be..0d422d1a57 100644
--- a/src/gen/test/Model/CustomFieldFinderTest.php
+++ b/src/gen/test/Model/CustomFieldFinderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomFieldTest.php b/src/gen/test/Model/CustomFieldTest.php
index 7ea5597621..682a2f7de0 100644
--- a/src/gen/test/Model/CustomFieldTest.php
+++ b/src/gen/test/Model/CustomFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomMappingTest.php b/src/gen/test/Model/CustomMappingTest.php
index 48e90dd6df..338d69949e 100644
--- a/src/gen/test/Model/CustomMappingTest.php
+++ b/src/gen/test/Model/CustomMappingTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomerTest.php b/src/gen/test/Model/CustomerTest.php
index 0611969a17..14d81b5c6d 100644
--- a/src/gen/test/Model/CustomerTest.php
+++ b/src/gen/test/Model/CustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersFilterTest.php b/src/gen/test/Model/CustomersFilterTest.php
index d4855d864a..10662abaf7 100644
--- a/src/gen/test/Model/CustomersFilterTest.php
+++ b/src/gen/test/Model/CustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/CustomersSortTest.php b/src/gen/test/Model/CustomersSortTest.php
index 066e35db84..8cacf4169c 100644
--- a/src/gen/test/Model/CustomersSortTest.php
+++ b/src/gen/test/Model/CustomersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeductionTest.php b/src/gen/test/Model/DeductionTest.php
index 745a950e57..0dcb1a1a4a 100644
--- a/src/gen/test/Model/DeductionTest.php
+++ b/src/gen/test/Model/DeductionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteAccountingDepartmentResponseTest.php b/src/gen/test/Model/DeleteAccountingDepartmentResponseTest.php
index 61ff73f8ac..4ab9442ccf 100644
--- a/src/gen/test/Model/DeleteAccountingDepartmentResponseTest.php
+++ b/src/gen/test/Model/DeleteAccountingDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteAccountingLocationResponseTest.php b/src/gen/test/Model/DeleteAccountingLocationResponseTest.php
index 4045353122..5812cd3056 100644
--- a/src/gen/test/Model/DeleteAccountingLocationResponseTest.php
+++ b/src/gen/test/Model/DeleteAccountingLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteActivityResponseTest.php b/src/gen/test/Model/DeleteActivityResponseTest.php
index f8545e096a..e23f3ec931 100644
--- a/src/gen/test/Model/DeleteActivityResponseTest.php
+++ b/src/gen/test/Model/DeleteActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicantResponseTest.php b/src/gen/test/Model/DeleteApplicantResponseTest.php
index 0410423d19..d789590cd6 100644
--- a/src/gen/test/Model/DeleteApplicantResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteApplicationResponseTest.php b/src/gen/test/Model/DeleteApplicationResponseTest.php
index 34fe2eb880..e0efb1b57c 100644
--- a/src/gen/test/Model/DeleteApplicationResponseTest.php
+++ b/src/gen/test/Model/DeleteApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteBillResponseTest.php b/src/gen/test/Model/DeleteBillResponseTest.php
index ab4fe2c7e9..4556eb15d2 100644
--- a/src/gen/test/Model/DeleteBillResponseTest.php
+++ b/src/gen/test/Model/DeleteBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCommentResponseTest.php b/src/gen/test/Model/DeleteCommentResponseTest.php
index 76ea0bdb03..e43d411775 100644
--- a/src/gen/test/Model/DeleteCommentResponseTest.php
+++ b/src/gen/test/Model/DeleteCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCompanyResponseTest.php b/src/gen/test/Model/DeleteCompanyResponseTest.php
index ec5772d34b..b2746b21b5 100644
--- a/src/gen/test/Model/DeleteCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteConsumerResponseTest.php b/src/gen/test/Model/DeleteConsumerResponseTest.php
index d4370286dd..7f0ec33d9d 100644
--- a/src/gen/test/Model/DeleteConsumerResponseTest.php
+++ b/src/gen/test/Model/DeleteConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteContactResponseTest.php b/src/gen/test/Model/DeleteContactResponseTest.php
index 8d7088037b..50ccbc79ee 100644
--- a/src/gen/test/Model/DeleteContactResponseTest.php
+++ b/src/gen/test/Model/DeleteContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCreditNoteResponseTest.php b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
index 8f0931ac1e..0cb0c1a979 100644
--- a/src/gen/test/Model/DeleteCreditNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteCustomerResponseTest.php b/src/gen/test/Model/DeleteCustomerResponseTest.php
index 3fe6676b68..e15f1d0580 100644
--- a/src/gen/test/Model/DeleteCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDepartmentResponseTest.php b/src/gen/test/Model/DeleteDepartmentResponseTest.php
index 46a65ed72a..d59b6e8deb 100644
--- a/src/gen/test/Model/DeleteDepartmentResponseTest.php
+++ b/src/gen/test/Model/DeleteDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveGroupResponseTest.php b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
index 554f86a799..e3dab6936c 100644
--- a/src/gen/test/Model/DeleteDriveGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteDriveResponseTest.php b/src/gen/test/Model/DeleteDriveResponseTest.php
index 71291735ec..a621315c65 100644
--- a/src/gen/test/Model/DeleteDriveResponseTest.php
+++ b/src/gen/test/Model/DeleteDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
index 845d4fe374..01bf7d9e42 100644
--- a/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
index 36d491b583..90819d065a 100644
--- a/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteEmployeeResponseTest.php b/src/gen/test/Model/DeleteEmployeeResponseTest.php
index d015d025d1..924d0d60f1 100644
--- a/src/gen/test/Model/DeleteEmployeeResponseTest.php
+++ b/src/gen/test/Model/DeleteEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFileResponseTest.php b/src/gen/test/Model/DeleteFileResponseTest.php
index 683cbbf341..df1eba7e21 100644
--- a/src/gen/test/Model/DeleteFileResponseTest.php
+++ b/src/gen/test/Model/DeleteFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteFolderResponseTest.php b/src/gen/test/Model/DeleteFolderResponseTest.php
index 7662d601d1..e6e49d36af 100644
--- a/src/gen/test/Model/DeleteFolderResponseTest.php
+++ b/src/gen/test/Model/DeleteFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
index 683ba433ea..c5b090e0f0 100644
--- a/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/DeleteHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteInvoiceResponseTest.php b/src/gen/test/Model/DeleteInvoiceResponseTest.php
index 372d18ba7a..4c7e60283e 100644
--- a/src/gen/test/Model/DeleteInvoiceResponseTest.php
+++ b/src/gen/test/Model/DeleteInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteItemResponseTest.php b/src/gen/test/Model/DeleteItemResponseTest.php
index 5e47b9c9d4..9d56f9eab6 100644
--- a/src/gen/test/Model/DeleteItemResponseTest.php
+++ b/src/gen/test/Model/DeleteItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJobResponseTest.php b/src/gen/test/Model/DeleteJobResponseTest.php
index bea6dfedde..047df369e3 100644
--- a/src/gen/test/Model/DeleteJobResponseTest.php
+++ b/src/gen/test/Model/DeleteJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteJournalEntryResponseTest.php b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
index 87a001bf58..6b99cb9eb5 100644
--- a/src/gen/test/Model/DeleteJournalEntryResponseTest.php
+++ b/src/gen/test/Model/DeleteJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLeadResponseTest.php b/src/gen/test/Model/DeleteLeadResponseTest.php
index 55286dfa74..c6bc6309b4 100644
--- a/src/gen/test/Model/DeleteLeadResponseTest.php
+++ b/src/gen/test/Model/DeleteLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
index b22e793136..82248e5db5 100644
--- a/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/DeleteLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteLocationResponseTest.php b/src/gen/test/Model/DeleteLocationResponseTest.php
index 401ff279dc..348815562c 100644
--- a/src/gen/test/Model/DeleteLocationResponseTest.php
+++ b/src/gen/test/Model/DeleteLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMerchantResponseTest.php b/src/gen/test/Model/DeleteMerchantResponseTest.php
index 01b5bdf7e5..a329f24c84 100644
--- a/src/gen/test/Model/DeleteMerchantResponseTest.php
+++ b/src/gen/test/Model/DeleteMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteMessageResponseTest.php b/src/gen/test/Model/DeleteMessageResponseTest.php
index ce907ffa2e..aea8e13334 100644
--- a/src/gen/test/Model/DeleteMessageResponseTest.php
+++ b/src/gen/test/Model/DeleteMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierGroupResponseTest.php b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
index 68ad0ba003..b73331cf3c 100644
--- a/src/gen/test/Model/DeleteModifierGroupResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteModifierResponseTest.php b/src/gen/test/Model/DeleteModifierResponseTest.php
index a433d754ab..d582cdf53b 100644
--- a/src/gen/test/Model/DeleteModifierResponseTest.php
+++ b/src/gen/test/Model/DeleteModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteNoteResponseTest.php b/src/gen/test/Model/DeleteNoteResponseTest.php
index 942674acc2..cb556b4f37 100644
--- a/src/gen/test/Model/DeleteNoteResponseTest.php
+++ b/src/gen/test/Model/DeleteNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOpportunityResponseTest.php b/src/gen/test/Model/DeleteOpportunityResponseTest.php
index 7e52615222..b50caa06f7 100644
--- a/src/gen/test/Model/DeleteOpportunityResponseTest.php
+++ b/src/gen/test/Model/DeleteOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderResponseTest.php b/src/gen/test/Model/DeleteOrderResponseTest.php
index 91b43327e6..48f96406b3 100644
--- a/src/gen/test/Model/DeleteOrderResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteOrderTypeResponseTest.php b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
index e5b10bc1c7..388cdc7bf5 100644
--- a/src/gen/test/Model/DeleteOrderTypeResponseTest.php
+++ b/src/gen/test/Model/DeleteOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePaymentResponseTest.php b/src/gen/test/Model/DeletePaymentResponseTest.php
index 46a40ac480..39c43924af 100644
--- a/src/gen/test/Model/DeletePaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePipelineResponseTest.php b/src/gen/test/Model/DeletePipelineResponseTest.php
index b67327ccba..85292f7235 100644
--- a/src/gen/test/Model/DeletePipelineResponseTest.php
+++ b/src/gen/test/Model/DeletePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePosPaymentResponseTest.php b/src/gen/test/Model/DeletePosPaymentResponseTest.php
index 0fdb5b565b..f160447c64 100644
--- a/src/gen/test/Model/DeletePosPaymentResponseTest.php
+++ b/src/gen/test/Model/DeletePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteProductResponseTest.php b/src/gen/test/Model/DeleteProductResponseTest.php
index a2642dcf84..08f093c018 100644
--- a/src/gen/test/Model/DeleteProductResponseTest.php
+++ b/src/gen/test/Model/DeleteProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
index 4958918230..f039b43bb7 100644
--- a/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/DeletePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSharedLinkResponseTest.php b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
index 2239df543c..1b66ca333d 100644
--- a/src/gen/test/Model/DeleteSharedLinkResponseTest.php
+++ b/src/gen/test/Model/DeleteSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSubsidiaryResponseTest.php b/src/gen/test/Model/DeleteSubsidiaryResponseTest.php
index 6e55c7ed23..ef9f49fed4 100644
--- a/src/gen/test/Model/DeleteSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/DeleteSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteSupplierResponseTest.php b/src/gen/test/Model/DeleteSupplierResponseTest.php
index 3637f4757f..ce3c302733 100644
--- a/src/gen/test/Model/DeleteSupplierResponseTest.php
+++ b/src/gen/test/Model/DeleteSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTaxRateResponseTest.php b/src/gen/test/Model/DeleteTaxRateResponseTest.php
index 759fa67b38..112bdb8175 100644
--- a/src/gen/test/Model/DeleteTaxRateResponseTest.php
+++ b/src/gen/test/Model/DeleteTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTenderResponseTest.php b/src/gen/test/Model/DeleteTenderResponseTest.php
index 8d0cc62440..60e87be537 100644
--- a/src/gen/test/Model/DeleteTenderResponseTest.php
+++ b/src/gen/test/Model/DeleteTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTicketResponseTest.php b/src/gen/test/Model/DeleteTicketResponseTest.php
index 53080eae3a..c47fac3f54 100644
--- a/src/gen/test/Model/DeleteTicketResponseTest.php
+++ b/src/gen/test/Model/DeleteTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
index 81cb10d58f..995540afcf 100644
--- a/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/DeleteTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUploadSessionResponseTest.php b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
index ca2f8e023c..175e5b8208 100644
--- a/src/gen/test/Model/DeleteUploadSessionResponseTest.php
+++ b/src/gen/test/Model/DeleteUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteUserResponseTest.php b/src/gen/test/Model/DeleteUserResponseTest.php
index 806139eb07..ad61fd863e 100644
--- a/src/gen/test/Model/DeleteUserResponseTest.php
+++ b/src/gen/test/Model/DeleteUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DeleteWebhookResponseTest.php b/src/gen/test/Model/DeleteWebhookResponseTest.php
index 4031f85e3b..5946f68a7b 100644
--- a/src/gen/test/Model/DeleteWebhookResponseTest.php
+++ b/src/gen/test/Model/DeleteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DepartmentTest.php b/src/gen/test/Model/DepartmentTest.php
index 7b254e417a..6a256ebbc5 100644
--- a/src/gen/test/Model/DepartmentTest.php
+++ b/src/gen/test/Model/DepartmentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupTest.php b/src/gen/test/Model/DriveGroupTest.php
index dead56a893..27d10ca7de 100644
--- a/src/gen/test/Model/DriveGroupTest.php
+++ b/src/gen/test/Model/DriveGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveGroupsFilterTest.php b/src/gen/test/Model/DriveGroupsFilterTest.php
index fc5b5a7752..b30ee01823 100644
--- a/src/gen/test/Model/DriveGroupsFilterTest.php
+++ b/src/gen/test/Model/DriveGroupsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DriveTest.php b/src/gen/test/Model/DriveTest.php
index 97448e3521..15365fbcad 100644
--- a/src/gen/test/Model/DriveTest.php
+++ b/src/gen/test/Model/DriveTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/DrivesFilterTest.php b/src/gen/test/Model/DrivesFilterTest.php
index c37981e14b..4405fd680d 100644
--- a/src/gen/test/Model/DrivesFilterTest.php
+++ b/src/gen/test/Model/DrivesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceAddressTest.php b/src/gen/test/Model/EcommerceAddressTest.php
index 0dcdfc9d3f..e3c00b296a 100644
--- a/src/gen/test/Model/EcommerceAddressTest.php
+++ b/src/gen/test/Model/EcommerceAddressTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerAddressesTest.php b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
index da0cf91e46..f7419e6c5d 100644
--- a/src/gen/test/Model/EcommerceCustomerAddressesTest.php
+++ b/src/gen/test/Model/EcommerceCustomerAddressesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomerTest.php b/src/gen/test/Model/EcommerceCustomerTest.php
index 6f3cd91558..2e26a82671 100644
--- a/src/gen/test/Model/EcommerceCustomerTest.php
+++ b/src/gen/test/Model/EcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceCustomersFilterTest.php b/src/gen/test/Model/EcommerceCustomersFilterTest.php
index e250de154d..5ffdb1e90e 100644
--- a/src/gen/test/Model/EcommerceCustomersFilterTest.php
+++ b/src/gen/test/Model/EcommerceCustomersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceDiscountTest.php b/src/gen/test/Model/EcommerceDiscountTest.php
index 6de7ead614..10c25c2307 100644
--- a/src/gen/test/Model/EcommerceDiscountTest.php
+++ b/src/gen/test/Model/EcommerceDiscountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderLineItemTest.php b/src/gen/test/Model/EcommerceOrderLineItemTest.php
index 7ab9b091d2..b0a05a5130 100644
--- a/src/gen/test/Model/EcommerceOrderLineItemTest.php
+++ b/src/gen/test/Model/EcommerceOrderLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderStatusTest.php b/src/gen/test/Model/EcommerceOrderStatusTest.php
index 1731cd0c8c..b696ea9d3c 100644
--- a/src/gen/test/Model/EcommerceOrderStatusTest.php
+++ b/src/gen/test/Model/EcommerceOrderStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrderTest.php b/src/gen/test/Model/EcommerceOrderTest.php
index b8a9e2ac29..f6d273364c 100644
--- a/src/gen/test/Model/EcommerceOrderTest.php
+++ b/src/gen/test/Model/EcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceOrdersFilterTest.php b/src/gen/test/Model/EcommerceOrdersFilterTest.php
index e1b3398741..6676c34758 100644
--- a/src/gen/test/Model/EcommerceOrdersFilterTest.php
+++ b/src/gen/test/Model/EcommerceOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductCategoriesTest.php b/src/gen/test/Model/EcommerceProductCategoriesTest.php
index 12f623ae42..10b1733b60 100644
--- a/src/gen/test/Model/EcommerceProductCategoriesTest.php
+++ b/src/gen/test/Model/EcommerceProductCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImages1Test.php b/src/gen/test/Model/EcommerceProductImages1Test.php
index a89d6101bc..44b6a6484b 100644
--- a/src/gen/test/Model/EcommerceProductImages1Test.php
+++ b/src/gen/test/Model/EcommerceProductImages1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductImagesTest.php b/src/gen/test/Model/EcommerceProductImagesTest.php
index f0373d79c5..249cf5e81e 100644
--- a/src/gen/test/Model/EcommerceProductImagesTest.php
+++ b/src/gen/test/Model/EcommerceProductImagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptions1Test.php b/src/gen/test/Model/EcommerceProductOptions1Test.php
index 55d795d8dd..4ffa361ac0 100644
--- a/src/gen/test/Model/EcommerceProductOptions1Test.php
+++ b/src/gen/test/Model/EcommerceProductOptions1Test.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductOptionsTest.php b/src/gen/test/Model/EcommerceProductOptionsTest.php
index e962b31f7d..394d7755d4 100644
--- a/src/gen/test/Model/EcommerceProductOptionsTest.php
+++ b/src/gen/test/Model/EcommerceProductOptionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductTest.php b/src/gen/test/Model/EcommerceProductTest.php
index 5dfbe9839c..72a9799bda 100644
--- a/src/gen/test/Model/EcommerceProductTest.php
+++ b/src/gen/test/Model/EcommerceProductTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceProductVariantsTest.php b/src/gen/test/Model/EcommerceProductVariantsTest.php
index b9e5686c7a..39561ba244 100644
--- a/src/gen/test/Model/EcommerceProductVariantsTest.php
+++ b/src/gen/test/Model/EcommerceProductVariantsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EcommerceStoreTest.php b/src/gen/test/Model/EcommerceStoreTest.php
index 81b6a3137f..5908a48e78 100644
--- a/src/gen/test/Model/EcommerceStoreTest.php
+++ b/src/gen/test/Model/EcommerceStoreTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmailTest.php b/src/gen/test/Model/EmailTest.php
index 801593bf23..c18355990d 100644
--- a/src/gen/test/Model/EmailTest.php
+++ b/src/gen/test/Model/EmailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeCompensationTest.php b/src/gen/test/Model/EmployeeCompensationTest.php
index 2c9e68b782..3adfb4dcb9 100644
--- a/src/gen/test/Model/EmployeeCompensationTest.php
+++ b/src/gen/test/Model/EmployeeCompensationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeEmploymentRoleTest.php b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
index 05a29ec910..06425db069 100644
--- a/src/gen/test/Model/EmployeeEmploymentRoleTest.php
+++ b/src/gen/test/Model/EmployeeEmploymentRoleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeJobTest.php b/src/gen/test/Model/EmployeeJobTest.php
index cbf2b09935..f476c9751e 100644
--- a/src/gen/test/Model/EmployeeJobTest.php
+++ b/src/gen/test/Model/EmployeeJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeListTest.php b/src/gen/test/Model/EmployeeListTest.php
index 5707e8482d..65b2d47d0c 100644
--- a/src/gen/test/Model/EmployeeListTest.php
+++ b/src/gen/test/Model/EmployeeListTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeManagerTest.php b/src/gen/test/Model/EmployeeManagerTest.php
index 32d8656b03..d163fa77cb 100644
--- a/src/gen/test/Model/EmployeeManagerTest.php
+++ b/src/gen/test/Model/EmployeeManagerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeePayrollTest.php b/src/gen/test/Model/EmployeePayrollTest.php
index 2fcf5ba195..9b55bb946e 100644
--- a/src/gen/test/Model/EmployeePayrollTest.php
+++ b/src/gen/test/Model/EmployeePayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeSchedulesTest.php b/src/gen/test/Model/EmployeeSchedulesTest.php
index 0e9f906208..7d952f0a51 100644
--- a/src/gen/test/Model/EmployeeSchedulesTest.php
+++ b/src/gen/test/Model/EmployeeSchedulesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeeTest.php b/src/gen/test/Model/EmployeeTest.php
index 3c83148a3a..497c8399c2 100644
--- a/src/gen/test/Model/EmployeeTest.php
+++ b/src/gen/test/Model/EmployeeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesFilterTest.php b/src/gen/test/Model/EmployeesFilterTest.php
index a830c48d77..df3cbc0771 100644
--- a/src/gen/test/Model/EmployeesFilterTest.php
+++ b/src/gen/test/Model/EmployeesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmployeesSortTest.php b/src/gen/test/Model/EmployeesSortTest.php
index db652febed..f441f60791 100644
--- a/src/gen/test/Model/EmployeesSortTest.php
+++ b/src/gen/test/Model/EmployeesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/EmploymentStatusTest.php b/src/gen/test/Model/EmploymentStatusTest.php
index 643afcc09d..e7d83e18df 100644
--- a/src/gen/test/Model/EmploymentStatusTest.php
+++ b/src/gen/test/Model/EmploymentStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ErrorTest.php b/src/gen/test/Model/ErrorTest.php
index aa7822414e..453fc75285 100644
--- a/src/gen/test/Model/ErrorTest.php
+++ b/src/gen/test/Model/ErrorTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ExecuteWebhookResponseTest.php b/src/gen/test/Model/ExecuteWebhookResponseTest.php
index 8eb4c1de59..9ce46b9ed2 100644
--- a/src/gen/test/Model/ExecuteWebhookResponseTest.php
+++ b/src/gen/test/Model/ExecuteWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileStorageEventTypeTest.php b/src/gen/test/Model/FileStorageEventTypeTest.php
index e5f7dbdbcc..9f01ba1b2c 100644
--- a/src/gen/test/Model/FileStorageEventTypeTest.php
+++ b/src/gen/test/Model/FileStorageEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FileTypeTest.php b/src/gen/test/Model/FileTypeTest.php
index 2b57a3d9b9..a80380c543 100644
--- a/src/gen/test/Model/FileTypeTest.php
+++ b/src/gen/test/Model/FileTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesFilterTest.php b/src/gen/test/Model/FilesFilterTest.php
index d6a4e515a2..27f47c9db3 100644
--- a/src/gen/test/Model/FilesFilterTest.php
+++ b/src/gen/test/Model/FilesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSearchTest.php b/src/gen/test/Model/FilesSearchTest.php
index c4f1232f7e..94cdd5f3d0 100644
--- a/src/gen/test/Model/FilesSearchTest.php
+++ b/src/gen/test/Model/FilesSearchTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FilesSortTest.php b/src/gen/test/Model/FilesSortTest.php
index e9959539ac..495b6fedb7 100644
--- a/src/gen/test/Model/FilesSortTest.php
+++ b/src/gen/test/Model/FilesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FolderTest.php b/src/gen/test/Model/FolderTest.php
index d8bcd08d5c..b2c96603dd 100644
--- a/src/gen/test/Model/FolderTest.php
+++ b/src/gen/test/Model/FolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionGroupTest.php b/src/gen/test/Model/FormFieldOptionGroupTest.php
index ddef0b4f72..2dcfc374af 100644
--- a/src/gen/test/Model/FormFieldOptionGroupTest.php
+++ b/src/gen/test/Model/FormFieldOptionGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldOptionTest.php b/src/gen/test/Model/FormFieldOptionTest.php
index ed44a22785..ec4df8650d 100644
--- a/src/gen/test/Model/FormFieldOptionTest.php
+++ b/src/gen/test/Model/FormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/FormFieldTest.php b/src/gen/test/Model/FormFieldTest.php
index 1d547bbef3..cc9d00c797 100644
--- a/src/gen/test/Model/FormFieldTest.php
+++ b/src/gen/test/Model/FormFieldTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GenderTest.php b/src/gen/test/Model/GenderTest.php
index c1d2370460..6c0e69a1f8 100644
--- a/src/gen/test/Model/GenderTest.php
+++ b/src/gen/test/Model/GenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetAccountingDepartmentResponseTest.php b/src/gen/test/Model/GetAccountingDepartmentResponseTest.php
index 15c96431f5..e996e38b14 100644
--- a/src/gen/test/Model/GetAccountingDepartmentResponseTest.php
+++ b/src/gen/test/Model/GetAccountingDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetAccountingDepartmentsResponseTest.php b/src/gen/test/Model/GetAccountingDepartmentsResponseTest.php
index 120988ecea..c90743d9b7 100644
--- a/src/gen/test/Model/GetAccountingDepartmentsResponseTest.php
+++ b/src/gen/test/Model/GetAccountingDepartmentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetAccountingLocationResponseTest.php b/src/gen/test/Model/GetAccountingLocationResponseTest.php
index b62afe3653..5451cce83a 100644
--- a/src/gen/test/Model/GetAccountingLocationResponseTest.php
+++ b/src/gen/test/Model/GetAccountingLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetAccountingLocationsResponseTest.php b/src/gen/test/Model/GetAccountingLocationsResponseTest.php
index 77965bac10..a1d6f9dcdf 100644
--- a/src/gen/test/Model/GetAccountingLocationsResponseTest.php
+++ b/src/gen/test/Model/GetAccountingLocationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetActivitiesResponseTest.php b/src/gen/test/Model/GetActivitiesResponseTest.php
index e2804fb221..18968b4e8a 100644
--- a/src/gen/test/Model/GetActivitiesResponseTest.php
+++ b/src/gen/test/Model/GetActivitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetActivityResponseTest.php b/src/gen/test/Model/GetActivityResponseTest.php
index c5d1795130..8bdf89ab8e 100644
--- a/src/gen/test/Model/GetActivityResponseTest.php
+++ b/src/gen/test/Model/GetActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
index ebe897e065..aa7cce61a4 100644
--- a/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceCoverageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResourceResponseTest.php b/src/gen/test/Model/GetApiResourceResponseTest.php
index fd65a37b83..9d0a9cb181 100644
--- a/src/gen/test/Model/GetApiResourceResponseTest.php
+++ b/src/gen/test/Model/GetApiResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApiResponseTest.php b/src/gen/test/Model/GetApiResponseTest.php
index b207377734..4ec12ad8fb 100644
--- a/src/gen/test/Model/GetApiResponseTest.php
+++ b/src/gen/test/Model/GetApiResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApisResponseTest.php b/src/gen/test/Model/GetApisResponseTest.php
index 280526f704..f4321e4152 100644
--- a/src/gen/test/Model/GetApisResponseTest.php
+++ b/src/gen/test/Model/GetApisResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantResponseTest.php b/src/gen/test/Model/GetApplicantResponseTest.php
index b06ce698d4..7dbbf52fc1 100644
--- a/src/gen/test/Model/GetApplicantResponseTest.php
+++ b/src/gen/test/Model/GetApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicantsResponseTest.php b/src/gen/test/Model/GetApplicantsResponseTest.php
index 30bbf6961a..8b1f481656 100644
--- a/src/gen/test/Model/GetApplicantsResponseTest.php
+++ b/src/gen/test/Model/GetApplicantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationResponseTest.php b/src/gen/test/Model/GetApplicationResponseTest.php
index 8ffefe5195..a9a3284de7 100644
--- a/src/gen/test/Model/GetApplicationResponseTest.php
+++ b/src/gen/test/Model/GetApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetApplicationsResponseTest.php b/src/gen/test/Model/GetApplicationsResponseTest.php
index bc8fb9684d..c760aa5a9c 100644
--- a/src/gen/test/Model/GetApplicationsResponseTest.php
+++ b/src/gen/test/Model/GetApplicationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBalanceSheetResponseTest.php b/src/gen/test/Model/GetBalanceSheetResponseTest.php
index cfab80c9e6..972f67eacd 100644
--- a/src/gen/test/Model/GetBalanceSheetResponseTest.php
+++ b/src/gen/test/Model/GetBalanceSheetResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillResponseTest.php b/src/gen/test/Model/GetBillResponseTest.php
index 6f2d4511cc..880fdd55b0 100644
--- a/src/gen/test/Model/GetBillResponseTest.php
+++ b/src/gen/test/Model/GetBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetBillsResponseTest.php b/src/gen/test/Model/GetBillsResponseTest.php
index 4945b7651a..ce5eacc20f 100644
--- a/src/gen/test/Model/GetBillsResponseTest.php
+++ b/src/gen/test/Model/GetBillsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionResponseTest.php b/src/gen/test/Model/GetCollectionResponseTest.php
index abf0968d5d..4f64222c63 100644
--- a/src/gen/test/Model/GetCollectionResponseTest.php
+++ b/src/gen/test/Model/GetCollectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionTagsResponseTest.php b/src/gen/test/Model/GetCollectionTagsResponseTest.php
index c540ee9b54..9b2839bed5 100644
--- a/src/gen/test/Model/GetCollectionTagsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionTagsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUserResponseTest.php b/src/gen/test/Model/GetCollectionUserResponseTest.php
index 6d60c70b7d..03fc85feed 100644
--- a/src/gen/test/Model/GetCollectionUserResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionUsersResponseTest.php b/src/gen/test/Model/GetCollectionUsersResponseTest.php
index 1c0105c5cc..72789861f7 100644
--- a/src/gen/test/Model/GetCollectionUsersResponseTest.php
+++ b/src/gen/test/Model/GetCollectionUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCollectionsResponseTest.php b/src/gen/test/Model/GetCollectionsResponseTest.php
index d0f613d0ec..aa13654414 100644
--- a/src/gen/test/Model/GetCollectionsResponseTest.php
+++ b/src/gen/test/Model/GetCollectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentResponseTest.php b/src/gen/test/Model/GetCommentResponseTest.php
index b55b84eb6f..f5a66a3e57 100644
--- a/src/gen/test/Model/GetCommentResponseTest.php
+++ b/src/gen/test/Model/GetCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCommentsResponseTest.php b/src/gen/test/Model/GetCommentsResponseTest.php
index 3a9f698034..74e1d10361 100644
--- a/src/gen/test/Model/GetCommentsResponseTest.php
+++ b/src/gen/test/Model/GetCommentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompaniesResponseTest.php b/src/gen/test/Model/GetCompaniesResponseTest.php
index 4dc9fecf98..31815ff493 100644
--- a/src/gen/test/Model/GetCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyInfoResponseTest.php b/src/gen/test/Model/GetCompanyInfoResponseTest.php
index 208e8d2a50..d57598e56c 100644
--- a/src/gen/test/Model/GetCompanyInfoResponseTest.php
+++ b/src/gen/test/Model/GetCompanyInfoResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCompanyResponseTest.php b/src/gen/test/Model/GetCompanyResponseTest.php
index 70075472c2..21a35735d2 100644
--- a/src/gen/test/Model/GetCompanyResponseTest.php
+++ b/src/gen/test/Model/GetCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionResponseTest.php b/src/gen/test/Model/GetConnectionResponseTest.php
index a53d66c6dc..d012a979f9 100644
--- a/src/gen/test/Model/GetConnectionResponseTest.php
+++ b/src/gen/test/Model/GetConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectionsResponseTest.php b/src/gen/test/Model/GetConnectionsResponseTest.php
index 741d276727..708e7a84c1 100644
--- a/src/gen/test/Model/GetConnectionsResponseTest.php
+++ b/src/gen/test/Model/GetConnectionsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
index abbd158951..a7e4e1e0e2 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
index c879019134..85f0c5faa5 100644
--- a/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceResponseTest.php b/src/gen/test/Model/GetConnectorResourceResponseTest.php
index 0d25edf107..ac27e87598 100644
--- a/src/gen/test/Model/GetConnectorResourceResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
index 089659d68f..a489107edc 100644
--- a/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorResponseTest.php b/src/gen/test/Model/GetConnectorResponseTest.php
index 39db2b6c04..74fae78802 100644
--- a/src/gen/test/Model/GetConnectorResponseTest.php
+++ b/src/gen/test/Model/GetConnectorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConnectorsResponseTest.php b/src/gen/test/Model/GetConnectorsResponseTest.php
index c1fd9a3aa0..20fa67d559 100644
--- a/src/gen/test/Model/GetConnectorsResponseTest.php
+++ b/src/gen/test/Model/GetConnectorsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumerResponseTest.php b/src/gen/test/Model/GetConsumerResponseTest.php
index f963f04c53..62a85723e3 100644
--- a/src/gen/test/Model/GetConsumerResponseTest.php
+++ b/src/gen/test/Model/GetConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseDataTest.php b/src/gen/test/Model/GetConsumersResponseDataTest.php
index 8918b7bd06..d5df5bda45 100644
--- a/src/gen/test/Model/GetConsumersResponseDataTest.php
+++ b/src/gen/test/Model/GetConsumersResponseDataTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetConsumersResponseTest.php b/src/gen/test/Model/GetConsumersResponseTest.php
index 05a140f46d..c0c18b28fb 100644
--- a/src/gen/test/Model/GetConsumersResponseTest.php
+++ b/src/gen/test/Model/GetConsumersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactResponseTest.php b/src/gen/test/Model/GetContactResponseTest.php
index e1ba02f42d..e3531be20d 100644
--- a/src/gen/test/Model/GetContactResponseTest.php
+++ b/src/gen/test/Model/GetContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetContactsResponseTest.php b/src/gen/test/Model/GetContactsResponseTest.php
index e02ebd8682..44035fc280 100644
--- a/src/gen/test/Model/GetContactsResponseTest.php
+++ b/src/gen/test/Model/GetContactsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNoteResponseTest.php b/src/gen/test/Model/GetCreditNoteResponseTest.php
index 38e4775a3d..584fbf9198 100644
--- a/src/gen/test/Model/GetCreditNoteResponseTest.php
+++ b/src/gen/test/Model/GetCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCreditNotesResponseTest.php b/src/gen/test/Model/GetCreditNotesResponseTest.php
index 9019e224d2..1f761c82a5 100644
--- a/src/gen/test/Model/GetCreditNotesResponseTest.php
+++ b/src/gen/test/Model/GetCreditNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomFieldsResponseTest.php b/src/gen/test/Model/GetCustomFieldsResponseTest.php
index 069c6f4e58..3e7ffb8714 100644
--- a/src/gen/test/Model/GetCustomFieldsResponseTest.php
+++ b/src/gen/test/Model/GetCustomFieldsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomMappingResponseTest.php b/src/gen/test/Model/GetCustomMappingResponseTest.php
index 44301e75ba..97ac536e4c 100644
--- a/src/gen/test/Model/GetCustomMappingResponseTest.php
+++ b/src/gen/test/Model/GetCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomerResponseTest.php b/src/gen/test/Model/GetCustomerResponseTest.php
index 56153aede1..47d631d735 100644
--- a/src/gen/test/Model/GetCustomerResponseTest.php
+++ b/src/gen/test/Model/GetCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetCustomersResponseTest.php b/src/gen/test/Model/GetCustomersResponseTest.php
index c41d468b68..35ba584724 100644
--- a/src/gen/test/Model/GetCustomersResponseTest.php
+++ b/src/gen/test/Model/GetCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentResponseTest.php b/src/gen/test/Model/GetDepartmentResponseTest.php
index 9bcd45b4e8..477db39832 100644
--- a/src/gen/test/Model/GetDepartmentResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDepartmentsResponseTest.php b/src/gen/test/Model/GetDepartmentsResponseTest.php
index 931a1f0a36..4cc3966244 100644
--- a/src/gen/test/Model/GetDepartmentsResponseTest.php
+++ b/src/gen/test/Model/GetDepartmentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupResponseTest.php b/src/gen/test/Model/GetDriveGroupResponseTest.php
index 17563c0889..dfc1bcfa1d 100644
--- a/src/gen/test/Model/GetDriveGroupResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveGroupsResponseTest.php b/src/gen/test/Model/GetDriveGroupsResponseTest.php
index f3d308bd35..aec25e6e92 100644
--- a/src/gen/test/Model/GetDriveGroupsResponseTest.php
+++ b/src/gen/test/Model/GetDriveGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDriveResponseTest.php b/src/gen/test/Model/GetDriveResponseTest.php
index 78a26ec193..9104a4c6d4 100644
--- a/src/gen/test/Model/GetDriveResponseTest.php
+++ b/src/gen/test/Model/GetDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetDrivesResponseTest.php b/src/gen/test/Model/GetDrivesResponseTest.php
index a208a17f07..36bd7b8217 100644
--- a/src/gen/test/Model/GetDrivesResponseTest.php
+++ b/src/gen/test/Model/GetDrivesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
index 7dd2c32d83..15d9a6d4af 100644
--- a/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
index b50f204f7f..e0455b9abf 100644
--- a/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceCustomersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrderResponseTest.php b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
index f6dd545413..add2691bed 100644
--- a/src/gen/test/Model/GetEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
index 02e0b39dd7..95707c5fb9 100644
--- a/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
+++ b/src/gen/test/Model/GetEcommerceOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollResponseTest.php b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
index c53210197c..49dcad0f0e 100644
--- a/src/gen/test/Model/GetEmployeePayrollResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
index e246b35dea..45c7561103 100644
--- a/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
+++ b/src/gen/test/Model/GetEmployeePayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeResponseTest.php b/src/gen/test/Model/GetEmployeeResponseTest.php
index 3da539fe09..cd8bc2b470 100644
--- a/src/gen/test/Model/GetEmployeeResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
index 10d4090f13..902e338aa8 100644
--- a/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeeSchedulesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetEmployeesResponseTest.php b/src/gen/test/Model/GetEmployeesResponseTest.php
index 4b115d1853..0a048c8dec 100644
--- a/src/gen/test/Model/GetEmployeesResponseTest.php
+++ b/src/gen/test/Model/GetEmployeesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFileResponseTest.php b/src/gen/test/Model/GetFileResponseTest.php
index b64ba60f18..2ebbcac684 100644
--- a/src/gen/test/Model/GetFileResponseTest.php
+++ b/src/gen/test/Model/GetFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFilesResponseTest.php b/src/gen/test/Model/GetFilesResponseTest.php
index eb4d87bd7d..50c1e05089 100644
--- a/src/gen/test/Model/GetFilesResponseTest.php
+++ b/src/gen/test/Model/GetFilesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFolderResponseTest.php b/src/gen/test/Model/GetFolderResponseTest.php
index 924c96eefa..93ae58ec15 100644
--- a/src/gen/test/Model/GetFolderResponseTest.php
+++ b/src/gen/test/Model/GetFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetFoldersResponseTest.php b/src/gen/test/Model/GetFoldersResponseTest.php
index c8e6974431..cddaf4a1b2 100644
--- a/src/gen/test/Model/GetFoldersResponseTest.php
+++ b/src/gen/test/Model/GetFoldersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompaniesResponseTest.php b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
index 0e338d12a4..6d2d762b1c 100644
--- a/src/gen/test/Model/GetHrisCompaniesResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompaniesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisCompanyResponseTest.php b/src/gen/test/Model/GetHrisCompanyResponseTest.php
index 75b6b9efb4..f3f807dd4d 100644
--- a/src/gen/test/Model/GetHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/GetHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobResponseTest.php b/src/gen/test/Model/GetHrisJobResponseTest.php
index 4c4c65d721..323902d464 100644
--- a/src/gen/test/Model/GetHrisJobResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetHrisJobsResponseTest.php b/src/gen/test/Model/GetHrisJobsResponseTest.php
index adb0d73c2a..13a0a41721 100644
--- a/src/gen/test/Model/GetHrisJobsResponseTest.php
+++ b/src/gen/test/Model/GetHrisJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemResponseTest.php b/src/gen/test/Model/GetInvoiceItemResponseTest.php
index 60367cde7f..c9f9aec6e1 100644
--- a/src/gen/test/Model/GetInvoiceItemResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceItemsResponseTest.php b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
index 04838be7af..316d0bc3e5 100644
--- a/src/gen/test/Model/GetInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoiceResponseTest.php b/src/gen/test/Model/GetInvoiceResponseTest.php
index 623072e4a3..553b055322 100644
--- a/src/gen/test/Model/GetInvoiceResponseTest.php
+++ b/src/gen/test/Model/GetInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetInvoicesResponseTest.php b/src/gen/test/Model/GetInvoicesResponseTest.php
index d4a3a6ede1..7e324b4eb1 100644
--- a/src/gen/test/Model/GetInvoicesResponseTest.php
+++ b/src/gen/test/Model/GetInvoicesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemResponseTest.php b/src/gen/test/Model/GetItemResponseTest.php
index 47b99fc8d0..156008ac89 100644
--- a/src/gen/test/Model/GetItemResponseTest.php
+++ b/src/gen/test/Model/GetItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetItemsResponseTest.php b/src/gen/test/Model/GetItemsResponseTest.php
index 12e2a45cce..c7c5025d7a 100644
--- a/src/gen/test/Model/GetItemsResponseTest.php
+++ b/src/gen/test/Model/GetItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobResponseTest.php b/src/gen/test/Model/GetJobResponseTest.php
index 2843b2c93b..5e40130333 100644
--- a/src/gen/test/Model/GetJobResponseTest.php
+++ b/src/gen/test/Model/GetJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJobsResponseTest.php b/src/gen/test/Model/GetJobsResponseTest.php
index 64bc8d39f9..434b6cc994 100644
--- a/src/gen/test/Model/GetJobsResponseTest.php
+++ b/src/gen/test/Model/GetJobsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntriesResponseTest.php b/src/gen/test/Model/GetJournalEntriesResponseTest.php
index 56ecf2be3d..b8967af195 100644
--- a/src/gen/test/Model/GetJournalEntriesResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntriesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetJournalEntryResponseTest.php b/src/gen/test/Model/GetJournalEntryResponseTest.php
index 848e109145..bd0d162031 100644
--- a/src/gen/test/Model/GetJournalEntryResponseTest.php
+++ b/src/gen/test/Model/GetJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadResponseTest.php b/src/gen/test/Model/GetLeadResponseTest.php
index 3e6cebc245..82bd4c73d0 100644
--- a/src/gen/test/Model/GetLeadResponseTest.php
+++ b/src/gen/test/Model/GetLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLeadsResponseTest.php b/src/gen/test/Model/GetLeadsResponseTest.php
index 393a3588ed..3d33fed062 100644
--- a/src/gen/test/Model/GetLeadsResponseTest.php
+++ b/src/gen/test/Model/GetLeadsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountResponseTest.php b/src/gen/test/Model/GetLedgerAccountResponseTest.php
index 6a8abcdccb..3f50514ed5 100644
--- a/src/gen/test/Model/GetLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLedgerAccountsResponseTest.php b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
index 2c474c50dd..747d2a8a2a 100644
--- a/src/gen/test/Model/GetLedgerAccountsResponseTest.php
+++ b/src/gen/test/Model/GetLedgerAccountsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationResponseTest.php b/src/gen/test/Model/GetLocationResponseTest.php
index ee73bfd10c..216ef35cd3 100644
--- a/src/gen/test/Model/GetLocationResponseTest.php
+++ b/src/gen/test/Model/GetLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLocationsResponseTest.php b/src/gen/test/Model/GetLocationsResponseTest.php
index f09dc72c86..01fae4ca63 100644
--- a/src/gen/test/Model/GetLocationsResponseTest.php
+++ b/src/gen/test/Model/GetLocationsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetLogsResponseTest.php b/src/gen/test/Model/GetLogsResponseTest.php
index f937787f09..92eaca40b2 100644
--- a/src/gen/test/Model/GetLogsResponseTest.php
+++ b/src/gen/test/Model/GetLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantResponseTest.php b/src/gen/test/Model/GetMerchantResponseTest.php
index 6d68118848..916a5ea6ef 100644
--- a/src/gen/test/Model/GetMerchantResponseTest.php
+++ b/src/gen/test/Model/GetMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMerchantsResponseTest.php b/src/gen/test/Model/GetMerchantsResponseTest.php
index 002321cb96..45468ab9bc 100644
--- a/src/gen/test/Model/GetMerchantsResponseTest.php
+++ b/src/gen/test/Model/GetMerchantsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessageResponseTest.php b/src/gen/test/Model/GetMessageResponseTest.php
index 9af0418fc2..8ccf8b9c26 100644
--- a/src/gen/test/Model/GetMessageResponseTest.php
+++ b/src/gen/test/Model/GetMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetMessagesResponseTest.php b/src/gen/test/Model/GetMessagesResponseTest.php
index 8d98b7798d..6b5b70a2d7 100644
--- a/src/gen/test/Model/GetMessagesResponseTest.php
+++ b/src/gen/test/Model/GetMessagesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupResponseTest.php b/src/gen/test/Model/GetModifierGroupResponseTest.php
index 399f9a9036..86558ce54e 100644
--- a/src/gen/test/Model/GetModifierGroupResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierGroupsResponseTest.php b/src/gen/test/Model/GetModifierGroupsResponseTest.php
index eabe79148b..7dab8458f0 100644
--- a/src/gen/test/Model/GetModifierGroupsResponseTest.php
+++ b/src/gen/test/Model/GetModifierGroupsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifierResponseTest.php b/src/gen/test/Model/GetModifierResponseTest.php
index 998bff8c5f..a914bf4acc 100644
--- a/src/gen/test/Model/GetModifierResponseTest.php
+++ b/src/gen/test/Model/GetModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetModifiersResponseTest.php b/src/gen/test/Model/GetModifiersResponseTest.php
index 9670fbb363..bf04502699 100644
--- a/src/gen/test/Model/GetModifiersResponseTest.php
+++ b/src/gen/test/Model/GetModifiersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNoteResponseTest.php b/src/gen/test/Model/GetNoteResponseTest.php
index f31fd0a7b4..e06098fd63 100644
--- a/src/gen/test/Model/GetNoteResponseTest.php
+++ b/src/gen/test/Model/GetNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetNotesResponseTest.php b/src/gen/test/Model/GetNotesResponseTest.php
index 28c224990c..24945de679 100644
--- a/src/gen/test/Model/GetNotesResponseTest.php
+++ b/src/gen/test/Model/GetNotesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunitiesResponseTest.php b/src/gen/test/Model/GetOpportunitiesResponseTest.php
index 8be0fa2036..ffc9c7518f 100644
--- a/src/gen/test/Model/GetOpportunitiesResponseTest.php
+++ b/src/gen/test/Model/GetOpportunitiesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOpportunityResponseTest.php b/src/gen/test/Model/GetOpportunityResponseTest.php
index 3e309f39af..eeeb613543 100644
--- a/src/gen/test/Model/GetOpportunityResponseTest.php
+++ b/src/gen/test/Model/GetOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderResponseTest.php b/src/gen/test/Model/GetOrderResponseTest.php
index fcadcf467e..d85d67cc1f 100644
--- a/src/gen/test/Model/GetOrderResponseTest.php
+++ b/src/gen/test/Model/GetOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypeResponseTest.php b/src/gen/test/Model/GetOrderTypeResponseTest.php
index 50df53534a..cad3b12241 100644
--- a/src/gen/test/Model/GetOrderTypeResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrderTypesResponseTest.php b/src/gen/test/Model/GetOrderTypesResponseTest.php
index 3ba5905993..0fd2a3b66a 100644
--- a/src/gen/test/Model/GetOrderTypesResponseTest.php
+++ b/src/gen/test/Model/GetOrderTypesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetOrdersResponseTest.php b/src/gen/test/Model/GetOrdersResponseTest.php
index 07ac605df5..6b0cbec234 100644
--- a/src/gen/test/Model/GetOrdersResponseTest.php
+++ b/src/gen/test/Model/GetOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentResponseTest.php b/src/gen/test/Model/GetPaymentResponseTest.php
index 662df9efdc..febf51a41d 100644
--- a/src/gen/test/Model/GetPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPaymentsResponseTest.php b/src/gen/test/Model/GetPaymentsResponseTest.php
index 5c1b0c57e3..da06188b49 100644
--- a/src/gen/test/Model/GetPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollResponseTest.php b/src/gen/test/Model/GetPayrollResponseTest.php
index 657e2ba9fe..45b5c1510b 100644
--- a/src/gen/test/Model/GetPayrollResponseTest.php
+++ b/src/gen/test/Model/GetPayrollResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPayrollsResponseTest.php b/src/gen/test/Model/GetPayrollsResponseTest.php
index a116fb5593..44dc3a8cd7 100644
--- a/src/gen/test/Model/GetPayrollsResponseTest.php
+++ b/src/gen/test/Model/GetPayrollsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelineResponseTest.php b/src/gen/test/Model/GetPipelineResponseTest.php
index 7446219f4b..f39fe9159b 100644
--- a/src/gen/test/Model/GetPipelineResponseTest.php
+++ b/src/gen/test/Model/GetPipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPipelinesResponseTest.php b/src/gen/test/Model/GetPipelinesResponseTest.php
index 106ecd6054..2ca3694ef5 100644
--- a/src/gen/test/Model/GetPipelinesResponseTest.php
+++ b/src/gen/test/Model/GetPipelinesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentResponseTest.php b/src/gen/test/Model/GetPosPaymentResponseTest.php
index 50960f26ba..6c019685cc 100644
--- a/src/gen/test/Model/GetPosPaymentResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPosPaymentsResponseTest.php b/src/gen/test/Model/GetPosPaymentsResponseTest.php
index 9cbd471236..ee09480dd8 100644
--- a/src/gen/test/Model/GetPosPaymentsResponseTest.php
+++ b/src/gen/test/Model/GetPosPaymentsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductResponseTest.php b/src/gen/test/Model/GetProductResponseTest.php
index 34e144a1f1..8419dc557f 100644
--- a/src/gen/test/Model/GetProductResponseTest.php
+++ b/src/gen/test/Model/GetProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProductsResponseTest.php b/src/gen/test/Model/GetProductsResponseTest.php
index b692ff172b..1f13cc04f1 100644
--- a/src/gen/test/Model/GetProductsResponseTest.php
+++ b/src/gen/test/Model/GetProductsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetProfitAndLossResponseTest.php b/src/gen/test/Model/GetProfitAndLossResponseTest.php
index fe6985a587..788c52df39 100644
--- a/src/gen/test/Model/GetProfitAndLossResponseTest.php
+++ b/src/gen/test/Model/GetProfitAndLossResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrderResponseTest.php b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
index 1b854f1529..820f9fb3f0 100644
--- a/src/gen/test/Model/GetPurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
index 45e45ddb8a..30d12224e4 100644
--- a/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
+++ b/src/gen/test/Model/GetPurchaseOrdersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceExampleResponseTest.php b/src/gen/test/Model/GetResourceExampleResponseTest.php
index 98154907b0..5781e608e6 100644
--- a/src/gen/test/Model/GetResourceExampleResponseTest.php
+++ b/src/gen/test/Model/GetResourceExampleResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetResourceSchemaResponseTest.php b/src/gen/test/Model/GetResourceSchemaResponseTest.php
index 27d07a3467..1f0030bd68 100644
--- a/src/gen/test/Model/GetResourceSchemaResponseTest.php
+++ b/src/gen/test/Model/GetResourceSchemaResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinkResponseTest.php b/src/gen/test/Model/GetSharedLinkResponseTest.php
index 370ad9d3c2..1978bb6b64 100644
--- a/src/gen/test/Model/GetSharedLinkResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSharedLinksResponseTest.php b/src/gen/test/Model/GetSharedLinksResponseTest.php
index 2189a93c45..5811cd3e00 100644
--- a/src/gen/test/Model/GetSharedLinksResponseTest.php
+++ b/src/gen/test/Model/GetSharedLinksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoreResponseTest.php b/src/gen/test/Model/GetStoreResponseTest.php
index 1a204b94c5..40a9b4757b 100644
--- a/src/gen/test/Model/GetStoreResponseTest.php
+++ b/src/gen/test/Model/GetStoreResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetStoresResponseTest.php b/src/gen/test/Model/GetStoresResponseTest.php
index 482a7147bf..53d0d4ba4c 100644
--- a/src/gen/test/Model/GetStoresResponseTest.php
+++ b/src/gen/test/Model/GetStoresResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSubsidiariesResponseTest.php b/src/gen/test/Model/GetSubsidiariesResponseTest.php
index 33137b899d..d26dd26431 100644
--- a/src/gen/test/Model/GetSubsidiariesResponseTest.php
+++ b/src/gen/test/Model/GetSubsidiariesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSubsidiaryResponseTest.php b/src/gen/test/Model/GetSubsidiaryResponseTest.php
index 0a4acb8ca0..aaf2c5595f 100644
--- a/src/gen/test/Model/GetSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/GetSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSupplierResponseTest.php b/src/gen/test/Model/GetSupplierResponseTest.php
index 12f829ac5c..62c1ad7e3e 100644
--- a/src/gen/test/Model/GetSupplierResponseTest.php
+++ b/src/gen/test/Model/GetSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetSuppliersResponseTest.php b/src/gen/test/Model/GetSuppliersResponseTest.php
index ca658c8959..650aad91ef 100644
--- a/src/gen/test/Model/GetSuppliersResponseTest.php
+++ b/src/gen/test/Model/GetSuppliersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRateResponseTest.php b/src/gen/test/Model/GetTaxRateResponseTest.php
index 27593929f1..50f4f50e1d 100644
--- a/src/gen/test/Model/GetTaxRateResponseTest.php
+++ b/src/gen/test/Model/GetTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTaxRatesResponseTest.php b/src/gen/test/Model/GetTaxRatesResponseTest.php
index a1b211b1f5..4a56dc0cbf 100644
--- a/src/gen/test/Model/GetTaxRatesResponseTest.php
+++ b/src/gen/test/Model/GetTaxRatesResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTenderResponseTest.php b/src/gen/test/Model/GetTenderResponseTest.php
index 8ee2f0ba8b..c9f7713c9f 100644
--- a/src/gen/test/Model/GetTenderResponseTest.php
+++ b/src/gen/test/Model/GetTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTendersResponseTest.php b/src/gen/test/Model/GetTendersResponseTest.php
index 55c9272363..c8d80dd11c 100644
--- a/src/gen/test/Model/GetTendersResponseTest.php
+++ b/src/gen/test/Model/GetTendersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketResponseTest.php b/src/gen/test/Model/GetTicketResponseTest.php
index 519073e5b7..1a8498f092 100644
--- a/src/gen/test/Model/GetTicketResponseTest.php
+++ b/src/gen/test/Model/GetTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTicketsResponseTest.php b/src/gen/test/Model/GetTicketsResponseTest.php
index 8fdbac3b53..0f019e1af4 100644
--- a/src/gen/test/Model/GetTicketsResponseTest.php
+++ b/src/gen/test/Model/GetTicketsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestResponseTest.php b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
index fbcd138f4c..79aabfcc91 100644
--- a/src/gen/test/Model/GetTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
index 2366a53007..13f9eb56d5 100644
--- a/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
+++ b/src/gen/test/Model/GetTimeOffRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUploadSessionResponseTest.php b/src/gen/test/Model/GetUploadSessionResponseTest.php
index bddd2789f8..3878d5a53b 100644
--- a/src/gen/test/Model/GetUploadSessionResponseTest.php
+++ b/src/gen/test/Model/GetUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUserResponseTest.php b/src/gen/test/Model/GetUserResponseTest.php
index 4f45487dd1..d1310aa85c 100644
--- a/src/gen/test/Model/GetUserResponseTest.php
+++ b/src/gen/test/Model/GetUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetUsersResponseTest.php b/src/gen/test/Model/GetUsersResponseTest.php
index 9a8414b6b0..b1cecab019 100644
--- a/src/gen/test/Model/GetUsersResponseTest.php
+++ b/src/gen/test/Model/GetUsersResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
index ef8086748f..50e524a17e 100644
--- a/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
+++ b/src/gen/test/Model/GetWebhookEventLogsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhookResponseTest.php b/src/gen/test/Model/GetWebhookResponseTest.php
index 6313aef8ba..bf0b607975 100644
--- a/src/gen/test/Model/GetWebhookResponseTest.php
+++ b/src/gen/test/Model/GetWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/GetWebhooksResponseTest.php b/src/gen/test/Model/GetWebhooksResponseTest.php
index 89a53fd836..d0603ee0e7 100644
--- a/src/gen/test/Model/GetWebhooksResponseTest.php
+++ b/src/gen/test/Model/GetWebhooksResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisCompanyTest.php b/src/gen/test/Model/HrisCompanyTest.php
index 0ada0a155a..3ce376dbc3 100644
--- a/src/gen/test/Model/HrisCompanyTest.php
+++ b/src/gen/test/Model/HrisCompanyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisEventTypeTest.php b/src/gen/test/Model/HrisEventTypeTest.php
index 59afb241c6..efded02f33 100644
--- a/src/gen/test/Model/HrisEventTypeTest.php
+++ b/src/gen/test/Model/HrisEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobLocationTest.php b/src/gen/test/Model/HrisJobLocationTest.php
index 73afd9b0d7..439aa67aa8 100644
--- a/src/gen/test/Model/HrisJobLocationTest.php
+++ b/src/gen/test/Model/HrisJobLocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobTest.php b/src/gen/test/Model/HrisJobTest.php
index 400e8b936a..1a1faa76fc 100644
--- a/src/gen/test/Model/HrisJobTest.php
+++ b/src/gen/test/Model/HrisJobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/HrisJobsTest.php b/src/gen/test/Model/HrisJobsTest.php
index a1ecf575aa..3409cc5be6 100644
--- a/src/gen/test/Model/HrisJobsTest.php
+++ b/src/gen/test/Model/HrisJobsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IntegrationStateTest.php b/src/gen/test/Model/IntegrationStateTest.php
index ac4ea782ed..fddb759378 100644
--- a/src/gen/test/Model/IntegrationStateTest.php
+++ b/src/gen/test/Model/IntegrationStateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
index 8feebb95dd..7aaf0eb743 100644
--- a/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
+++ b/src/gen/test/Model/InvoiceItemSalesDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemTest.php b/src/gen/test/Model/InvoiceItemTest.php
index fca33c7eab..af3ecc0e66 100644
--- a/src/gen/test/Model/InvoiceItemTest.php
+++ b/src/gen/test/Model/InvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceItemsFilterTest.php b/src/gen/test/Model/InvoiceItemsFilterTest.php
index 98d1c0979e..f86724daba 100644
--- a/src/gen/test/Model/InvoiceItemsFilterTest.php
+++ b/src/gen/test/Model/InvoiceItemsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceLineItemTest.php b/src/gen/test/Model/InvoiceLineItemTest.php
index 238a15a331..0c1bd16834 100644
--- a/src/gen/test/Model/InvoiceLineItemTest.php
+++ b/src/gen/test/Model/InvoiceLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceResponseTest.php b/src/gen/test/Model/InvoiceResponseTest.php
index 7d6638e94e..afc044517c 100644
--- a/src/gen/test/Model/InvoiceResponseTest.php
+++ b/src/gen/test/Model/InvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoiceTest.php b/src/gen/test/Model/InvoiceTest.php
index c77e806e2d..6b1cc5c72e 100644
--- a/src/gen/test/Model/InvoiceTest.php
+++ b/src/gen/test/Model/InvoiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesFilterTest.php b/src/gen/test/Model/InvoicesFilterTest.php
index 3024022139..dd30e04779 100644
--- a/src/gen/test/Model/InvoicesFilterTest.php
+++ b/src/gen/test/Model/InvoicesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/InvoicesSortTest.php b/src/gen/test/Model/InvoicesSortTest.php
index c5ce7dce93..08c39214c2 100644
--- a/src/gen/test/Model/InvoicesSortTest.php
+++ b/src/gen/test/Model/InvoicesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssueTrackingEventTypeTest.php b/src/gen/test/Model/IssueTrackingEventTypeTest.php
index 2113de8309..b598b01088 100644
--- a/src/gen/test/Model/IssueTrackingEventTypeTest.php
+++ b/src/gen/test/Model/IssueTrackingEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/IssuesFilterTest.php b/src/gen/test/Model/IssuesFilterTest.php
index 4dacd5192b..c87095fbbd 100644
--- a/src/gen/test/Model/IssuesFilterTest.php
+++ b/src/gen/test/Model/IssuesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ItemTest.php b/src/gen/test/Model/ItemTest.php
index 4a05bc265d..c7a9e794c0 100644
--- a/src/gen/test/Model/ItemTest.php
+++ b/src/gen/test/Model/ItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobLinksTest.php b/src/gen/test/Model/JobLinksTest.php
index 4ee648ff7c..68ebf3c912 100644
--- a/src/gen/test/Model/JobLinksTest.php
+++ b/src/gen/test/Model/JobLinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobSalaryTest.php b/src/gen/test/Model/JobSalaryTest.php
index a5d2576d09..5d78800d46 100644
--- a/src/gen/test/Model/JobSalaryTest.php
+++ b/src/gen/test/Model/JobSalaryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobStatusTest.php b/src/gen/test/Model/JobStatusTest.php
index 25e9866835..b1fd6a9b11 100644
--- a/src/gen/test/Model/JobStatusTest.php
+++ b/src/gen/test/Model/JobStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JobTest.php b/src/gen/test/Model/JobTest.php
index 2926742d47..2f4339f7ba 100644
--- a/src/gen/test/Model/JobTest.php
+++ b/src/gen/test/Model/JobTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesFilterTest.php b/src/gen/test/Model/JournalEntriesFilterTest.php
index a1f9035db8..70c3ccf8a8 100644
--- a/src/gen/test/Model/JournalEntriesFilterTest.php
+++ b/src/gen/test/Model/JournalEntriesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntriesSortTest.php b/src/gen/test/Model/JournalEntriesSortTest.php
index e6798b2969..2b84b3c176 100644
--- a/src/gen/test/Model/JournalEntriesSortTest.php
+++ b/src/gen/test/Model/JournalEntriesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryLineItemTest.php b/src/gen/test/Model/JournalEntryLineItemTest.php
index 3beb8dab21..88ebc6e46f 100644
--- a/src/gen/test/Model/JournalEntryLineItemTest.php
+++ b/src/gen/test/Model/JournalEntryLineItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/JournalEntryTest.php b/src/gen/test/Model/JournalEntryTest.php
index 768b49ebc3..94146b22c4 100644
--- a/src/gen/test/Model/JournalEntryTest.php
+++ b/src/gen/test/Model/JournalEntryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadEventTypeTest.php b/src/gen/test/Model/LeadEventTypeTest.php
index ceb589140a..94335f9cd1 100644
--- a/src/gen/test/Model/LeadEventTypeTest.php
+++ b/src/gen/test/Model/LeadEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadTest.php b/src/gen/test/Model/LeadTest.php
index 15c81a4a41..567b59f7a9 100644
--- a/src/gen/test/Model/LeadTest.php
+++ b/src/gen/test/Model/LeadTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsFilterTest.php b/src/gen/test/Model/LeadsFilterTest.php
index e84e2e3dbb..6d7aae6cba 100644
--- a/src/gen/test/Model/LeadsFilterTest.php
+++ b/src/gen/test/Model/LeadsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LeadsSortTest.php b/src/gen/test/Model/LeadsSortTest.php
index 5085a6cd9c..a24c9830a7 100644
--- a/src/gen/test/Model/LeadsSortTest.php
+++ b/src/gen/test/Model/LeadsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountCategoriesTest.php b/src/gen/test/Model/LedgerAccountCategoriesTest.php
index 1ebf66bbf5..ce451fe347 100644
--- a/src/gen/test/Model/LedgerAccountCategoriesTest.php
+++ b/src/gen/test/Model/LedgerAccountCategoriesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountParentAccountTest.php b/src/gen/test/Model/LedgerAccountParentAccountTest.php
index f479eda18b..e40d4f1e02 100644
--- a/src/gen/test/Model/LedgerAccountParentAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountParentAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountTest.php b/src/gen/test/Model/LedgerAccountTest.php
index b3fd719245..d6bd64b587 100644
--- a/src/gen/test/Model/LedgerAccountTest.php
+++ b/src/gen/test/Model/LedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsFilterTest.php b/src/gen/test/Model/LedgerAccountsFilterTest.php
index 08e0fa6565..32d7723e2f 100644
--- a/src/gen/test/Model/LedgerAccountsFilterTest.php
+++ b/src/gen/test/Model/LedgerAccountsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LedgerAccountsSortTest.php b/src/gen/test/Model/LedgerAccountsSortTest.php
index 22942ea26c..ad99d68099 100644
--- a/src/gen/test/Model/LedgerAccountsSortTest.php
+++ b/src/gen/test/Model/LedgerAccountsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedConnectorResourceTest.php b/src/gen/test/Model/LinkedConnectorResourceTest.php
index e4a0664970..7fff8e48a0 100644
--- a/src/gen/test/Model/LinkedConnectorResourceTest.php
+++ b/src/gen/test/Model/LinkedConnectorResourceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedCustomerTest.php b/src/gen/test/Model/LinkedCustomerTest.php
index ff092d92d5..5b65cd025d 100644
--- a/src/gen/test/Model/LinkedCustomerTest.php
+++ b/src/gen/test/Model/LinkedCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceCustomerTest.php b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
index 6c3503e5fc..f572f60b5b 100644
--- a/src/gen/test/Model/LinkedEcommerceCustomerTest.php
+++ b/src/gen/test/Model/LinkedEcommerceCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedEcommerceOrderTest.php b/src/gen/test/Model/LinkedEcommerceOrderTest.php
index 37e3644fc2..a6fda954d4 100644
--- a/src/gen/test/Model/LinkedEcommerceOrderTest.php
+++ b/src/gen/test/Model/LinkedEcommerceOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedFolderTest.php b/src/gen/test/Model/LinkedFolderTest.php
index ccf0e7eecf..0d7041c6b7 100644
--- a/src/gen/test/Model/LinkedFolderTest.php
+++ b/src/gen/test/Model/LinkedFolderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedInvoiceItemTest.php b/src/gen/test/Model/LinkedInvoiceItemTest.php
index df527136ca..610e187d74 100644
--- a/src/gen/test/Model/LinkedInvoiceItemTest.php
+++ b/src/gen/test/Model/LinkedInvoiceItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedLedgerAccountTest.php b/src/gen/test/Model/LinkedLedgerAccountTest.php
index f4bd283e35..45016bd05e 100644
--- a/src/gen/test/Model/LinkedLedgerAccountTest.php
+++ b/src/gen/test/Model/LinkedLedgerAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedParentCustomerTest.php b/src/gen/test/Model/LinkedParentCustomerTest.php
index 30a88478c3..14f6a2e1e9 100644
--- a/src/gen/test/Model/LinkedParentCustomerTest.php
+++ b/src/gen/test/Model/LinkedParentCustomerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedSupplierTest.php b/src/gen/test/Model/LinkedSupplierTest.php
index bcdea080e4..913b080aff 100644
--- a/src/gen/test/Model/LinkedSupplierTest.php
+++ b/src/gen/test/Model/LinkedSupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTaxRateTest.php b/src/gen/test/Model/LinkedTaxRateTest.php
index ab7dea2edd..107d56c344 100644
--- a/src/gen/test/Model/LinkedTaxRateTest.php
+++ b/src/gen/test/Model/LinkedTaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinkedTrackingCategoryTest.php b/src/gen/test/Model/LinkedTrackingCategoryTest.php
index a3808722d6..6cef48182f 100644
--- a/src/gen/test/Model/LinkedTrackingCategoryTest.php
+++ b/src/gen/test/Model/LinkedTrackingCategoryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LinksTest.php b/src/gen/test/Model/LinksTest.php
index 4a7fcaa910..b2890aa3a2 100644
--- a/src/gen/test/Model/LinksTest.php
+++ b/src/gen/test/Model/LinksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LocationTest.php b/src/gen/test/Model/LocationTest.php
index 703c9d551c..b2062b4b32 100644
--- a/src/gen/test/Model/LocationTest.php
+++ b/src/gen/test/Model/LocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogOperationTest.php b/src/gen/test/Model/LogOperationTest.php
index d0675fc211..6785050536 100644
--- a/src/gen/test/Model/LogOperationTest.php
+++ b/src/gen/test/Model/LogOperationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogServiceTest.php b/src/gen/test/Model/LogServiceTest.php
index a0b4cf53b1..6e3ed94847 100644
--- a/src/gen/test/Model/LogServiceTest.php
+++ b/src/gen/test/Model/LogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogTest.php b/src/gen/test/Model/LogTest.php
index f0d42672ef..f7def433a6 100644
--- a/src/gen/test/Model/LogTest.php
+++ b/src/gen/test/Model/LogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/LogsFilterTest.php b/src/gen/test/Model/LogsFilterTest.php
index 1c1d48a6d2..9e5e315501 100644
--- a/src/gen/test/Model/LogsFilterTest.php
+++ b/src/gen/test/Model/LogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MerchantTest.php b/src/gen/test/Model/MerchantTest.php
index b3b65d8b96..ddccfc5a39 100644
--- a/src/gen/test/Model/MerchantTest.php
+++ b/src/gen/test/Model/MerchantTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MessageTest.php b/src/gen/test/Model/MessageTest.php
index c90ef80b02..f34bdb502b 100644
--- a/src/gen/test/Model/MessageTest.php
+++ b/src/gen/test/Model/MessageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaCursorsTest.php b/src/gen/test/Model/MetaCursorsTest.php
index ce1d171905..aa70d81bf5 100644
--- a/src/gen/test/Model/MetaCursorsTest.php
+++ b/src/gen/test/Model/MetaCursorsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/MetaTest.php b/src/gen/test/Model/MetaTest.php
index c27e63c7d9..b2f9f2b036 100644
--- a/src/gen/test/Model/MetaTest.php
+++ b/src/gen/test/Model/MetaTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupFilterTest.php b/src/gen/test/Model/ModifierGroupFilterTest.php
index 6883d85a27..7917ff27b3 100644
--- a/src/gen/test/Model/ModifierGroupFilterTest.php
+++ b/src/gen/test/Model/ModifierGroupFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierGroupTest.php b/src/gen/test/Model/ModifierGroupTest.php
index 9de0dc00ed..b56b218556 100644
--- a/src/gen/test/Model/ModifierGroupTest.php
+++ b/src/gen/test/Model/ModifierGroupTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ModifierTest.php b/src/gen/test/Model/ModifierTest.php
index bf76e09757..66721bce64 100644
--- a/src/gen/test/Model/ModifierTest.php
+++ b/src/gen/test/Model/ModifierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotFoundResponseTest.php b/src/gen/test/Model/NotFoundResponseTest.php
index ee944bd920..1f576c485e 100644
--- a/src/gen/test/Model/NotFoundResponseTest.php
+++ b/src/gen/test/Model/NotFoundResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NotImplementedResponseTest.php b/src/gen/test/Model/NotImplementedResponseTest.php
index 72795de3e9..7bd568f4c6 100644
--- a/src/gen/test/Model/NotImplementedResponseTest.php
+++ b/src/gen/test/Model/NotImplementedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/NoteTest.php b/src/gen/test/Model/NoteTest.php
index 75dfc43d0c..f2a582c406 100644
--- a/src/gen/test/Model/NoteTest.php
+++ b/src/gen/test/Model/NoteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OAuthGrantTypeTest.php b/src/gen/test/Model/OAuthGrantTypeTest.php
index 0cfc96fa00..c7d9752ce3 100644
--- a/src/gen/test/Model/OAuthGrantTypeTest.php
+++ b/src/gen/test/Model/OAuthGrantTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OfferTest.php b/src/gen/test/Model/OfferTest.php
index 2037cc6da7..e0165a6032 100644
--- a/src/gen/test/Model/OfferTest.php
+++ b/src/gen/test/Model/OfferTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesFilterTest.php b/src/gen/test/Model/OpportunitiesFilterTest.php
index dda75f6a3c..d6a087e06f 100644
--- a/src/gen/test/Model/OpportunitiesFilterTest.php
+++ b/src/gen/test/Model/OpportunitiesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunitiesSortTest.php b/src/gen/test/Model/OpportunitiesSortTest.php
index e447a9f783..8c4694a3cd 100644
--- a/src/gen/test/Model/OpportunitiesSortTest.php
+++ b/src/gen/test/Model/OpportunitiesSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OpportunityTest.php b/src/gen/test/Model/OpportunityTest.php
index f4ca869f24..3dee68aacc 100644
--- a/src/gen/test/Model/OpportunityTest.php
+++ b/src/gen/test/Model/OpportunityTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderCustomersTest.php b/src/gen/test/Model/OrderCustomersTest.php
index 16b0256ca7..17a0f7f508 100644
--- a/src/gen/test/Model/OrderCustomersTest.php
+++ b/src/gen/test/Model/OrderCustomersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderDiscountsTest.php b/src/gen/test/Model/OrderDiscountsTest.php
index 1906ed61f2..b562d88cb7 100644
--- a/src/gen/test/Model/OrderDiscountsTest.php
+++ b/src/gen/test/Model/OrderDiscountsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderFulfillmentsTest.php b/src/gen/test/Model/OrderFulfillmentsTest.php
index d92c4e9afc..4e23bb580a 100644
--- a/src/gen/test/Model/OrderFulfillmentsTest.php
+++ b/src/gen/test/Model/OrderFulfillmentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderLineItemsTest.php b/src/gen/test/Model/OrderLineItemsTest.php
index aa0727ed74..3112de4ed7 100644
--- a/src/gen/test/Model/OrderLineItemsTest.php
+++ b/src/gen/test/Model/OrderLineItemsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPaymentsTest.php b/src/gen/test/Model/OrderPaymentsTest.php
index 5a2be8eade..d7380a8b22 100644
--- a/src/gen/test/Model/OrderPaymentsTest.php
+++ b/src/gen/test/Model/OrderPaymentsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
index 16f495e0fd..e69626b805 100644
--- a/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsCurbsidePickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
index 5545a57520..0fdca4b6c9 100644
--- a/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsRecipientTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderPickupDetailsTest.php b/src/gen/test/Model/OrderPickupDetailsTest.php
index 7e59371918..1550fd96a4 100644
--- a/src/gen/test/Model/OrderPickupDetailsTest.php
+++ b/src/gen/test/Model/OrderPickupDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderRefundsTest.php b/src/gen/test/Model/OrderRefundsTest.php
index c229121358..9706e985ba 100644
--- a/src/gen/test/Model/OrderRefundsTest.php
+++ b/src/gen/test/Model/OrderRefundsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTendersTest.php b/src/gen/test/Model/OrderTendersTest.php
index b5334c4b4a..f1901ab46f 100644
--- a/src/gen/test/Model/OrderTendersTest.php
+++ b/src/gen/test/Model/OrderTendersTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTest.php b/src/gen/test/Model/OrderTest.php
index 2390107ae2..420f2ee259 100644
--- a/src/gen/test/Model/OrderTest.php
+++ b/src/gen/test/Model/OrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OrderTypeTest.php b/src/gen/test/Model/OrderTypeTest.php
index 4ebea1dd38..8ebb0b8b6e 100644
--- a/src/gen/test/Model/OrderTypeTest.php
+++ b/src/gen/test/Model/OrderTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/OwnerTest.php b/src/gen/test/Model/OwnerTest.php
index f905e5c28f..2cd524f482 100644
--- a/src/gen/test/Model/OwnerTest.php
+++ b/src/gen/test/Model/OwnerTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaginationCoverageTest.php b/src/gen/test/Model/PaginationCoverageTest.php
index 2376170c7e..b31e30d749 100644
--- a/src/gen/test/Model/PaginationCoverageTest.php
+++ b/src/gen/test/Model/PaginationCoverageTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PassThroughQueryTest.php b/src/gen/test/Model/PassThroughQueryTest.php
index a9facbfb44..822abdac6a 100644
--- a/src/gen/test/Model/PassThroughQueryTest.php
+++ b/src/gen/test/Model/PassThroughQueryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentAllocationsTest.php b/src/gen/test/Model/PaymentAllocationsTest.php
index 0b6d8be062..cbc0f2893e 100644
--- a/src/gen/test/Model/PaymentAllocationsTest.php
+++ b/src/gen/test/Model/PaymentAllocationsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentCardTest.php b/src/gen/test/Model/PaymentCardTest.php
index e3b4f9f1bb..0dd53accd0 100644
--- a/src/gen/test/Model/PaymentCardTest.php
+++ b/src/gen/test/Model/PaymentCardTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentFrequencyTest.php b/src/gen/test/Model/PaymentFrequencyTest.php
index 1309764028..f63f6299c4 100644
--- a/src/gen/test/Model/PaymentFrequencyTest.php
+++ b/src/gen/test/Model/PaymentFrequencyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentRequiredResponseTest.php b/src/gen/test/Model/PaymentRequiredResponseTest.php
index 5261e0ed99..4eeac13081 100644
--- a/src/gen/test/Model/PaymentRequiredResponseTest.php
+++ b/src/gen/test/Model/PaymentRequiredResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentTest.php b/src/gen/test/Model/PaymentTest.php
index 6121ad16c0..669439707b 100644
--- a/src/gen/test/Model/PaymentTest.php
+++ b/src/gen/test/Model/PaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentUnitTest.php b/src/gen/test/Model/PaymentUnitTest.php
index 68d869354a..196e35343c 100644
--- a/src/gen/test/Model/PaymentUnitTest.php
+++ b/src/gen/test/Model/PaymentUnitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsFilterTest.php b/src/gen/test/Model/PaymentsFilterTest.php
index 49bc4db628..e95706668e 100644
--- a/src/gen/test/Model/PaymentsFilterTest.php
+++ b/src/gen/test/Model/PaymentsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PaymentsSortTest.php b/src/gen/test/Model/PaymentsSortTest.php
index 6227b11c2e..e99eb78347 100644
--- a/src/gen/test/Model/PaymentsSortTest.php
+++ b/src/gen/test/Model/PaymentsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTest.php b/src/gen/test/Model/PayrollTest.php
index eaac2ee463..5c12613483 100644
--- a/src/gen/test/Model/PayrollTest.php
+++ b/src/gen/test/Model/PayrollTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollTotalsTest.php b/src/gen/test/Model/PayrollTotalsTest.php
index 14238b80ba..f66f38aa09 100644
--- a/src/gen/test/Model/PayrollTotalsTest.php
+++ b/src/gen/test/Model/PayrollTotalsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PayrollsFilterTest.php b/src/gen/test/Model/PayrollsFilterTest.php
index 86dfaf4341..47e8535b5e 100644
--- a/src/gen/test/Model/PayrollsFilterTest.php
+++ b/src/gen/test/Model/PayrollsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PersonTest.php b/src/gen/test/Model/PersonTest.php
index f23ad90793..ac3ae736dc 100644
--- a/src/gen/test/Model/PersonTest.php
+++ b/src/gen/test/Model/PersonTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PhoneNumberTest.php b/src/gen/test/Model/PhoneNumberTest.php
index d0a4dd3262..138a7a68d9 100644
--- a/src/gen/test/Model/PhoneNumberTest.php
+++ b/src/gen/test/Model/PhoneNumberTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineStagesTest.php b/src/gen/test/Model/PipelineStagesTest.php
index 0f3be313c0..84985cad44 100644
--- a/src/gen/test/Model/PipelineStagesTest.php
+++ b/src/gen/test/Model/PipelineStagesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PipelineTest.php b/src/gen/test/Model/PipelineTest.php
index 5f8704f696..75dbde5f8a 100644
--- a/src/gen/test/Model/PipelineTest.php
+++ b/src/gen/test/Model/PipelineTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountAchDetailsTest.php b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
index e7b0ac25e5..ac0148da02 100644
--- a/src/gen/test/Model/PosBankAccountAchDetailsTest.php
+++ b/src/gen/test/Model/PosBankAccountAchDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosBankAccountTest.php b/src/gen/test/Model/PosBankAccountTest.php
index 2332730fd3..2c362b37fb 100644
--- a/src/gen/test/Model/PosBankAccountTest.php
+++ b/src/gen/test/Model/PosBankAccountTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentCardDetailsTest.php b/src/gen/test/Model/PosPaymentCardDetailsTest.php
index 1da75f1374..6992bfdc83 100644
--- a/src/gen/test/Model/PosPaymentCardDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentCardDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentExternalDetailsTest.php b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
index 29fa164fc1..6b48785202 100644
--- a/src/gen/test/Model/PosPaymentExternalDetailsTest.php
+++ b/src/gen/test/Model/PosPaymentExternalDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PosPaymentTest.php b/src/gen/test/Model/PosPaymentTest.php
index db3f06b7a5..27f67f6c7e 100644
--- a/src/gen/test/Model/PosPaymentTest.php
+++ b/src/gen/test/Model/PosPaymentTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PriceTest.php b/src/gen/test/Model/PriceTest.php
index 8f66b470ef..350a061eeb 100644
--- a/src/gen/test/Model/PriceTest.php
+++ b/src/gen/test/Model/PriceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProbationPeriodTest.php b/src/gen/test/Model/ProbationPeriodTest.php
index 0efce76cc0..f5c7ab9a21 100644
--- a/src/gen/test/Model/ProbationPeriodTest.php
+++ b/src/gen/test/Model/ProbationPeriodTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossExpensesTest.php b/src/gen/test/Model/ProfitAndLossExpensesTest.php
index 15ffcba303..087694cd1d 100644
--- a/src/gen/test/Model/ProfitAndLossExpensesTest.php
+++ b/src/gen/test/Model/ProfitAndLossExpensesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossFilterTest.php b/src/gen/test/Model/ProfitAndLossFilterTest.php
index a5af2c05a2..415b82afc8 100644
--- a/src/gen/test/Model/ProfitAndLossFilterTest.php
+++ b/src/gen/test/Model/ProfitAndLossFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
index f8a186ebd0..915cfb378b 100644
--- a/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
+++ b/src/gen/test/Model/ProfitAndLossGrossProfitTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossIncomeTest.php b/src/gen/test/Model/ProfitAndLossIncomeTest.php
index 79931c98f0..039fe0e32f 100644
--- a/src/gen/test/Model/ProfitAndLossIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
index e1dc87913a..b256f6218b 100644
--- a/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
index eccd1a9058..6a7373c400 100644
--- a/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
+++ b/src/gen/test/Model/ProfitAndLossNetOperatingIncomeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossRecordTest.php b/src/gen/test/Model/ProfitAndLossRecordTest.php
index 26b596d264..9a0674ed86 100644
--- a/src/gen/test/Model/ProfitAndLossRecordTest.php
+++ b/src/gen/test/Model/ProfitAndLossRecordTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossSectionTest.php b/src/gen/test/Model/ProfitAndLossSectionTest.php
index 63d86f407f..9341a98fca 100644
--- a/src/gen/test/Model/ProfitAndLossSectionTest.php
+++ b/src/gen/test/Model/ProfitAndLossSectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ProfitAndLossTest.php b/src/gen/test/Model/ProfitAndLossTest.php
index 9406540696..78c3aaf697 100644
--- a/src/gen/test/Model/ProfitAndLossTest.php
+++ b/src/gen/test/Model/ProfitAndLossTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrderTest.php b/src/gen/test/Model/PurchaseOrderTest.php
index 651fefa3a7..854ed2f930 100644
--- a/src/gen/test/Model/PurchaseOrderTest.php
+++ b/src/gen/test/Model/PurchaseOrderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersFilterTest.php b/src/gen/test/Model/PurchaseOrdersFilterTest.php
index e770239ab2..0f1788cd5b 100644
--- a/src/gen/test/Model/PurchaseOrdersFilterTest.php
+++ b/src/gen/test/Model/PurchaseOrdersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/PurchaseOrdersSortTest.php b/src/gen/test/Model/PurchaseOrdersSortTest.php
index dd88e1b737..e92cf73b9b 100644
--- a/src/gen/test/Model/PurchaseOrdersSortTest.php
+++ b/src/gen/test/Model/PurchaseOrdersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestCountAllocationTest.php b/src/gen/test/Model/RequestCountAllocationTest.php
index 425863f08f..be1e7f876f 100644
--- a/src/gen/test/Model/RequestCountAllocationTest.php
+++ b/src/gen/test/Model/RequestCountAllocationTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/RequestRateTest.php b/src/gen/test/Model/RequestRateTest.php
index 37f577f3ca..f45dd7ff78 100644
--- a/src/gen/test/Model/RequestRateTest.php
+++ b/src/gen/test/Model/RequestRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResolveWebhookResponseTest.php b/src/gen/test/Model/ResolveWebhookResponseTest.php
index 1b7c9c483e..6d911b6a7f 100644
--- a/src/gen/test/Model/ResolveWebhookResponseTest.php
+++ b/src/gen/test/Model/ResolveWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceExampleTest.php b/src/gen/test/Model/ResourceExampleTest.php
index 466b044166..dc551dff41 100644
--- a/src/gen/test/Model/ResourceExampleTest.php
+++ b/src/gen/test/Model/ResourceExampleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ResourceStatusTest.php b/src/gen/test/Model/ResourceStatusTest.php
index c33eef64c9..cc35ecc075 100644
--- a/src/gen/test/Model/ResourceStatusTest.php
+++ b/src/gen/test/Model/ResourceStatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleTest.php b/src/gen/test/Model/ScheduleTest.php
index 0e54760c69..e29f468d4d 100644
--- a/src/gen/test/Model/ScheduleTest.php
+++ b/src/gen/test/Model/ScheduleTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
index 2be6c3bf50..ec8555eb35 100644
--- a/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternOddWeeksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ScheduleWorkPatternTest.php b/src/gen/test/Model/ScheduleWorkPatternTest.php
index d53f4621c6..906ccc7ca6 100644
--- a/src/gen/test/Model/ScheduleWorkPatternTest.php
+++ b/src/gen/test/Model/ScheduleWorkPatternTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SchemaSupportTest.php b/src/gen/test/Model/SchemaSupportTest.php
index b2399752bc..1d8d1b6236 100644
--- a/src/gen/test/Model/SchemaSupportTest.php
+++ b/src/gen/test/Model/SchemaSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/ServiceChargeTest.php b/src/gen/test/Model/ServiceChargeTest.php
index 345fa95362..4966da6f5d 100644
--- a/src/gen/test/Model/ServiceChargeTest.php
+++ b/src/gen/test/Model/ServiceChargeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionSettingsTest.php b/src/gen/test/Model/SessionSettingsTest.php
index b955b3503f..4a059fcefc 100644
--- a/src/gen/test/Model/SessionSettingsTest.php
+++ b/src/gen/test/Model/SessionSettingsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionTest.php b/src/gen/test/Model/SessionTest.php
index 936da01f61..888bad3fab 100644
--- a/src/gen/test/Model/SessionTest.php
+++ b/src/gen/test/Model/SessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SessionThemeTest.php b/src/gen/test/Model/SessionThemeTest.php
index d10233419e..56cd0c62b3 100644
--- a/src/gen/test/Model/SessionThemeTest.php
+++ b/src/gen/test/Model/SessionThemeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTargetTest.php b/src/gen/test/Model/SharedLinkTargetTest.php
index c1abf56609..ae14adae11 100644
--- a/src/gen/test/Model/SharedLinkTargetTest.php
+++ b/src/gen/test/Model/SharedLinkTargetTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SharedLinkTest.php b/src/gen/test/Model/SharedLinkTest.php
index 366c97936a..cc54a739f5 100644
--- a/src/gen/test/Model/SharedLinkTest.php
+++ b/src/gen/test/Model/SharedLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SimpleFormFieldOptionTest.php b/src/gen/test/Model/SimpleFormFieldOptionTest.php
index 2350708b73..8ca522a406 100644
--- a/src/gen/test/Model/SimpleFormFieldOptionTest.php
+++ b/src/gen/test/Model/SimpleFormFieldOptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SocialLinkTest.php b/src/gen/test/Model/SocialLinkTest.php
index 89e00f27c8..119c541b3e 100644
--- a/src/gen/test/Model/SocialLinkTest.php
+++ b/src/gen/test/Model/SocialLinkTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SortDirectionTest.php b/src/gen/test/Model/SortDirectionTest.php
index 99cd3dfa2a..d3dd67fa74 100644
--- a/src/gen/test/Model/SortDirectionTest.php
+++ b/src/gen/test/Model/SortDirectionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/StatusTest.php b/src/gen/test/Model/StatusTest.php
index e391999842..8625564374 100644
--- a/src/gen/test/Model/StatusTest.php
+++ b/src/gen/test/Model/StatusTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SubsidiaryReferenceTest.php b/src/gen/test/Model/SubsidiaryReferenceTest.php
index 05d33081ed..1b885bbe41 100644
--- a/src/gen/test/Model/SubsidiaryReferenceTest.php
+++ b/src/gen/test/Model/SubsidiaryReferenceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SubsidiaryTest.php b/src/gen/test/Model/SubsidiaryTest.php
index 5b77649e66..6224d6b10f 100644
--- a/src/gen/test/Model/SubsidiaryTest.php
+++ b/src/gen/test/Model/SubsidiaryTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SupplierTest.php b/src/gen/test/Model/SupplierTest.php
index 6ba0e457cb..6caa4ac001 100644
--- a/src/gen/test/Model/SupplierTest.php
+++ b/src/gen/test/Model/SupplierTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersFilterTest.php b/src/gen/test/Model/SuppliersFilterTest.php
index 167d1043a2..38c714d615 100644
--- a/src/gen/test/Model/SuppliersFilterTest.php
+++ b/src/gen/test/Model/SuppliersFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SuppliersSortTest.php b/src/gen/test/Model/SuppliersSortTest.php
index 273fb940a9..b7c32988f2 100644
--- a/src/gen/test/Model/SuppliersSortTest.php
+++ b/src/gen/test/Model/SuppliersSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/SupportedPropertyTest.php b/src/gen/test/Model/SupportedPropertyTest.php
index 6c1e7ab7a6..468d6f8e5c 100644
--- a/src/gen/test/Model/SupportedPropertyTest.php
+++ b/src/gen/test/Model/SupportedPropertyTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRateTest.php b/src/gen/test/Model/TaxRateTest.php
index 543565a072..5d731de7e7 100644
--- a/src/gen/test/Model/TaxRateTest.php
+++ b/src/gen/test/Model/TaxRateTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxRatesFilterTest.php b/src/gen/test/Model/TaxRatesFilterTest.php
index 6174be4651..01cc40e6fb 100644
--- a/src/gen/test/Model/TaxRatesFilterTest.php
+++ b/src/gen/test/Model/TaxRatesFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TaxTest.php b/src/gen/test/Model/TaxTest.php
index da84f64d38..03e6da7bc4 100644
--- a/src/gen/test/Model/TaxTest.php
+++ b/src/gen/test/Model/TaxTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TeamTest.php b/src/gen/test/Model/TeamTest.php
index 797a0c5169..6e043b84b8 100644
--- a/src/gen/test/Model/TeamTest.php
+++ b/src/gen/test/Model/TeamTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TenderTest.php b/src/gen/test/Model/TenderTest.php
index ee98d6b142..9487d635ff 100644
--- a/src/gen/test/Model/TenderTest.php
+++ b/src/gen/test/Model/TenderTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketTest.php b/src/gen/test/Model/TicketTest.php
index 31d1b46016..2d54924504 100644
--- a/src/gen/test/Model/TicketTest.php
+++ b/src/gen/test/Model/TicketTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TicketsSortTest.php b/src/gen/test/Model/TicketsSortTest.php
index 150b328bfc..8e3e032a0b 100644
--- a/src/gen/test/Model/TicketsSortTest.php
+++ b/src/gen/test/Model/TicketsSortTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestNotesTest.php b/src/gen/test/Model/TimeOffRequestNotesTest.php
index 6af001a071..d9d0b83f3c 100644
--- a/src/gen/test/Model/TimeOffRequestNotesTest.php
+++ b/src/gen/test/Model/TimeOffRequestNotesTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestTest.php b/src/gen/test/Model/TimeOffRequestTest.php
index ab0578318f..77780eee76 100644
--- a/src/gen/test/Model/TimeOffRequestTest.php
+++ b/src/gen/test/Model/TimeOffRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TimeOffRequestsFilterTest.php b/src/gen/test/Model/TimeOffRequestsFilterTest.php
index 001f93ccca..6d7467cddf 100644
--- a/src/gen/test/Model/TimeOffRequestsFilterTest.php
+++ b/src/gen/test/Model/TimeOffRequestsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
index 362dac9694..c2ae494e68 100644
--- a/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseDetailTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TooManyRequestsResponseTest.php b/src/gen/test/Model/TooManyRequestsResponseTest.php
index c2b9ee2aa6..e510b6f930 100644
--- a/src/gen/test/Model/TooManyRequestsResponseTest.php
+++ b/src/gen/test/Model/TooManyRequestsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/TrackingItemTest.php b/src/gen/test/Model/TrackingItemTest.php
index 16835d17c5..a71404a6cc 100644
--- a/src/gen/test/Model/TrackingItemTest.php
+++ b/src/gen/test/Model/TrackingItemTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnauthorizedResponseTest.php b/src/gen/test/Model/UnauthorizedResponseTest.php
index 649784ee2f..6fc261297d 100644
--- a/src/gen/test/Model/UnauthorizedResponseTest.php
+++ b/src/gen/test/Model/UnauthorizedResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnexpectedErrorResponseTest.php b/src/gen/test/Model/UnexpectedErrorResponseTest.php
index 6bfa088494..3c4699791b 100644
--- a/src/gen/test/Model/UnexpectedErrorResponseTest.php
+++ b/src/gen/test/Model/UnexpectedErrorResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedApiIdTest.php b/src/gen/test/Model/UnifiedApiIdTest.php
index 1d7dec97c3..ae7c6c713c 100644
--- a/src/gen/test/Model/UnifiedApiIdTest.php
+++ b/src/gen/test/Model/UnifiedApiIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFilePermissionsTest.php b/src/gen/test/Model/UnifiedFilePermissionsTest.php
index a9a89405a3..1f7bc32a22 100644
--- a/src/gen/test/Model/UnifiedFilePermissionsTest.php
+++ b/src/gen/test/Model/UnifiedFilePermissionsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedFileTest.php b/src/gen/test/Model/UnifiedFileTest.php
index 62498da16f..8b8f37dfeb 100644
--- a/src/gen/test/Model/UnifiedFileTest.php
+++ b/src/gen/test/Model/UnifiedFileTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnifiedIdTest.php b/src/gen/test/Model/UnifiedIdTest.php
index ab5744295e..16e8aa29a4 100644
--- a/src/gen/test/Model/UnifiedIdTest.php
+++ b/src/gen/test/Model/UnifiedIdTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UnprocessableResponseTest.php b/src/gen/test/Model/UnprocessableResponseTest.php
index 4eb771d159..f0f6e25c06 100644
--- a/src/gen/test/Model/UnprocessableResponseTest.php
+++ b/src/gen/test/Model/UnprocessableResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateAccountingDepartmentResponseTest.php b/src/gen/test/Model/UpdateAccountingDepartmentResponseTest.php
index 9dc49d2624..c1f82458d9 100644
--- a/src/gen/test/Model/UpdateAccountingDepartmentResponseTest.php
+++ b/src/gen/test/Model/UpdateAccountingDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateAccountingLocationResponseTest.php b/src/gen/test/Model/UpdateAccountingLocationResponseTest.php
index 6add375dd6..cc6b768ec9 100644
--- a/src/gen/test/Model/UpdateAccountingLocationResponseTest.php
+++ b/src/gen/test/Model/UpdateAccountingLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateActivityResponseTest.php b/src/gen/test/Model/UpdateActivityResponseTest.php
index 49956aa272..76b36f1845 100644
--- a/src/gen/test/Model/UpdateActivityResponseTest.php
+++ b/src/gen/test/Model/UpdateActivityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicantResponseTest.php b/src/gen/test/Model/UpdateApplicantResponseTest.php
index 94126aaaf9..24ae9c2cc6 100644
--- a/src/gen/test/Model/UpdateApplicantResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateApplicationResponseTest.php b/src/gen/test/Model/UpdateApplicationResponseTest.php
index 4e396544bc..603f594996 100644
--- a/src/gen/test/Model/UpdateApplicationResponseTest.php
+++ b/src/gen/test/Model/UpdateApplicationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateBillResponseTest.php b/src/gen/test/Model/UpdateBillResponseTest.php
index 189248ffc3..affdf7d91b 100644
--- a/src/gen/test/Model/UpdateBillResponseTest.php
+++ b/src/gen/test/Model/UpdateBillResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCommentResponseTest.php b/src/gen/test/Model/UpdateCommentResponseTest.php
index 1daae524e2..273c4f5ffd 100644
--- a/src/gen/test/Model/UpdateCommentResponseTest.php
+++ b/src/gen/test/Model/UpdateCommentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCompanyResponseTest.php b/src/gen/test/Model/UpdateCompanyResponseTest.php
index 8389a2b32b..8fd0957fef 100644
--- a/src/gen/test/Model/UpdateCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConnectionResponseTest.php b/src/gen/test/Model/UpdateConnectionResponseTest.php
index 351d3c9933..96a09fac07 100644
--- a/src/gen/test/Model/UpdateConnectionResponseTest.php
+++ b/src/gen/test/Model/UpdateConnectionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerRequestTest.php b/src/gen/test/Model/UpdateConsumerRequestTest.php
index f17e6bdce4..486f46bd60 100644
--- a/src/gen/test/Model/UpdateConsumerRequestTest.php
+++ b/src/gen/test/Model/UpdateConsumerRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateConsumerResponseTest.php b/src/gen/test/Model/UpdateConsumerResponseTest.php
index 82f193d88b..958b427311 100644
--- a/src/gen/test/Model/UpdateConsumerResponseTest.php
+++ b/src/gen/test/Model/UpdateConsumerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateContactResponseTest.php b/src/gen/test/Model/UpdateContactResponseTest.php
index e1dafd39a2..e2a2930e90 100644
--- a/src/gen/test/Model/UpdateContactResponseTest.php
+++ b/src/gen/test/Model/UpdateContactResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCreditNoteResponseTest.php b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
index 4039bd12ef..b95f20268a 100644
--- a/src/gen/test/Model/UpdateCreditNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateCreditNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingRequestTest.php b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
index 96d45928f4..e0f1049508 100644
--- a/src/gen/test/Model/UpdateCustomMappingRequestTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomMappingResponseTest.php b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
index 9364f881b3..365afc5ccf 100644
--- a/src/gen/test/Model/UpdateCustomMappingResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomMappingResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateCustomerResponseTest.php b/src/gen/test/Model/UpdateCustomerResponseTest.php
index 83cc306efb..1f4bb9bbce 100644
--- a/src/gen/test/Model/UpdateCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDepartmentResponseTest.php b/src/gen/test/Model/UpdateDepartmentResponseTest.php
index 895514c8c5..620bf7109e 100644
--- a/src/gen/test/Model/UpdateDepartmentResponseTest.php
+++ b/src/gen/test/Model/UpdateDepartmentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveGroupResponseTest.php b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
index 853797ac1c..17be1417b3 100644
--- a/src/gen/test/Model/UpdateDriveGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateDriveResponseTest.php b/src/gen/test/Model/UpdateDriveResponseTest.php
index fabc62b2d1..2faa113234 100644
--- a/src/gen/test/Model/UpdateDriveResponseTest.php
+++ b/src/gen/test/Model/UpdateDriveResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
index c163280acc..ac21759fb8 100644
--- a/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceCustomerResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
index c646c6a7f0..71bb9a51c9 100644
--- a/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateEcommerceOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateEmployeeResponseTest.php b/src/gen/test/Model/UpdateEmployeeResponseTest.php
index 9a86d41985..f0796efb1a 100644
--- a/src/gen/test/Model/UpdateEmployeeResponseTest.php
+++ b/src/gen/test/Model/UpdateEmployeeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileRequestTest.php b/src/gen/test/Model/UpdateFileRequestTest.php
index 7200432929..38730ca0be 100644
--- a/src/gen/test/Model/UpdateFileRequestTest.php
+++ b/src/gen/test/Model/UpdateFileRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFileResponseTest.php b/src/gen/test/Model/UpdateFileResponseTest.php
index 130ca6b7fd..92dfb01ee2 100644
--- a/src/gen/test/Model/UpdateFileResponseTest.php
+++ b/src/gen/test/Model/UpdateFileResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderRequestTest.php b/src/gen/test/Model/UpdateFolderRequestTest.php
index 9569d2015f..4ea1b36d33 100644
--- a/src/gen/test/Model/UpdateFolderRequestTest.php
+++ b/src/gen/test/Model/UpdateFolderRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateFolderResponseTest.php b/src/gen/test/Model/UpdateFolderResponseTest.php
index b8458ecacc..3b8f77579a 100644
--- a/src/gen/test/Model/UpdateFolderResponseTest.php
+++ b/src/gen/test/Model/UpdateFolderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
index e89294822a..4b94304ee7 100644
--- a/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
+++ b/src/gen/test/Model/UpdateHrisCompanyResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
index 56749e2733..ca6d4b398c 100644
--- a/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceItemsResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateInvoiceResponseTest.php b/src/gen/test/Model/UpdateInvoiceResponseTest.php
index 469f861b76..c87e384a2d 100644
--- a/src/gen/test/Model/UpdateInvoiceResponseTest.php
+++ b/src/gen/test/Model/UpdateInvoiceResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateItemResponseTest.php b/src/gen/test/Model/UpdateItemResponseTest.php
index 447cc0adf4..5de8268e70 100644
--- a/src/gen/test/Model/UpdateItemResponseTest.php
+++ b/src/gen/test/Model/UpdateItemResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJobResponseTest.php b/src/gen/test/Model/UpdateJobResponseTest.php
index a54556bdec..7c0fe00475 100644
--- a/src/gen/test/Model/UpdateJobResponseTest.php
+++ b/src/gen/test/Model/UpdateJobResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateJournalEntryResponseTest.php b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
index f4054c1552..214b384fc6 100644
--- a/src/gen/test/Model/UpdateJournalEntryResponseTest.php
+++ b/src/gen/test/Model/UpdateJournalEntryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLeadResponseTest.php b/src/gen/test/Model/UpdateLeadResponseTest.php
index e117843a85..cc3c051254 100644
--- a/src/gen/test/Model/UpdateLeadResponseTest.php
+++ b/src/gen/test/Model/UpdateLeadResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
index 9a08eab64b..a8e72f7acf 100644
--- a/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
+++ b/src/gen/test/Model/UpdateLedgerAccountResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateLocationResponseTest.php b/src/gen/test/Model/UpdateLocationResponseTest.php
index 7cbff11ee8..c61d7b70e1 100644
--- a/src/gen/test/Model/UpdateLocationResponseTest.php
+++ b/src/gen/test/Model/UpdateLocationResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMerchantResponseTest.php b/src/gen/test/Model/UpdateMerchantResponseTest.php
index 57e968e9e2..73faa29163 100644
--- a/src/gen/test/Model/UpdateMerchantResponseTest.php
+++ b/src/gen/test/Model/UpdateMerchantResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateMessageResponseTest.php b/src/gen/test/Model/UpdateMessageResponseTest.php
index 3439625dc4..762dffba85 100644
--- a/src/gen/test/Model/UpdateMessageResponseTest.php
+++ b/src/gen/test/Model/UpdateMessageResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierGroupResponseTest.php b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
index d5c9b2e5d6..dfd031f338 100644
--- a/src/gen/test/Model/UpdateModifierGroupResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierGroupResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateModifierResponseTest.php b/src/gen/test/Model/UpdateModifierResponseTest.php
index f0d58fea15..0b6f7a356b 100644
--- a/src/gen/test/Model/UpdateModifierResponseTest.php
+++ b/src/gen/test/Model/UpdateModifierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateNoteResponseTest.php b/src/gen/test/Model/UpdateNoteResponseTest.php
index 65e6c04a4d..5c65d5cdbe 100644
--- a/src/gen/test/Model/UpdateNoteResponseTest.php
+++ b/src/gen/test/Model/UpdateNoteResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOpportunityResponseTest.php b/src/gen/test/Model/UpdateOpportunityResponseTest.php
index a163ec19ee..4a93c86bcf 100644
--- a/src/gen/test/Model/UpdateOpportunityResponseTest.php
+++ b/src/gen/test/Model/UpdateOpportunityResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderResponseTest.php b/src/gen/test/Model/UpdateOrderResponseTest.php
index 027d3d6e15..7e2c88c35e 100644
--- a/src/gen/test/Model/UpdateOrderResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateOrderTypeResponseTest.php b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
index a8c0e07608..77fedc2d6a 100644
--- a/src/gen/test/Model/UpdateOrderTypeResponseTest.php
+++ b/src/gen/test/Model/UpdateOrderTypeResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePaymentResponseTest.php b/src/gen/test/Model/UpdatePaymentResponseTest.php
index 9fa83d8b35..fd70cabdfe 100644
--- a/src/gen/test/Model/UpdatePaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePipelineResponseTest.php b/src/gen/test/Model/UpdatePipelineResponseTest.php
index c6875f424b..66f18b9019 100644
--- a/src/gen/test/Model/UpdatePipelineResponseTest.php
+++ b/src/gen/test/Model/UpdatePipelineResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePosPaymentResponseTest.php b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
index 07d538231d..255c9d45db 100644
--- a/src/gen/test/Model/UpdatePosPaymentResponseTest.php
+++ b/src/gen/test/Model/UpdatePosPaymentResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateProductResponseTest.php b/src/gen/test/Model/UpdateProductResponseTest.php
index e33d12a6d9..b4838fbecb 100644
--- a/src/gen/test/Model/UpdateProductResponseTest.php
+++ b/src/gen/test/Model/UpdateProductResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
index fc20faf9fe..d9b39dae75 100644
--- a/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
+++ b/src/gen/test/Model/UpdatePurchaseOrderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSharedLinkResponseTest.php b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
index 23715517c0..910e1b7d16 100644
--- a/src/gen/test/Model/UpdateSharedLinkResponseTest.php
+++ b/src/gen/test/Model/UpdateSharedLinkResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSubsidiaryResponseTest.php b/src/gen/test/Model/UpdateSubsidiaryResponseTest.php
index 9992a214ff..f2e305ad09 100644
--- a/src/gen/test/Model/UpdateSubsidiaryResponseTest.php
+++ b/src/gen/test/Model/UpdateSubsidiaryResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateSupplierResponseTest.php b/src/gen/test/Model/UpdateSupplierResponseTest.php
index f163079ebe..e7a067a125 100644
--- a/src/gen/test/Model/UpdateSupplierResponseTest.php
+++ b/src/gen/test/Model/UpdateSupplierResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTaxRateResponseTest.php b/src/gen/test/Model/UpdateTaxRateResponseTest.php
index 53bac22449..15d5b029ec 100644
--- a/src/gen/test/Model/UpdateTaxRateResponseTest.php
+++ b/src/gen/test/Model/UpdateTaxRateResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTenderResponseTest.php b/src/gen/test/Model/UpdateTenderResponseTest.php
index 2fa8e7aadb..cb4d345c7c 100644
--- a/src/gen/test/Model/UpdateTenderResponseTest.php
+++ b/src/gen/test/Model/UpdateTenderResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTicketResponseTest.php b/src/gen/test/Model/UpdateTicketResponseTest.php
index d35aee80be..0647ca422f 100644
--- a/src/gen/test/Model/UpdateTicketResponseTest.php
+++ b/src/gen/test/Model/UpdateTicketResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
index b5492792ae..09e4347420 100644
--- a/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
+++ b/src/gen/test/Model/UpdateTimeOffRequestResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUploadSessionResponseTest.php b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
index 570b3ba2c9..8a529b9eb3 100644
--- a/src/gen/test/Model/UpdateUploadSessionResponseTest.php
+++ b/src/gen/test/Model/UpdateUploadSessionResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateUserResponseTest.php b/src/gen/test/Model/UpdateUserResponseTest.php
index 32a5094d0a..77bc46c192 100644
--- a/src/gen/test/Model/UpdateUserResponseTest.php
+++ b/src/gen/test/Model/UpdateUserResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookRequestTest.php b/src/gen/test/Model/UpdateWebhookRequestTest.php
index 2909871a33..f3c19a8828 100644
--- a/src/gen/test/Model/UpdateWebhookRequestTest.php
+++ b/src/gen/test/Model/UpdateWebhookRequestTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UpdateWebhookResponseTest.php b/src/gen/test/Model/UpdateWebhookResponseTest.php
index 99087776a8..bce57a4118 100644
--- a/src/gen/test/Model/UpdateWebhookResponseTest.php
+++ b/src/gen/test/Model/UpdateWebhookResponseTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UploadSessionTest.php b/src/gen/test/Model/UploadSessionTest.php
index a573386951..a2852304c8 100644
--- a/src/gen/test/Model/UploadSessionTest.php
+++ b/src/gen/test/Model/UploadSessionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/UserTest.php b/src/gen/test/Model/UserTest.php
index 97e8833561..254f82e923 100644
--- a/src/gen/test/Model/UserTest.php
+++ b/src/gen/test/Model/UserTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VaultEventTypeTest.php b/src/gen/test/Model/VaultEventTypeTest.php
index 48bd5156fd..69a3e26d87 100644
--- a/src/gen/test/Model/VaultEventTypeTest.php
+++ b/src/gen/test/Model/VaultEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/VirtualWebhooksTest.php b/src/gen/test/Model/VirtualWebhooksTest.php
index 40b27d5caa..b3395f4d54 100644
--- a/src/gen/test/Model/VirtualWebhooksTest.php
+++ b/src/gen/test/Model/VirtualWebhooksTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WalletDetailsTest.php b/src/gen/test/Model/WalletDetailsTest.php
index c43132b0ab..a08d0927c3 100644
--- a/src/gen/test/Model/WalletDetailsTest.php
+++ b/src/gen/test/Model/WalletDetailsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogAttemptsTest.php b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
index 028f1e0ec8..6fa5f69ffc 100644
--- a/src/gen/test/Model/WebhookEventLogAttemptsTest.php
+++ b/src/gen/test/Model/WebhookEventLogAttemptsTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogServiceTest.php b/src/gen/test/Model/WebhookEventLogServiceTest.php
index 9c089b6255..7c6480060c 100644
--- a/src/gen/test/Model/WebhookEventLogServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogTest.php b/src/gen/test/Model/WebhookEventLogTest.php
index 6d3ebe3fb9..fc26bb005e 100644
--- a/src/gen/test/Model/WebhookEventLogTest.php
+++ b/src/gen/test/Model/WebhookEventLogTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
index 8d6ffd8750..140a0877a1 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterServiceTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventLogsFilterTest.php b/src/gen/test/Model/WebhookEventLogsFilterTest.php
index 1eaecc66a9..58fe7dfb88 100644
--- a/src/gen/test/Model/WebhookEventLogsFilterTest.php
+++ b/src/gen/test/Model/WebhookEventLogsFilterTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTest.php b/src/gen/test/Model/WebhookEventTest.php
index f980e06c71..6b59947640 100644
--- a/src/gen/test/Model/WebhookEventTest.php
+++ b/src/gen/test/Model/WebhookEventTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookEventTypeTest.php b/src/gen/test/Model/WebhookEventTypeTest.php
index 5afb874b8c..ecb29ad1f7 100644
--- a/src/gen/test/Model/WebhookEventTypeTest.php
+++ b/src/gen/test/Model/WebhookEventTypeTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSubscriptionTest.php b/src/gen/test/Model/WebhookSubscriptionTest.php
index 2e089c44bd..d81aa244bb 100644
--- a/src/gen/test/Model/WebhookSubscriptionTest.php
+++ b/src/gen/test/Model/WebhookSubscriptionTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookSupportTest.php b/src/gen/test/Model/WebhookSupportTest.php
index bc3584680e..78d6b8c47e 100644
--- a/src/gen/test/Model/WebhookSupportTest.php
+++ b/src/gen/test/Model/WebhookSupportTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebhookTest.php b/src/gen/test/Model/WebhookTest.php
index 741d2063ab..55f43d8c1a 100644
--- a/src/gen/test/Model/WebhookTest.php
+++ b/src/gen/test/Model/WebhookTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/
diff --git a/src/gen/test/Model/WebsiteTest.php b/src/gen/test/Model/WebsiteTest.php
index 71565bd5c6..95be697d4f 100644
--- a/src/gen/test/Model/WebsiteTest.php
+++ b/src/gen/test/Model/WebsiteTest.php
@@ -15,7 +15,7 @@
*
* The Apideck OpenAPI Spec: SDK Optimized
*
- * The version of the OpenAPI document: 10.3.0
+ * The version of the OpenAPI document: 10.3.1
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.4.0
*/