From 027572819099b35f2256c4e5ff6d6843760ad857 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 16:15:48 +0000 Subject: [PATCH 1/9] Automated update by SDK Generator version:2.9.3 commit:ab2954b --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- src/gen/docs/models/CustomField.md | 2 +- src/gen/models/CustomField.ts | 104 +++++++++++++++-------------- 4 files changed, 56 insertions(+), 54 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 403ad94a2..5639343bc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: - name: 'Setup Node.js' uses: actions/setup-node@v2 with: - node-version: '16.x' + node-version: '14.x' cache: yarn - name: Install dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 76cbdf79b..14f901a68 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: - name: 'Setup Node.js' uses: actions/setup-node@v2 with: - node-version: '16.x' + node-version: '14.x' cache: yarn - name: Install dependencies diff --git a/src/gen/docs/models/CustomField.md b/src/gen/docs/models/CustomField.md index ea09194dc..5838c8462 100644 --- a/src/gen/docs/models/CustomField.md +++ b/src/gen/docs/models/CustomField.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes `id` | **string** | Unique identifier for the custom field. | `name` | **string** | Name of the custom field. | [optional] `description` | **string** | More information about the custom field | [optional] -`value` | **string \| number \| boolean \| object \| Array<string>** | | [optional] +`value` | **string \| number \| boolean \| object \| Array<string> \| Array<object>** | | [optional] diff --git a/src/gen/models/CustomField.ts b/src/gen/models/CustomField.ts index 52b3cf098..1100ffa4b 100644 --- a/src/gen/models/CustomField.ts +++ b/src/gen/models/CustomField.ts @@ -5,76 +5,78 @@ * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 9.9.3 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ -import { exists } from '../runtime' +import { exists, mapValues } from '../runtime'; + /** - * + * * @export * @interface CustomField */ export interface CustomField { - /** - * Unique identifier for the custom field. - * @type {string} - * @memberof CustomField - */ - id: string | null - /** - * Name of the custom field. - * @type {string} - * @memberof CustomField - */ - name?: string | null - /** - * More information about the custom field - * @type {string} - * @memberof CustomField - */ - description?: string | null - /** - * - * @type {string | number | boolean | object | Array} - * @memberof CustomField - */ - value?: string | number | boolean | object | Array | null + /** + * Unique identifier for the custom field. + * @type {string} + * @memberof CustomField + */ + id: string | null; + /** + * Name of the custom field. + * @type {string} + * @memberof CustomField + */ + name?: string | null; + /** + * More information about the custom field + * @type {string} + * @memberof CustomField + */ + description?: string | null; + /** + * + * @type {string | number | boolean | object | Array | Array} + * @memberof CustomField + */ + value?: string | number | boolean | object | Array | Array | null; } export function CustomFieldFromJSON(json: any): CustomField { - return CustomFieldFromJSONTyped(json, false) + return CustomFieldFromJSONTyped(json, false); } export function CustomFieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomField { - if (json === undefined || json === null) { - return json - } - return { - id: json['id'], - name: !exists(json, 'name') ? undefined : json['name'], - description: !exists(json, 'description') ? undefined : json['description'], - value: !exists(json, 'value') - ? undefined - : >json['value'] - } + if ((json === undefined) || (json === null)) { + return json; + } + return { + + 'id': json['id'], + 'name': !exists(json, 'name') ? undefined : json['name'], + 'description': !exists(json, 'description') ? undefined : json['description'], + 'value': !exists(json, 'value') ? undefined : >(json['value']), + }; } export function CustomFieldToJSON(value?: CustomField | null): any { - if (value === undefined) { - return undefined - } - if (value === null) { - return null - } - return { - id: value.id, - name: value.name, - description: value.description, - value: >value.value - } + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + + 'id': value.id, + 'name': value.name, + 'description': value.description, + 'value': >(value.value), + }; } + From 63a054c20e43349afcdfb9f5735e8dea7d8c5ade Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 09:15:31 +0000 Subject: [PATCH 2/9] Automated update by SDK Generator version:2.9.3 commit:ab2954b --- yarn.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/yarn.lock b/yarn.lock index fbf0c985e..25f6a10dd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1590,9 +1590,9 @@ integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== "@types/node@*": - version "20.8.7" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.7.tgz#ad23827850843de973096edfc5abc9e922492a25" - integrity sha512-21TKHHh3eUHIi2MloeptJWALuCu5H7HQTdTrWIFReA8ad+aggoX+lRes3ex7/FtpC+sVUpFMQ+QTfYr74mruiQ== + version "20.8.8" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.8.tgz#adee050b422061ad5255fc38ff71b2bb96ea2a0e" + integrity sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ== dependencies: undici-types "~5.25.1" @@ -2822,9 +2822,9 @@ ecc-jsbn@~0.1.1: safer-buffer "^2.1.0" electron-to-chromium@^1.4.535: - version "1.4.563" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.563.tgz#dabb424202754c1fed2d2938ff564b23d3bbf0d3" - integrity sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw== + version "1.4.565" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.565.tgz#205f3746a759ec3c43bce98b9eef5445f2721ea9" + integrity sha512-XbMoT6yIvg2xzcbs5hCADi0dXBh4//En3oFXmtPX+jiyyiCTiM9DGFT2SLottjpEs9Z8Mh8SqahbR96MaHfuSg== emittery@^0.13.1: version "0.13.1" From 09c516d0464e3257cff123752653caa8f200629f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 15:09:42 +0000 Subject: [PATCH 3/9] Automated update by SDK Generator version:2.9.3 commit:5ed0a60 --- src/gen/.openapi-generator/FILES | 30 + src/gen/apis/VaultApi.ts | 85 + src/gen/docs/apis/AccountingApi.md | 36 +- src/gen/docs/apis/AtsApi.md | 8 +- src/gen/docs/apis/ConnectorApi.md | 2 +- src/gen/docs/apis/CrmApi.md | 42 +- src/gen/docs/apis/FileStorageApi.md | 12 +- src/gen/docs/apis/HrisApi.md | 26 +- src/gen/docs/apis/IssueTrackingApi.md | 18 +- src/gen/docs/apis/LeadApi.md | 6 +- src/gen/docs/apis/PosApi.md | 37 +- src/gen/docs/apis/SmsApi.md | 6 +- src/gen/docs/apis/VaultApi.md | 86 +- src/gen/docs/models/Activity.md | 2 + src/gen/docs/models/Applicant.md | 2 + src/gen/docs/models/Application.md | 2 + src/gen/docs/models/AtsActivity.md | 1 + src/gen/docs/models/BalanceSheet.md | 2 + src/gen/docs/models/Bill.md | 2 + src/gen/docs/models/Collection.md | 1 + src/gen/docs/models/CollectionTag.md | 1 + .../docs/models/CollectionTicketComment.md | 1 + src/gen/docs/models/CollectionUser.md | 1 + src/gen/docs/models/Company.md | 2 + src/gen/docs/models/CompanyInfo.md | 2 + src/gen/docs/models/Connection.md | 4 + src/gen/docs/models/Connector.md | 2 + src/gen/docs/models/Contact.md | 2 + .../docs/models/CreateCustomMappingRequest.md | 18 + .../models/CreateCustomMappingResponse.md | 25 + src/gen/docs/models/CreditNote.md | 2 + src/gen/docs/models/CustomFieldFinder.md | 22 + src/gen/docs/models/CustomMapping.md | 25 + src/gen/docs/models/Customer.md | 2 + src/gen/docs/models/Department.md | 1 + src/gen/docs/models/Drive.md | 1 + src/gen/docs/models/DriveGroup.md | 1 + src/gen/docs/models/EcommerceCustomer.md | 2 + src/gen/docs/models/EcommerceOrder.md | 2 + src/gen/docs/models/EcommerceProduct.md | 2 + src/gen/docs/models/EcommerceStore.md | 1 + src/gen/docs/models/Employee.md | 2 + src/gen/docs/models/Folder.md | 2 + .../GetConnectorResourceExampleResponse.md | 25 + ...GetConnectorResourceExampleResponseData.md | 27 + .../GetConnectorResourceSchemaResponse.md | 20 + .../docs/models/GetCustomFieldsResponse.md | 25 + .../docs/models/GetCustomMappingResponse.md | 25 + .../docs/models/GetResourceExampleResponse.md | 25 + .../docs/models/GetResourceSchemaResponse.md | 20 + src/gen/docs/models/HrisCompany.md | 2 + src/gen/docs/models/HrisJob.md | 2 + src/gen/docs/models/Invoice.md | 2 + src/gen/docs/models/InvoiceItem.md | 2 + src/gen/docs/models/InvoiceLineItem.md | 2 + src/gen/docs/models/Item.md | 2 + src/gen/docs/models/Job.md | 2 + src/gen/docs/models/JournalEntry.md | 2 + src/gen/docs/models/Lead.md | 2 + src/gen/docs/models/LedgerAccount.md | 2 + src/gen/docs/models/Location.md | 2 + src/gen/docs/models/Merchant.md | 2 + src/gen/docs/models/Message.md | 2 + src/gen/docs/models/Modifier.md | 2 + src/gen/docs/models/ModifierGroup.md | 1 + src/gen/docs/models/Note.md | 1 + src/gen/docs/models/Offer.md | 1 + src/gen/docs/models/Opportunity.md | 2 + src/gen/docs/models/Order.md | 2 + src/gen/docs/models/Payment.md | 2 + src/gen/docs/models/Payroll.md | 2 + src/gen/docs/models/Person.md | 2 + src/gen/docs/models/PosPayment.md | 2 + src/gen/docs/models/ProfitAndLoss.md | 2 + src/gen/docs/models/PurchaseOrder.md | 2 + src/gen/docs/models/ResourceExample.md | 27 + src/gen/docs/models/SchemaSupport.md | 20 + src/gen/docs/models/Supplier.md | 2 + src/gen/docs/models/TaxRate.md | 1 + src/gen/docs/models/Tender.md | 1 + src/gen/docs/models/Ticket.md | 2 + src/gen/docs/models/TimeOffRequest.md | 2 + src/gen/docs/models/UnifiedFile.md | 2 + .../docs/models/UpdateCustomMappingRequest.md | 18 + .../models/UpdateCustomMappingResponse.md | 25 + src/gen/docs/models/User.md | 2 + src/gen/models/Activity.ts | 10 +- src/gen/models/Applicant.ts | 8 + src/gen/models/Application.ts | 10 +- src/gen/models/AtsActivity.ts | 11 +- src/gen/models/BalanceSheet.ts | 10 +- src/gen/models/Bill.ts | 12 +- src/gen/models/Collection.ts | 10 +- src/gen/models/CollectionTag.ts | 12 +- src/gen/models/CollectionTicketComment.ts | 10 +- src/gen/models/CollectionUser.ts | 10 +- src/gen/models/Company.ts | 10 +- src/gen/models/CompanyInfo.ts | 8 + src/gen/models/Connection.ts | 23 +- src/gen/models/Connector.ts | 11 + src/gen/models/Contact.ts | 10 +- src/gen/models/CreateCustomMappingRequest.ts | 42 + src/gen/models/CreateCustomMappingResponse.ts | 73 + src/gen/models/CreditNote.ts | 8 + src/gen/models/CustomFieldFinder.ts | 85 + src/gen/models/CustomMapping.ts | 102 + src/gen/models/Customer.ts | 8 + src/gen/models/Department.ts | 10 +- src/gen/models/Drive.ts | 10 +- src/gen/models/DriveGroup.ts | 10 +- src/gen/models/EcommerceCustomer.ts | 10 +- src/gen/models/EcommerceOrder.ts | 10 +- src/gen/models/EcommerceProduct.ts | 10 +- src/gen/models/EcommerceStore.ts | 10 +- src/gen/models/Employee.ts | 8 + src/gen/models/Folder.ts | 10 +- .../GetConnectorResourceExampleResponse.ts | 81 + ...GetConnectorResourceExampleResponseData.ts | 95 + .../GetConnectorResourceSchemaResponse.ts | 62 + src/gen/models/GetCustomFieldsResponse.ts | 77 + src/gen/models/GetCustomMappingResponse.ts | 73 + src/gen/models/GetResourceExampleResponse.ts | 73 + src/gen/models/GetResourceSchemaResponse.ts | 58 + src/gen/models/HrisCompany.ts | 10 +- src/gen/models/HrisJob.ts | 12 +- src/gen/models/Invoice.ts | 8 + src/gen/models/InvoiceItem.ts | 8 + src/gen/models/InvoiceLineItem.ts | 8 + src/gen/models/Item.ts | 8 + src/gen/models/Job.ts | 10 +- src/gen/models/JournalEntry.ts | 8 + src/gen/models/Lead.ts | 10 +- src/gen/models/LedgerAccount.ts | 8 + src/gen/models/Location.ts | 10 +- src/gen/models/Merchant.ts | 10 +- src/gen/models/Message.ts | 10 +- src/gen/models/Modifier.ts | 10 +- src/gen/models/ModifierGroup.ts | 8 + src/gen/models/Note.ts | 10 +- src/gen/models/Offer.ts | 10 +- src/gen/models/Opportunity.ts | 10 +- src/gen/models/Order.ts | 8 + src/gen/models/Payment.ts | 10 +- src/gen/models/Payroll.ts | 12 +- src/gen/models/Person.ts | 12 +- src/gen/models/PosPayment.ts | 10 +- src/gen/models/ProfitAndLoss.ts | 12 +- src/gen/models/PurchaseOrder.ts | 8 + src/gen/models/ResourceExample.ts | 91 + src/gen/models/SchemaSupport.ts | 53 + src/gen/models/Supplier.ts | 8 + src/gen/models/TaxRate.ts | 8 + src/gen/models/Tender.ts | 10 +- src/gen/models/Ticket.ts | 13 +- src/gen/models/TimeOffRequest.ts | 10 +- src/gen/models/UnifiedFile.ts | 10 +- src/gen/models/UpdateCustomMappingRequest.ts | 42 + src/gen/models/UpdateCustomMappingResponse.ts | 73 + src/gen/models/User.ts | 10 +- src/gen/models/index.ts | 15 + .../tests/apis/AccountingApiTest.api.test.ts | 74 +- src/gen/tests/apis/AtsApiTest.api.test.ts | 16 +- .../tests/apis/ConnectorApiTest.api.test.ts | 8 +- src/gen/tests/apis/CrmApiTest.api.test.ts | 56 +- .../tests/apis/EcommerceApiTest.api.test.ts | 7 + .../tests/apis/FileStorageApiTest.api.test.ts | 21 +- src/gen/tests/apis/HrisApiTest.api.test.ts | 50 +- .../apis/IssueTrackingApiTest.api.test.ts | 39 +- src/gen/tests/apis/LeadApiTest.api.test.ts | 8 +- src/gen/tests/apis/PosApiTest.api.test.ts | 53 +- src/gen/tests/apis/SmsApiTest.api.test.ts | 8 +- src/gen/tests/apis/VaultApiTest.api.test.ts | 2507 +++++++++-------- 172 files changed, 4039 insertions(+), 1326 deletions(-) create mode 100644 src/gen/docs/models/CreateCustomMappingRequest.md create mode 100644 src/gen/docs/models/CreateCustomMappingResponse.md create mode 100644 src/gen/docs/models/CustomFieldFinder.md create mode 100644 src/gen/docs/models/CustomMapping.md create mode 100644 src/gen/docs/models/GetConnectorResourceExampleResponse.md create mode 100644 src/gen/docs/models/GetConnectorResourceExampleResponseData.md create mode 100644 src/gen/docs/models/GetConnectorResourceSchemaResponse.md create mode 100644 src/gen/docs/models/GetCustomFieldsResponse.md create mode 100644 src/gen/docs/models/GetCustomMappingResponse.md create mode 100644 src/gen/docs/models/GetResourceExampleResponse.md create mode 100644 src/gen/docs/models/GetResourceSchemaResponse.md create mode 100644 src/gen/docs/models/ResourceExample.md create mode 100644 src/gen/docs/models/SchemaSupport.md create mode 100644 src/gen/docs/models/UpdateCustomMappingRequest.md create mode 100644 src/gen/docs/models/UpdateCustomMappingResponse.md create mode 100644 src/gen/models/CreateCustomMappingRequest.ts create mode 100644 src/gen/models/CreateCustomMappingResponse.ts create mode 100644 src/gen/models/CustomFieldFinder.ts create mode 100644 src/gen/models/CustomMapping.ts create mode 100644 src/gen/models/GetConnectorResourceExampleResponse.ts create mode 100644 src/gen/models/GetConnectorResourceExampleResponseData.ts create mode 100644 src/gen/models/GetConnectorResourceSchemaResponse.ts create mode 100644 src/gen/models/GetCustomFieldsResponse.ts create mode 100644 src/gen/models/GetCustomMappingResponse.ts create mode 100644 src/gen/models/GetResourceExampleResponse.ts create mode 100644 src/gen/models/GetResourceSchemaResponse.ts create mode 100644 src/gen/models/ResourceExample.ts create mode 100644 src/gen/models/SchemaSupport.ts create mode 100644 src/gen/models/UpdateCustomMappingRequest.ts create mode 100644 src/gen/models/UpdateCustomMappingResponse.ts diff --git a/src/gen/.openapi-generator/FILES b/src/gen/.openapi-generator/FILES index 027a94469..13b6d1f4a 100644 --- a/src/gen/.openapi-generator/FILES +++ b/src/gen/.openapi-generator/FILES @@ -110,6 +110,8 @@ CreateConnectionResponse.md CreateConsumerResponse.md CreateContactResponse.md CreateCreditNoteResponse.md +CreateCustomMappingRequest.md +CreateCustomMappingResponse.md CreateCustomerResponse.md CreateDepartmentResponse.md CreateDriveGroupResponse.md @@ -162,6 +164,8 @@ CrmApiTest.api.test.ts CrmEventType.md Currency.md CustomField.md +CustomFieldFinder.md +CustomMapping.md Customer.md CustomersFilter.md Deduction.md @@ -290,7 +294,10 @@ GetCompanyInfoResponse.md GetCompanyResponse.md GetConnectionResponse.md GetConnectionsResponse.md +GetConnectorResourceExampleResponse.md +GetConnectorResourceExampleResponseData.md GetConnectorResourceResponse.md +GetConnectorResourceSchemaResponse.md GetConnectorResponse.md GetConnectorsResponse.md GetConsumerResponse.md @@ -300,6 +307,8 @@ GetContactResponse.md GetContactsResponse.md GetCreditNoteResponse.md GetCreditNotesResponse.md +GetCustomFieldsResponse.md +GetCustomMappingResponse.md GetCustomerResponse.md GetCustomersResponse.md GetDepartmentResponse.md @@ -371,6 +380,8 @@ GetProductsResponse.md GetProfitAndLossResponse.md GetPurchaseOrderResponse.md GetPurchaseOrdersResponse.md +GetResourceExampleResponse.md +GetResourceSchemaResponse.md GetSharedLinkResponse.md GetSharedLinksResponse.md GetStoreResponse.md @@ -513,10 +524,12 @@ RequestRate.md ResolveWebhookEventRequest.md ResolveWebhookEventsRequest.md ResolveWebhookResponse.md +ResourceExample.md ResourceStatus.md Schedule.md ScheduleWorkPattern.md ScheduleWorkPatternOddWeeks.md +SchemaSupport.md ServiceCharge.md ServiceCharges.md Session.md @@ -566,6 +579,8 @@ UpdateConsumerRequest.md UpdateConsumerResponse.md UpdateContactResponse.md UpdateCreditNoteResponse.md +UpdateCustomMappingRequest.md +UpdateCustomMappingResponse.md UpdateCustomerResponse.md UpdateDepartmentResponse.md UpdateDriveGroupResponse.md @@ -736,6 +751,8 @@ models/CreateConnectionResponse.ts models/CreateConsumerResponse.ts models/CreateContactResponse.ts models/CreateCreditNoteResponse.ts +models/CreateCustomMappingRequest.ts +models/CreateCustomMappingResponse.ts models/CreateCustomerResponse.ts models/CreateDepartmentResponse.ts models/CreateDriveGroupResponse.ts @@ -786,6 +803,8 @@ models/CreditNote.ts models/CrmEventType.ts models/Currency.ts models/CustomField.ts +models/CustomFieldFinder.ts +models/CustomMapping.ts models/Customer.ts models/CustomersFilter.ts models/Deduction.ts @@ -909,7 +928,10 @@ models/GetCompanyInfoResponse.ts models/GetCompanyResponse.ts models/GetConnectionResponse.ts models/GetConnectionsResponse.ts +models/GetConnectorResourceExampleResponse.ts +models/GetConnectorResourceExampleResponseData.ts models/GetConnectorResourceResponse.ts +models/GetConnectorResourceSchemaResponse.ts models/GetConnectorResponse.ts models/GetConnectorsResponse.ts models/GetConsumerResponse.ts @@ -919,6 +941,8 @@ models/GetContactResponse.ts models/GetContactsResponse.ts models/GetCreditNoteResponse.ts models/GetCreditNotesResponse.ts +models/GetCustomFieldsResponse.ts +models/GetCustomMappingResponse.ts models/GetCustomerResponse.ts models/GetCustomersResponse.ts models/GetDepartmentResponse.ts @@ -990,6 +1014,8 @@ models/GetProductsResponse.ts models/GetProfitAndLossResponse.ts models/GetPurchaseOrderResponse.ts models/GetPurchaseOrdersResponse.ts +models/GetResourceExampleResponse.ts +models/GetResourceSchemaResponse.ts models/GetSharedLinkResponse.ts models/GetSharedLinksResponse.ts models/GetStoreResponse.ts @@ -1125,10 +1151,12 @@ models/RequestRate.ts models/ResolveWebhookEventRequest.ts models/ResolveWebhookEventsRequest.ts models/ResolveWebhookResponse.ts +models/ResourceExample.ts models/ResourceStatus.ts models/Schedule.ts models/ScheduleWorkPattern.ts models/ScheduleWorkPatternOddWeeks.ts +models/SchemaSupport.ts models/ServiceCharge.ts models/ServiceCharges.ts models/Session.ts @@ -1176,6 +1204,8 @@ models/UpdateConsumerRequest.ts models/UpdateConsumerResponse.ts models/UpdateContactResponse.ts models/UpdateCreditNoteResponse.ts +models/UpdateCustomMappingRequest.ts +models/UpdateCustomMappingResponse.ts models/UpdateCustomerResponse.ts models/UpdateDepartmentResponse.ts models/UpdateDriveGroupResponse.ts diff --git a/src/gen/apis/VaultApi.ts b/src/gen/apis/VaultApi.ts index b5220a418..450b389dc 100644 --- a/src/gen/apis/VaultApi.ts +++ b/src/gen/apis/VaultApi.ts @@ -37,6 +37,8 @@ import { GetConsumerResponseFromJSON, GetConsumersResponse, GetConsumersResponseFromJSON, + GetCustomFieldsResponse, + GetCustomFieldsResponseFromJSON, GetLogsResponse, GetLogsResponseFromJSON, LogsFilter, @@ -139,6 +141,14 @@ export interface VaultApiConsumersUpdateRequest { appId?: string } +export interface VaultApiCustomFieldsAllRequest { + unifiedApi: string + serviceId: string + resource: string + consumerId?: string + appId?: string +} + export interface VaultApiLogsAllRequest { appId?: string consumerId?: string @@ -1033,6 +1043,81 @@ export class VaultApi extends runtime.BaseAPI { return await response.value() } + /** + * This endpoint returns an custom fields on a connection resource. + * Get resource custom fields + */ + async customFieldsAllRaw( + requestParameters: VaultApiCustomFieldsAllRequest, + initOverrides?: RequestInit + ): Promise> { + if (requestParameters.unifiedApi === null || requestParameters.unifiedApi === undefined) { + throw new runtime.RequiredError( + 'unifiedApi', + 'Required parameter requestParameters.unifiedApi was null or undefined when calling customFieldsAll.' + ) + } + + if (requestParameters.serviceId === null || requestParameters.serviceId === undefined) { + throw new runtime.RequiredError( + 'serviceId', + 'Required parameter requestParameters.serviceId was null or undefined when calling customFieldsAll.' + ) + } + + if (requestParameters.resource === null || requestParameters.resource === undefined) { + throw new runtime.RequiredError( + 'resource', + 'Required parameter requestParameters.resource was null or undefined when calling customFieldsAll.' + ) + } + + const queryParameters: any = {} + + const headerParameters: runtime.HTTPHeaders = {} + + if (requestParameters.consumerId !== undefined && requestParameters.consumerId !== null) { + headerParameters['x-apideck-consumer-id'] = String(requestParameters.consumerId) + } + + if (requestParameters.appId !== undefined && requestParameters.appId !== null) { + headerParameters['x-apideck-app-id'] = String(requestParameters.appId) + } + + if (this.configuration && this.configuration.apiKey) { + headerParameters['Authorization'] = this.configuration.apiKey('Authorization') // apiKey authentication + } + + const response = await this.request( + { + path: `/vault/connections/{unified_api}/{service_id}/{resource}/custom-fields` + .replace(`{${'unified_api'}}`, encodeURIComponent(String(requestParameters.unifiedApi))) + .replace(`{${'service_id'}}`, encodeURIComponent(String(requestParameters.serviceId))) + .replace(`{${'resource'}}`, encodeURIComponent(String(requestParameters.resource))), + method: 'GET', + headers: headerParameters, + query: queryParameters + }, + initOverrides + ) + + return new runtime.JSONApiResponse(response, jsonValue => + GetCustomFieldsResponseFromJSON(jsonValue) + ) + } + + /** + * This endpoint returns an custom fields on a connection resource. + * Get resource custom fields + */ + async customFieldsAll( + requestParameters: VaultApiCustomFieldsAllRequest, + initOverrides?: RequestInit + ): Promise { + const response = await this.customFieldsAllRaw(requestParameters, initOverrides) + return await response.value() + } + /** * This endpoint includes all consumer request logs. * Get all consumer request logs diff --git a/src/gen/docs/apis/AccountingApi.md b/src/gen/docs/apis/AccountingApi.md index 307eb13df..02172736f 100644 --- a/src/gen/docs/apis/AccountingApi.md +++ b/src/gen/docs/apis/AccountingApi.md @@ -289,7 +289,8 @@ const params = { currency: 'USD' }, discount_percentage: 5.5, - row_version: '1-12345' + row_version: '1-12345', + custom_mappings: {} } } @@ -676,7 +677,8 @@ const params = { currency: 'USD' }, discount_percentage: 5.5, - row_version: '1-12345' + row_version: '1-12345', + custom_mappings: {} } } @@ -869,6 +871,7 @@ const params = { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -881,6 +884,7 @@ const params = { ], note: 'Some notes about this credit note', terms: 'Some terms about this credit note', + custom_mappings: {}, row_version: '1-12345' } } @@ -1218,6 +1222,7 @@ const params = { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -1230,6 +1235,7 @@ const params = { ], note: 'Some notes about this credit note', terms: 'Some terms about this credit note', + custom_mappings: {}, row_version: '1-12345' } } @@ -1397,6 +1403,7 @@ const params = { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, row_version: '1-12345' } } @@ -1776,6 +1783,7 @@ const params = { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, row_version: '1-12345' } } @@ -1896,6 +1904,7 @@ const params = { name: 'New York' }, active: true, + custom_mappings: {}, row_version: '1-12345' } } @@ -2228,6 +2237,7 @@ const params = { name: 'New York' }, active: true, + custom_mappings: {}, row_version: '1-12345' } } @@ -2359,6 +2369,7 @@ const params = { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -2438,6 +2449,7 @@ const params = { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } } @@ -2781,6 +2793,7 @@ const params = { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -2860,6 +2873,7 @@ const params = { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } } @@ -3052,6 +3066,7 @@ const params = { tax_type: 'sales', tax_code: '1234', number: 'OIT00546', + custom_mappings: {}, row_version: '1-12345' } } @@ -3455,6 +3470,7 @@ const params = { tax_type: 'sales', tax_code: '1234', number: 'OIT00546', + custom_mappings: {}, row_version: '1-12345' } } @@ -3567,6 +3583,7 @@ const params = { }, sub_account: false, last_reconciliation_date: '2020-09-30', + custom_mappings: {}, row_version: '1-12345' } } @@ -3890,6 +3907,7 @@ const params = { }, sub_account: false, last_reconciliation_date: '2020-09-30', + custom_mappings: {}, row_version: '1-12345' } } @@ -4023,7 +4041,8 @@ const params = { ], note: 'Some notes about this payment', row_version: '1-12345', - display_id: '123456' + display_id: '123456', + custom_mappings: {} } } @@ -4368,7 +4387,8 @@ const params = { ], note: 'Some notes about this payment', row_version: '1-12345', - display_id: '123456' + display_id: '123456', + custom_mappings: {} } } @@ -4580,6 +4600,7 @@ const params = { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -4635,6 +4656,7 @@ const params = { tax_code: '1234', channel: 'email', memo: 'Thank you for the partnership and have a great day!', + custom_mappings: {}, row_version: '1-12345' } } @@ -4987,6 +5009,7 @@ const params = { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -5042,6 +5065,7 @@ const params = { tax_code: '1234', channel: 'email', memo: 'Thank you for the partnership and have a great day!', + custom_mappings: {}, row_version: '1-12345' } } @@ -5204,6 +5228,7 @@ const params = { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, row_version: '1-12345' } } @@ -5578,6 +5603,7 @@ const params = { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, row_version: '1-12345' } } @@ -5669,6 +5695,7 @@ const params = { report_tax_type: 'NONE', original_tax_rate_id: '12345', status: 'active', + custom_mappings: {}, row_version: '1-12345' } } @@ -5972,6 +5999,7 @@ const params = { report_tax_type: 'NONE', original_tax_rate_id: '12345', status: 'active', + custom_mappings: {}, row_version: '1-12345' } } diff --git a/src/gen/docs/apis/AtsApi.md b/src/gen/docs/apis/AtsApi.md index df04e3793..bbdca50d7 100644 --- a/src/gen/docs/apis/AtsApi.md +++ b/src/gen/docs/apis/AtsApi.md @@ -175,6 +175,7 @@ const params = { archived: false, owner_id: '54321', record_url: 'https://app.intercom.io/contacts/12345', + custom_mappings: {}, deleted: true } } @@ -562,6 +563,7 @@ const params = { archived: false, owner_id: '54321', record_url: 'https://app.intercom.io/contacts/12345', + custom_mappings: {}, deleted: true } } @@ -639,7 +641,8 @@ const params = { stage: { id: '12345', name: '12345' - } + }, + custom_mappings: {} } } @@ -925,7 +928,8 @@ const params = { stage: { id: '12345', name: '12345' - } + }, + custom_mappings: {} } } diff --git a/src/gen/docs/apis/ConnectorApi.md b/src/gen/docs/apis/ConnectorApi.md index 2858a6938..5fe789977 100644 --- a/src/gen/docs/apis/ConnectorApi.md +++ b/src/gen/docs/apis/ConnectorApi.md @@ -318,7 +318,7 @@ const apideck = new Apideck({ const params = { id: 'id_example', - docId: 'doc_id_example' + docId: 'application_owner+oauth_credentials' } try { diff --git a/src/gen/docs/apis/CrmApi.md b/src/gen/docs/apis/CrmApi.md index 5a19c577b..5bc4903cb 100644 --- a/src/gen/docs/apis/CrmApi.md +++ b/src/gen/docs/apis/CrmApi.md @@ -185,7 +185,8 @@ const params = { is_organizer: true, status: 'accepted' } - ] + ], + custom_mappings: {} } } @@ -554,7 +555,8 @@ const params = { is_organizer: true, status: 'accepted' } - ] + ], + custom_mappings: {} } } @@ -735,7 +737,8 @@ const params = { ], read_only: false, salutation: 'Mr', - birthday: '2000-08-12' + birthday: '2000-08-12', + custom_mappings: {} } } @@ -1129,7 +1132,8 @@ const params = { ], read_only: false, salutation: 'Mr', - birthday: '2000-08-12' + birthday: '2000-08-12', + custom_mappings: {} } } @@ -1294,7 +1298,8 @@ const params = { ], tags: [ 'New' - ] + ], + custom_mappings: {} } } @@ -1672,7 +1677,8 @@ const params = { ], tags: [ 'New' - ] + ], + custom_mappings: {} } } @@ -1828,7 +1834,8 @@ const params = { ], tags: [ 'New' - ] + ], + custom_mappings: {} } } @@ -2197,7 +2204,8 @@ const params = { ], tags: [ 'New' - ] + ], + custom_mappings: {} } } @@ -2275,7 +2283,8 @@ const params = { company_id: '12345', opportunity_id: '12345', lead_id: '12345', - active: true + active: true, + custom_mappings: {} } } @@ -2564,7 +2573,8 @@ const params = { company_id: '12345', opportunity_id: '12345', lead_id: '12345', - active: true + active: true, + custom_mappings: {} } } @@ -2673,7 +2683,8 @@ const params = { value: 'Uses Salesforce and Marketo' } ], - stage_last_changed_at: '2020-09-30T07:43:32.000Z' + stage_last_changed_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {} } } @@ -2995,7 +3006,8 @@ const params = { value: 'Uses Salesforce and Marketo' } ], - stage_last_changed_at: '2020-09-30T07:43:32.000Z' + stage_last_changed_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {} } } @@ -3505,7 +3517,8 @@ const params = { email: 'elon@musk.com', type: 'primary' } - ] + ], + custom_mappings: {} } } @@ -3845,7 +3858,8 @@ const params = { email: 'elon@musk.com', type: 'primary' } - ] + ], + custom_mappings: {} } } diff --git a/src/gen/docs/apis/FileStorageApi.md b/src/gen/docs/apis/FileStorageApi.md index 111e75d7f..c8bc43d61 100644 --- a/src/gen/docs/apis/FileStorageApi.md +++ b/src/gen/docs/apis/FileStorageApi.md @@ -92,7 +92,8 @@ const params = { driveGroup: { name: 'accounting', display_name: 'accounting', - description: 'A description' + description: 'A description', + custom_mappings: {} } } @@ -377,7 +378,8 @@ const params = { driveGroup: { name: 'accounting', display_name: 'accounting', - description: 'A description' + description: 'A description', + custom_mappings: {} } } @@ -449,7 +451,8 @@ const apideck = new Apideck({ const params = { drive: { name: 'Project Resources', - description: 'A description' + description: 'A description', + custom_mappings: {} } } @@ -732,7 +735,8 @@ const params = { id: 'id_example', drive: { name: 'Project Resources', - description: 'A description' + description: 'A description', + custom_mappings: {} } } diff --git a/src/gen/docs/apis/HrisApi.md b/src/gen/docs/apis/HrisApi.md index d755077db..523fcfad2 100644 --- a/src/gen/docs/apis/HrisApi.md +++ b/src/gen/docs/apis/HrisApi.md @@ -142,7 +142,8 @@ const params = { type: 'primary' } ], - debtor_id: '12345' + debtor_id: '12345', + custom_mappings: {} } } @@ -482,7 +483,8 @@ const params = { type: 'primary' } ], - debtor_id: '12345' + debtor_id: '12345', + custom_mappings: {} } } @@ -555,7 +557,8 @@ const params = { department: { name: 'R&D', code: '2', - description: 'R&D' + description: 'R&D', + custom_mappings: {} } } @@ -839,7 +842,8 @@ const params = { department: { name: 'R&D', code: '2', - description: 'R&D' + description: 'R&D', + custom_mappings: {} } } @@ -1141,7 +1145,8 @@ const params = { gender: 'male', initials: 'EM', birthday: '2000-08-12', - deceased_on: '2000-08-12' + deceased_on: '2000-08-12', + custom_mappings: {} }, division: 'Europe', division_id: '12345', @@ -1333,6 +1338,7 @@ const params = { tags: [ 'New' ], + custom_mappings: {}, row_version: '1-12345', deleted: true } @@ -1634,7 +1640,8 @@ const params = { gender: 'male', initials: 'EM', birthday: '2000-08-12', - deceased_on: '2000-08-12' + deceased_on: '2000-08-12', + custom_mappings: {} }, division: 'Europe', division_id: '12345', @@ -1826,6 +1833,7 @@ const params = { tags: [ 'New' ], + custom_mappings: {}, row_version: '1-12345', deleted: true } @@ -2051,7 +2059,8 @@ const params = { notes: { employee: 'Relaxing on the beach for a few hours.', manager: 'Enjoy!' - } + }, + custom_mappings: {} } } @@ -2348,7 +2357,8 @@ const params = { notes: { employee: 'Relaxing on the beach for a few hours.', manager: 'Enjoy!' - } + }, + custom_mappings: {} } } diff --git a/src/gen/docs/apis/IssueTrackingApi.md b/src/gen/docs/apis/IssueTrackingApi.md index 2c8ccbc09..365024873 100644 --- a/src/gen/docs/apis/IssueTrackingApi.md +++ b/src/gen/docs/apis/IssueTrackingApi.md @@ -151,7 +151,8 @@ const params = { collectionId: 'collection_id_example', ticketId: 'ticket_id_example', ticketComment: { - body: 'What internet provider do you use?' + body: 'What internet provider do you use?', + custom_mappings: {} } } @@ -453,7 +454,8 @@ const params = { collectionId: 'collection_id_example', ticketId: 'ticket_id_example', ticketComment: { - body: 'What internet provider do you use?' + body: 'What internet provider do you use?', + custom_mappings: {} } } @@ -540,9 +542,11 @@ const params = { due_date: '2020-09-30T07:43:32.000Z', tags: [ { - id: '12345' + id: '12345', + custom_mappings: {} } - ] + ], + custom_mappings: {} } } @@ -849,9 +853,11 @@ const params = { due_date: '2020-09-30T07:43:32.000Z', tags: [ { - id: '12345' + id: '12345', + custom_mappings: {} } - ] + ], + custom_mappings: {} } } diff --git a/src/gen/docs/apis/LeadApi.md b/src/gen/docs/apis/LeadApi.md index 5f1f5851a..e8f31b06f 100644 --- a/src/gen/docs/apis/LeadApi.md +++ b/src/gen/docs/apis/LeadApi.md @@ -149,7 +149,8 @@ const params = { ], tags: [ 'New' - ] + ], + custom_mappings: {} } } @@ -517,7 +518,8 @@ const params = { ], tags: [ 'New' - ] + ], + custom_mappings: {} } } diff --git a/src/gen/docs/apis/PosApi.md b/src/gen/docs/apis/PosApi.md index a8859bad7..fefab0ba7 100644 --- a/src/gen/docs/apis/PosApi.md +++ b/src/gen/docs/apis/PosApi.md @@ -170,6 +170,7 @@ const params = { ], available: true, hidden: true, + custom_mappings: {}, deleted: true } } @@ -516,6 +517,7 @@ const params = { ], available: true, hidden: true, + custom_mappings: {}, deleted: true } } @@ -617,7 +619,8 @@ const params = { }, status: 'active', merchant_id: '12345', - currency: 'USD' + currency: 'USD', + custom_mappings: {} } } @@ -928,7 +931,8 @@ const params = { }, status: 'active', merchant_id: '12345', - currency: 'USD' + currency: 'USD', + custom_mappings: {} } } @@ -1040,7 +1044,8 @@ const params = { } ], language: 'EN', - currency: 'USD' + currency: 'USD', + custom_mappings: {} } } @@ -1362,7 +1367,8 @@ const params = { } ], language: 'EN', - currency: 'USD' + currency: 'USD', + custom_mappings: {} } } @@ -1450,6 +1456,7 @@ const params = { } ], deleted: true, + custom_mappings: {}, row_version: '1-12345' } } @@ -1748,6 +1755,7 @@ const params = { } ], deleted: true, + custom_mappings: {}, row_version: '1-12345' } } @@ -1825,7 +1833,8 @@ const params = { price_amount: 10, currency: 'USD', modifier_group_id: '123', - available: true + available: true, + custom_mappings: {} } } @@ -2114,7 +2123,8 @@ const params = { price_amount: 10, currency: 'USD', modifier_group_id: '123', - available: true + available: true, + custom_mappings: {} } } @@ -2768,6 +2778,7 @@ const params = { } ], voided: false, + custom_mappings: {}, version: '230320320320' } } @@ -3280,6 +3291,7 @@ const params = { } ], voided: false, + custom_mappings: {}, version: '230320320320' } } @@ -3582,6 +3594,7 @@ const params = { } ], voided: false, + custom_mappings: {}, version: '230320320320' } } @@ -3760,7 +3773,8 @@ const params = { active: true, type: 'auto_gratuity' } - ] + ], + custom_mappings: {} } } @@ -4148,7 +4162,8 @@ const params = { active: true, type: 'auto_gratuity' } - ] + ], + custom_mappings: {} } } @@ -4225,7 +4240,8 @@ const params = { hidden: true, editable: true, opens_cash_drawer: true, - allows_tipping: true + allows_tipping: true, + custom_mappings: {} } } @@ -4512,7 +4528,8 @@ const params = { hidden: true, editable: true, opens_cash_drawer: true, - allows_tipping: true + allows_tipping: true, + custom_mappings: {} } } diff --git a/src/gen/docs/apis/SmsApi.md b/src/gen/docs/apis/SmsApi.md index 1b6f2b2ad..c5b985427 100644 --- a/src/gen/docs/apis/SmsApi.md +++ b/src/gen/docs/apis/SmsApi.md @@ -72,7 +72,8 @@ const params = { scheduled_at: '2020-09-30T07:43:32.000Z', webhook_url: 'https://unify.apideck.com/webhook/webhooks/eyz329dkffdl4949/x/sms', reference: 'CUST001', - messaging_service_id: '123456' + messaging_service_id: '123456', + custom_mappings: {} } } @@ -361,7 +362,8 @@ const params = { scheduled_at: '2020-09-30T07:43:32.000Z', webhook_url: 'https://unify.apideck.com/webhook/webhooks/eyz329dkffdl4949/x/sms', reference: 'CUST001', - messaging_service_id: '123456' + messaging_service_id: '123456', + custom_mappings: {} } } diff --git a/src/gen/docs/apis/VaultApi.md b/src/gen/docs/apis/VaultApi.md index fdd7d9e63..597bfe4bf 100644 --- a/src/gen/docs/apis/VaultApi.md +++ b/src/gen/docs/apis/VaultApi.md @@ -18,6 +18,7 @@ * [Delete Consumer](#consumersDelete) * [Get Consumer](#consumersOne) * [Update Consumer](#consumersUpdate) +* [Get Resource Custom Fields](#customFieldsAll) * [Get All Consumer Request Logs](#logsAll) * [Create Session](#sessionsCreate) @@ -37,7 +38,7 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **unifiedApi** | [**string**] | Unified API | **serviceId** | [**string**] | Service ID of the resource to return | - **resource** | [**string**] | Resource Name | + **resource** | [**string**] | Name of the resource (plural) | **consumerId** | [**string**] | ID of the consumer which you want to get or push data from | (optional) **appId** | [**string**] | The ID of your Unify application | (optional) @@ -109,7 +110,7 @@ Name | Type | Description | Notes **connection** | [Connection](../models/Connection.md)| Fields that need to be updated on the resource | **serviceId** | [**string**] | Service ID of the resource to return | **unifiedApi** | [**string**] | Unified API | - **resource** | [**string**] | Resource Name | + **resource** | [**string**] | Name of the resource (plural) | **consumerId** | [**string**] | ID of the consumer which you want to get or push data from | (optional) **appId** | [**string**] | The ID of your Unify application | (optional) @@ -172,6 +173,11 @@ const params = { } ] } + ], + custom_mappings: [ + { + value: '$.root.training.first_aid' + } ] } } @@ -558,6 +564,11 @@ const params = { } ] } + ], + custom_mappings: [ + { + value: '$.root.training.first_aid' + } ] } } @@ -984,6 +995,77 @@ try { ``` +[[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md) + + +# Get Resource Custom Fields + + +Method: **customFieldsAll** + +```typescript +vaultApi.customFieldsAll(body) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **unifiedApi** | [**string**] | Unified API | + **serviceId** | [**string**] | Service ID of the resource to return | + **resource** | [**string**] | Name of the resource (plural) | + **consumerId** | [**string**] | ID of the consumer which you want to get or push data from | (optional) + **appId** | [**string**] | The ID of your Unify application | (optional) + + + +### Response Type + +[`GetCustomFieldsResponse`](../models/GetCustomFieldsResponse.md) + + + +### HTTP response details +| Status code | Description | +|-------------|-------------| +**200** | Custom mapping | +**400** | Bad Request | +**401** | Unauthorized | +**402** | Payment Required | +**404** | The specified resource was not found | +**422** | Unprocessable | +4/5xx | Unexpected error | + + +## Example Usage + +```typescript +import { Apideck } from '@apideck/node'; + +const apideck = new Apideck({ + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +}); + +const params = { + unifiedApi: 'crm', + serviceId: 'pipedrive', + resource: 'leads' +} + +try { + const { data } = await apideck.vault.customFieldsAll(params) + console.log('API called successfully', data) +} catch (error) { + console.error(error) + return error.json() +} + + +``` + + [[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/Activity.md b/src/gen/docs/models/Activity.md index 389ea9bcb..ff14693ce 100644 --- a/src/gen/docs/models/Activity.md +++ b/src/gen/docs/models/Activity.md @@ -51,6 +51,7 @@ Name | Type | Description | Notes `video_conference_id` | **string** | The ID of the video conference | [optional] `custom_fields` | [**Array<CustomField>**](CustomField.md) | Custom fields of the activity | [optional] `attendees` | [**Array<ActivityAttendee>**](ActivityAttendee.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the activity | [optional] `created_by` | **string** | The user who created the activity | [optional] `updated_at` | **string** | The date and time when the activity was last updated | [optional] @@ -148,6 +149,7 @@ Name | Type | Description | Notes + --- [[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/Applicant.md b/src/gen/docs/models/Applicant.md index e1689127f..edc691c34 100644 --- a/src/gen/docs/models/Applicant.md +++ b/src/gen/docs/models/Applicant.md @@ -42,6 +42,7 @@ Name | Type | Description | Notes `cv_url` | **string** | | [optional] `record_url` | **string** | | [optional] `rejected_at` | **Date** | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `deleted` | **boolean** | Flag to indicate if the object is deleted. | [optional] `deleted_by` | **string** | The user who deleted the object. | [optional] `deleted_at` | **Date** | The time at which the object was deleted. | [optional] @@ -100,6 +101,7 @@ Name | Type | Description | Notes + --- [[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/Application.md b/src/gen/docs/models/Application.md index a568dd67c..282ad9f41 100644 --- a/src/gen/docs/models/Application.md +++ b/src/gen/docs/models/Application.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes `id` | **string** | A unique identifier for an object. | [optional] `status` | **string** | | [optional] `stage` | [**ApplicationStage**](ApplicationStage.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -47,6 +48,7 @@ Name | Type | Description | Notes + --- [[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/AtsActivity.md b/src/gen/docs/models/AtsActivity.md index be5228b39..fb6591c3c 100644 --- a/src/gen/docs/models/AtsActivity.md +++ b/src/gen/docs/models/AtsActivity.md @@ -6,6 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- `id` | **string** | A unique identifier for an object. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] diff --git a/src/gen/docs/models/BalanceSheet.md b/src/gen/docs/models/BalanceSheet.md index 8f411188a..0901d860b 100644 --- a/src/gen/docs/models/BalanceSheet.md +++ b/src/gen/docs/models/BalanceSheet.md @@ -12,6 +12,7 @@ Name | Type | Description | Notes `equity` | [**BalanceSheetEquity**](BalanceSheetEquity.md) | | `id` | **string** | A unique identifier for an object. | [optional] `end_date` | **string** | The start date of the report | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -34,6 +35,7 @@ Name | Type | Description | Notes + --- [[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/Bill.md b/src/gen/docs/models/Bill.md index 3a8abf76b..fe68dc231 100644 --- a/src/gen/docs/models/Bill.md +++ b/src/gen/docs/models/Bill.md @@ -39,6 +39,7 @@ Name | Type | Description | Notes `updated_at` | **Date** | The date and time when the object was last updated. | [optional] `created_at` | **Date** | The date and time when the object was created. | [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] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] @@ -103,6 +104,7 @@ Name | Type | Description | Notes + --- [[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/Collection.md b/src/gen/docs/models/Collection.md index 998bf2228..450a9b531 100644 --- a/src/gen/docs/models/Collection.md +++ b/src/gen/docs/models/Collection.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes `type` | **string** | The collections\'s type | [optional] `name` | **string** | Name of the collection | [optional] `description` | **string** | Description of the collection | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] `created_at` | **Date** | The date and time when the object was created. | [optional] diff --git a/src/gen/docs/models/CollectionTag.md b/src/gen/docs/models/CollectionTag.md index 0260d8d5b..885f0270e 100644 --- a/src/gen/docs/models/CollectionTag.md +++ b/src/gen/docs/models/CollectionTag.md @@ -7,6 +7,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- `id` | **string** | A unique identifier for an object. | `name` | **string** | The name of the tag. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] diff --git a/src/gen/docs/models/CollectionTicketComment.md b/src/gen/docs/models/CollectionTicketComment.md index bb49d769b..fa2191fe7 100644 --- a/src/gen/docs/models/CollectionTicketComment.md +++ b/src/gen/docs/models/CollectionTicketComment.md @@ -7,6 +7,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- `id` | **string** | A unique identifier for an object. | [optional] `body` | **string** | Body of the comment | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] `created_at` | **Date** | The date and time when the object was created. | [optional] diff --git a/src/gen/docs/models/CollectionUser.md b/src/gen/docs/models/CollectionUser.md index f70d0fba5..ef5bb3a5d 100644 --- a/src/gen/docs/models/CollectionUser.md +++ b/src/gen/docs/models/CollectionUser.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes `last_name` | **string** | Last name of the user | [optional] `email` | **string** | Email address of the user | [optional] `photo_url` | **string** | The URL of the photo of a person. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] `created_at` | **Date** | The date and time when the object was created. | [optional] diff --git a/src/gen/docs/models/Company.md b/src/gen/docs/models/Company.md index dd3e85f99..e3c97bddc 100644 --- a/src/gen/docs/models/Company.md +++ b/src/gen/docs/models/Company.md @@ -41,6 +41,7 @@ Name | Type | Description | Notes `deleted` | **boolean** | Whether the company is deleted or not | [optional] `salutation` | **string** | A formal salutation for the person. For example, \'Mr\', \'Mrs\' | [optional] `birthday` | **Date** | The date of birth of the person. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | Updated by user ID | [optional] `created_by` | **string** | Created by user ID | [optional] `updated_at` | **Date** | Last updated date | [optional] @@ -92,6 +93,7 @@ Name | Type | Description | Notes + --- [[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/CompanyInfo.md b/src/gen/docs/models/CompanyInfo.md index e718f2533..14eeec877 100644 --- a/src/gen/docs/models/CompanyInfo.md +++ b/src/gen/docs/models/CompanyInfo.md @@ -21,6 +21,7 @@ Name | Type | Description | Notes `addresses` | [**Array<Address>**](Address.md) | | [optional] `phone_numbers` | [**Array<PhoneNumber>**](PhoneNumber.md) | | [optional] `emails` | [**Array<Email>**](Email.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] @@ -96,6 +97,7 @@ Name | Type | Description | Notes + --- [[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/Connection.md b/src/gen/docs/models/Connection.md index 20553f869..e96932041 100644 --- a/src/gen/docs/models/Connection.md +++ b/src/gen/docs/models/Connection.md @@ -29,10 +29,12 @@ Name | Type | Description | Notes `resource_schema_support` | **Array<string>** | | [optional] `resource_settings_support` | **Array<string>** | | [optional] `validation_support` | **boolean** | | [optional] +`schema_support` | **boolean** | | [optional] `settings_required_for_authorization` | **Array<string>** | List of settings that are required to be configured on integration before authorization can occur | [optional] `subscriptions` | [**Array<WebhookSubscription>**](WebhookSubscription.md) | | [optional] `has_guide` | **boolean** | Whether the connector has a guide available in the developer docs or not (https://docs.apideck.com/connectors/{service_id}/docs/consumer+connection). | [optional] `created_at` | **number** | | [optional] +`custom_mappings` | [**Array<CustomMapping>**](CustomMapping.md) | List of custom mappings configured for this connection | [optional] `updated_at` | **number** | | [optional] @@ -78,9 +80,11 @@ Name | Type | Description | Notes + * [`WebhookSubscription`](WebhookSubscription.md) +* [`CustomMapping`](CustomMapping.md) --- diff --git a/src/gen/docs/models/Connector.md b/src/gen/docs/models/Connector.md index 3d9871e1e..eb903d73d 100644 --- a/src/gen/docs/models/Connector.md +++ b/src/gen/docs/models/Connector.md @@ -30,6 +30,7 @@ Name | Type | Description | Notes `configurable_resources` | **Array<string>** | List of resources that have settings that can be configured. | [optional] `supported_events` | [**Array<ConnectorEvent>**](ConnectorEvent.md) | List of events that are supported on the connector across all Unified APIs. | [optional] `webhook_support` | [**WebhookSupport**](WebhookSupport.md) | | [optional] +`schema_support` | [**SchemaSupport**](SchemaSupport.md) | | [optional] `docs` | [**Array<ConnectorDoc>**](ConnectorDoc.md) | | [optional] `tls_support` | [**ConnectorTlsSupport**](ConnectorTlsSupport.md) | | [optional] @@ -104,6 +105,7 @@ Name | Type | Description | Notes * [`ConnectorEvent`](ConnectorEvent.md) * [`WebhookSupport`](WebhookSupport.md) +* [`SchemaSupport`](SchemaSupport.md) * [`ConnectorDoc`](ConnectorDoc.md) * [`ConnectorTlsSupport`](ConnectorTlsSupport.md) diff --git a/src/gen/docs/models/Contact.md b/src/gen/docs/models/Contact.md index 87c4c958d..169d01b31 100644 --- a/src/gen/docs/models/Contact.md +++ b/src/gen/docs/models/Contact.md @@ -41,6 +41,7 @@ Name | Type | Description | Notes `first_call_at` | **Date** | The first call date of the contact. | [optional] `first_email_at` | **Date** | The first email date of the contact. | [optional] `last_activity_at` | **Date** | The last activity date of the contact. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_at` | **Date** | The last update date of the contact. | [optional] `created_at` | **Date** | The creation date of the contact. | [optional] @@ -116,6 +117,7 @@ Name | Type | Description | Notes + --- [[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/CreateCustomMappingRequest.md b/src/gen/docs/models/CreateCustomMappingRequest.md new file mode 100644 index 000000000..388694d63 --- /dev/null +++ b/src/gen/docs/models/CreateCustomMappingRequest.md @@ -0,0 +1,18 @@ +# Apideck.CreateCustomMappingRequest + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`value` | **string** | Target Field Mapping value | + + + + + +--- + +[[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/CreateCustomMappingResponse.md b/src/gen/docs/models/CreateCustomMappingResponse.md new file mode 100644 index 000000000..2340a6d6c --- /dev/null +++ b/src/gen/docs/models/CreateCustomMappingResponse.md @@ -0,0 +1,25 @@ +# Apideck.CreateCustomMappingResponse + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`status_code` | **number** | HTTP Response Status Code | +`status` | **string** | HTTP Response Status | +`data` | [**CustomMapping**](CustomMapping.md) | | + + + + + +## Referenced Types: + + +* [`CustomMapping`](CustomMapping.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/CreditNote.md b/src/gen/docs/models/CreditNote.md index fe5bc33cb..094c99f3f 100644 --- a/src/gen/docs/models/CreditNote.md +++ b/src/gen/docs/models/CreditNote.md @@ -27,6 +27,7 @@ Name | Type | Description | Notes `allocations` | **Array<object>** | | [optional] `note` | **string** | Optional note to be associated with the credit note. | [optional] `terms` | **string** | Optional terms to be associated with the credit note. | [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] @@ -94,6 +95,7 @@ Name | Type | Description | Notes + --- [[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/CustomFieldFinder.md b/src/gen/docs/models/CustomFieldFinder.md new file mode 100644 index 000000000..865b846d1 --- /dev/null +++ b/src/gen/docs/models/CustomFieldFinder.md @@ -0,0 +1,22 @@ +# Apideck.CustomFieldFinder + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`id` | **string** | Custom Field ID | [optional] +`name` | **string** | Custom Field name to use as a label if provided | [optional] +`description` | **string** | More information about the custom field | [optional] +`value` | **any** | Custom Field value | [optional] +`finder` | **string** | JSONPath finder for retrieving this value when mapping a response payload from downstream | [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/CustomMapping.md b/src/gen/docs/models/CustomMapping.md new file mode 100644 index 000000000..a4207c2b4 --- /dev/null +++ b/src/gen/docs/models/CustomMapping.md @@ -0,0 +1,25 @@ +# Apideck.CustomMapping + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`id` | **string** | Target Field ID | [optional] +`label` | **string** | Target Field name to use as a label | [optional] +`description` | **string** | Target Field description | [optional] +`value` | **string** | Target Field Mapping value | [optional] +`key` | **string** | Target Field Key | [optional] +`required` | **boolean** | Target Field Mapping is required | [optional] +`custom_field` | **boolean** | This mapping represents a finder for a custom field | [optional] +`consumer_id` | **string** | Consumer ID | [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/Customer.md b/src/gen/docs/models/Customer.md index b514661bf..62bbb1e0f 100644 --- a/src/gen/docs/models/Customer.md +++ b/src/gen/docs/models/Customer.md @@ -31,6 +31,7 @@ Name | Type | Description | Notes `status` | **string** | Customer status | [optional] `payment_method` | **string** | Payment method used for the transaction, such as cash, credit card, bank transfer, or check | [optional] `channel` | **string** | The channel through which the transaction is processed. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -91,6 +92,7 @@ Name | Type | Description | Notes + --- [[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/Department.md b/src/gen/docs/models/Department.md index 83907f012..a9fb051ab 100644 --- a/src/gen/docs/models/Department.md +++ b/src/gen/docs/models/Department.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes `name` | **string** | Department name | [optional] `code` | **string** | | [optional] `description` | **string** | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] diff --git a/src/gen/docs/models/Drive.md b/src/gen/docs/models/Drive.md index 8cfbf42c3..b86a93bfb 100644 --- a/src/gen/docs/models/Drive.md +++ b/src/gen/docs/models/Drive.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes `id` | **string** | A unique identifier for an object. | `name` | **string** | The name of the drive | `description` | **string** | A description of the object. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] diff --git a/src/gen/docs/models/DriveGroup.md b/src/gen/docs/models/DriveGroup.md index 7f4010633..56cca235a 100644 --- a/src/gen/docs/models/DriveGroup.md +++ b/src/gen/docs/models/DriveGroup.md @@ -9,6 +9,7 @@ Name | Type | Description | Notes `name` | **string** | The name of the drive group | `display_name` | **string** | The display name of the drive group | [optional] `description` | **string** | A description of the object. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] diff --git a/src/gen/docs/models/EcommerceCustomer.md b/src/gen/docs/models/EcommerceCustomer.md index 1edd3e83e..d2bc76d0a 100644 --- a/src/gen/docs/models/EcommerceCustomer.md +++ b/src/gen/docs/models/EcommerceCustomer.md @@ -16,6 +16,7 @@ Name | Type | Description | Notes `phone_numbers` | [**Array<PhoneNumber>**](PhoneNumber.md) | An array of phone numbers for the customer. | [optional] `addresses` | [**Array<EcommerceCustomerAddresses>**](EcommerceCustomerAddresses.md) | An array of addresses for the customer. | [optional] `orders` | [**Array<LinkedEcommerceOrder>**](LinkedEcommerceOrder.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `created_at` | **Date** | The date and time when the object was created. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -49,6 +50,7 @@ Name | Type | Description | Notes + --- [[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/EcommerceOrder.md b/src/gen/docs/models/EcommerceOrder.md index f8707b8f4..96c826cfd 100644 --- a/src/gen/docs/models/EcommerceOrder.md +++ b/src/gen/docs/models/EcommerceOrder.md @@ -24,6 +24,7 @@ Name | Type | Description | Notes `tracking` | [**Array<TrackingItem>**](TrackingItem.md) | | [optional] `line_items` | [**Array<EcommerceOrderLineItem>**](EcommerceOrderLineItem.md) | | [optional] `note` | **string** | Note for the order. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `created_at` | **Date** | The date and time when the object was created. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -96,6 +97,7 @@ Name | Type | Description | Notes + --- [[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/EcommerceProduct.md b/src/gen/docs/models/EcommerceProduct.md index 5032b8001..e8d660607 100644 --- a/src/gen/docs/models/EcommerceProduct.md +++ b/src/gen/docs/models/EcommerceProduct.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes `variants` | [**Array<EcommerceProductVariants>**](EcommerceProductVariants.md) | | [optional] `tags` | **Array<string>** | An array of tags for the product, used for organization and searching. | [optional] `categories` | [**Array<EcommerceProductCategories>**](EcommerceProductCategories.md) | An array of categories for the product, used for organization and searching. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `created_at` | **Date** | The date and time when the object was created. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -55,6 +56,7 @@ Name | Type | Description | Notes + --- [[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/EcommerceStore.md b/src/gen/docs/models/EcommerceStore.md index 61af909b3..58af3f3d6 100644 --- a/src/gen/docs/models/EcommerceStore.md +++ b/src/gen/docs/models/EcommerceStore.md @@ -9,6 +9,7 @@ Name | Type | Description | Notes `name` | **string** | The store\'s name | [optional] `store_url` | **string** | The store\'s website URL | [optional] `admin_url` | **string** | The store\'s admin login URL | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `created_at` | **Date** | The date and time when the object was created. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] diff --git a/src/gen/docs/models/Employee.md b/src/gen/docs/models/Employee.md index c6313385b..52e533680 100644 --- a/src/gen/docs/models/Employee.md +++ b/src/gen/docs/models/Employee.md @@ -63,6 +63,7 @@ Name | Type | Description | Notes `food_allergies` | **Array<string>** | Indicate the employee\'s food allergies. | [optional] `probation_period` | [**ProbationPeriod**](ProbationPeriod.md) | | [optional] `tags` | [**Tags**](Tags.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] `deleted` | **boolean** | Flag to indicate if the object is deleted. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] @@ -155,6 +156,7 @@ Name | Type | Description | Notes + --- [[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/Folder.md b/src/gen/docs/models/Folder.md index 753e9d3e5..1a611fd4e 100644 --- a/src/gen/docs/models/Folder.md +++ b/src/gen/docs/models/Folder.md @@ -13,6 +13,7 @@ Name | Type | Description | Notes `size` | **number** | The size of the folder in bytes | [optional] `owner` | [**Owner**](Owner.md) | | [optional] `parent_folders_complete` | **boolean** | Whether the list of parent folder is complete. Some connectors only return the direct parent of a folder | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -36,6 +37,7 @@ Name | Type | Description | Notes + --- [[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/GetConnectorResourceExampleResponse.md b/src/gen/docs/models/GetConnectorResourceExampleResponse.md new file mode 100644 index 000000000..6a4131f77 --- /dev/null +++ b/src/gen/docs/models/GetConnectorResourceExampleResponse.md @@ -0,0 +1,25 @@ +# Apideck.GetConnectorResourceExampleResponse + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`status_code` | **number** | HTTP Response Status Code | +`status` | **string** | HTTP Response Status | +`data` | [**GetConnectorResourceExampleResponseData**](GetConnectorResourceExampleResponseData.md) | | + + + + + +## Referenced Types: + + +* [`GetConnectorResourceExampleResponseData`](GetConnectorResourceExampleResponseData.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/GetConnectorResourceExampleResponseData.md b/src/gen/docs/models/GetConnectorResourceExampleResponseData.md new file mode 100644 index 000000000..f068657fd --- /dev/null +++ b/src/gen/docs/models/GetConnectorResourceExampleResponseData.md @@ -0,0 +1,27 @@ +# Apideck.GetConnectorResourceExampleResponseData + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`unified_api` | [**UnifiedApiId**](UnifiedApiId.md) | | [optional] +`service_id` | **string** | Service provider identifier | [optional] +`resource` | [**LinkedConnectorResource**](LinkedConnectorResource.md) | | [optional] +`example_response` | **object** | | [optional] + + + + + +## Referenced Types: +* [`UnifiedApiId`](UnifiedApiId.md) + +* [`LinkedConnectorResource`](LinkedConnectorResource.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/GetConnectorResourceSchemaResponse.md b/src/gen/docs/models/GetConnectorResourceSchemaResponse.md new file mode 100644 index 000000000..e8d494488 --- /dev/null +++ b/src/gen/docs/models/GetConnectorResourceSchemaResponse.md @@ -0,0 +1,20 @@ +# Apideck.GetConnectorResourceSchemaResponse + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`status_code` | **number** | HTTP Response Status Code | +`status` | **string** | HTTP Response Status | +`data` | **object** | | + + + + + +--- + +[[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/GetCustomFieldsResponse.md b/src/gen/docs/models/GetCustomFieldsResponse.md new file mode 100644 index 000000000..af1e6a227 --- /dev/null +++ b/src/gen/docs/models/GetCustomFieldsResponse.md @@ -0,0 +1,25 @@ +# Apideck.GetCustomFieldsResponse + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`status_code` | **number** | HTTP Response Status Code | +`status` | **string** | HTTP Response Status | +`data` | [**Array<CustomFieldFinder>**](CustomFieldFinder.md) | | + + + + + +## Referenced Types: + + +* [`CustomFieldFinder`](CustomFieldFinder.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/GetCustomMappingResponse.md b/src/gen/docs/models/GetCustomMappingResponse.md new file mode 100644 index 000000000..3675b9258 --- /dev/null +++ b/src/gen/docs/models/GetCustomMappingResponse.md @@ -0,0 +1,25 @@ +# Apideck.GetCustomMappingResponse + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`status_code` | **number** | HTTP Response Status Code | +`status` | **string** | HTTP Response Status | +`data` | [**CustomMapping**](CustomMapping.md) | | + + + + + +## Referenced Types: + + +* [`CustomMapping`](CustomMapping.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/GetResourceExampleResponse.md b/src/gen/docs/models/GetResourceExampleResponse.md new file mode 100644 index 000000000..6d3aee0f9 --- /dev/null +++ b/src/gen/docs/models/GetResourceExampleResponse.md @@ -0,0 +1,25 @@ +# Apideck.GetResourceExampleResponse + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`status_code` | **number** | HTTP Response Status Code | +`status` | **string** | HTTP Response Status | +`data` | [**ResourceExample**](ResourceExample.md) | | + + + + + +## Referenced Types: + + +* [`ResourceExample`](ResourceExample.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/GetResourceSchemaResponse.md b/src/gen/docs/models/GetResourceSchemaResponse.md new file mode 100644 index 000000000..03878a65c --- /dev/null +++ b/src/gen/docs/models/GetResourceSchemaResponse.md @@ -0,0 +1,20 @@ +# Apideck.GetResourceSchemaResponse + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`status_code` | **number** | HTTP Response Status Code | +`status` | **string** | HTTP Response Status | +`data` | **object** | | + + + + + +--- + +[[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/HrisCompany.md b/src/gen/docs/models/HrisCompany.md index 64109789c..7bb7457cc 100644 --- a/src/gen/docs/models/HrisCompany.md +++ b/src/gen/docs/models/HrisCompany.md @@ -17,6 +17,7 @@ Name | Type | Description | Notes `emails` | [**Array<Email>**](Email.md) | | [optional] `websites` | [**Array<Website>**](Website.md) | | [optional] `debtor_id` | **string** | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `deleted` | **boolean** | | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] @@ -61,6 +62,7 @@ Name | Type | Description | Notes + --- [[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/HrisJob.md b/src/gen/docs/models/HrisJob.md index 58ded176a..fe924cd44 100644 --- a/src/gen/docs/models/HrisJob.md +++ b/src/gen/docs/models/HrisJob.md @@ -14,6 +14,7 @@ Name | Type | Description | Notes `department` | **string** | Department name | [optional] `is_primary` | **boolean** | Indicates whether this the employee\'s primary job. | [optional] `location` | [**HrisJobLocation**](HrisJobLocation.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] @@ -30,6 +31,7 @@ Name | Type | Description | Notes * [`HrisJobLocation`](HrisJobLocation.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/Invoice.md b/src/gen/docs/models/Invoice.md index e5afd8907..7d97ba887 100644 --- a/src/gen/docs/models/Invoice.md +++ b/src/gen/docs/models/Invoice.md @@ -41,6 +41,7 @@ Name | Type | Description | Notes `accounting_by_row` | **boolean** | Indicates if accounting by row is used (true) or not (false). Accounting by row means that a separate ledger transaction is created for each row. | [optional] `bank_account` | [**BankAccount**](BankAccount.md) | | [optional] `ledger_account` | [**LinkedLedgerAccount**](LinkedLedgerAccount.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] @@ -136,6 +137,7 @@ Name | Type | Description | Notes + --- [[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/InvoiceItem.md b/src/gen/docs/models/InvoiceItem.md index 66d80c3cd..968f40946 100644 --- a/src/gen/docs/models/InvoiceItem.md +++ b/src/gen/docs/models/InvoiceItem.md @@ -24,6 +24,7 @@ Name | Type | Description | Notes `expense_account` | [**LinkedLedgerAccount**](LinkedLedgerAccount.md) | | [optional] `tracking_category` | [**LinkedTrackingCategory**](LinkedTrackingCategory.md) | | [optional] `active` | **boolean** | | [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] @@ -73,6 +74,7 @@ Name | Type | Description | Notes + --- [[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/InvoiceLineItem.md b/src/gen/docs/models/InvoiceLineItem.md index 625f90aa0..cabb4ece7 100644 --- a/src/gen/docs/models/InvoiceLineItem.md +++ b/src/gen/docs/models/InvoiceLineItem.md @@ -23,6 +23,7 @@ Name | Type | Description | Notes `item` | [**LinkedInvoiceItem**](LinkedInvoiceItem.md) | | [optional] `tax_rate` | [**LinkedTaxRate**](LinkedTaxRate.md) | | [optional] `ledger_account` | [**LinkedLedgerAccount**](LinkedLedgerAccount.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] @@ -73,6 +74,7 @@ Name | Type | Description | Notes + --- [[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/Item.md b/src/gen/docs/models/Item.md index 96fd6cc72..5ea72f5ea 100644 --- a/src/gen/docs/models/Item.md +++ b/src/gen/docs/models/Item.md @@ -31,6 +31,7 @@ Name | Type | Description | Notes `available` | **boolean** | | [optional] `hidden` | **boolean** | | [optional] `version` | **string** | The user who last updated the object. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `deleted` | **boolean** | Flag to indicate if the object is deleted. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] @@ -98,6 +99,7 @@ Name | Type | Description | Notes + --- diff --git a/src/gen/docs/models/Job.md b/src/gen/docs/models/Job.md index efecb9019..30c290ca8 100644 --- a/src/gen/docs/models/Job.md +++ b/src/gen/docs/models/Job.md @@ -42,6 +42,7 @@ Name | Type | Description | Notes `deleted` | **boolean** | Flag to indicate if the object is deleted. | [optional] `owner_id` | **string** | | [optional] `published_at` | **Date** | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -134,6 +135,7 @@ Name | Type | Description | Notes + --- [[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/JournalEntry.md b/src/gen/docs/models/JournalEntry.md index 4aec35342..9326ed15a 100644 --- a/src/gen/docs/models/JournalEntry.md +++ b/src/gen/docs/models/JournalEntry.md @@ -16,6 +16,7 @@ Name | Type | Description | Notes `tax_type` | **string** | The specific category of tax associated with a transaction like sales or purchase | [optional] `tax_code` | **string** | Applicable tax id/code override if tax is not supplied on a line item basis. | [optional] `number` | **string** | Journal entry number. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -44,6 +45,7 @@ Name | Type | Description | Notes + --- [[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/Lead.md b/src/gen/docs/models/Lead.md index b4532a9fa..8a92e84d7 100644 --- a/src/gen/docs/models/Lead.md +++ b/src/gen/docs/models/Lead.md @@ -29,6 +29,7 @@ Name | Type | Description | Notes `emails` | [**Array<Email>**](Email.md) | | [optional] `custom_fields` | [**Array<CustomField>**](CustomField.md) | | [optional] `tags` | [**Tags**](Tags.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_at` | **string** | Date updated in ISO 8601 format | [optional] `created_at` | **string** | Date created in ISO 8601 format | [optional] @@ -64,6 +65,7 @@ Name | Type | Description | Notes + --- [[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/LedgerAccount.md b/src/gen/docs/models/LedgerAccount.md index 28f6d43df..4a68ca371 100644 --- a/src/gen/docs/models/LedgerAccount.md +++ b/src/gen/docs/models/LedgerAccount.md @@ -30,6 +30,7 @@ Name | Type | Description | Notes `sub_account` | **boolean** | Whether the account is a sub account or not. | [optional] `sub_accounts` | **Array<object>** | The sub accounts of the account. | [optional] `last_reconciliation_date` | **Date** | Reconciliation Date means the last calendar day of each Reconciliation Period. | [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] @@ -157,6 +158,7 @@ Name | Type | Description | Notes + --- [[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/Location.md b/src/gen/docs/models/Location.md index ae3845da5..63dde83b3 100644 --- a/src/gen/docs/models/Location.md +++ b/src/gen/docs/models/Location.md @@ -12,6 +12,7 @@ Name | Type | Description | Notes `status` | **string** | Status of this location. | [optional] `merchant_id` | **string** | | [optional] `currency` | [**Currency**](Currency.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -47,6 +48,7 @@ Name | Type | Description | Notes + --- [[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/Merchant.md b/src/gen/docs/models/Merchant.md index 27c08be8f..8242e7a2c 100644 --- a/src/gen/docs/models/Merchant.md +++ b/src/gen/docs/models/Merchant.md @@ -14,6 +14,7 @@ Name | Type | Description | Notes `service_charges` | [**Array<ServiceCharge>**](ServiceCharge.md) | | [optional] `language` | **string** | language code according to ISO 639-1. For the United States - EN | [optional] `currency` | [**Currency**](Currency.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -51,6 +52,7 @@ Name | Type | Description | Notes + --- [[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/Message.md b/src/gen/docs/models/Message.md index 93b17c4a4..a865412f9 100644 --- a/src/gen/docs/models/Message.md +++ b/src/gen/docs/models/Message.md @@ -22,6 +22,7 @@ Name | Type | Description | Notes `price` | [**Price**](Price.md) | | [optional] `error` | **Error** | | [optional] `messaging_service_id` | **string** | The ID of the Messaging Service used with the message. In case of Plivo this links to the Powerpack ID. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -113,6 +114,7 @@ Name | Type | Description | Notes + --- [[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/Modifier.md b/src/gen/docs/models/Modifier.md index 2a01bf15d..783e217f8 100644 --- a/src/gen/docs/models/Modifier.md +++ b/src/gen/docs/models/Modifier.md @@ -13,6 +13,7 @@ Name | Type | Description | Notes `price_amount` | **number** | | [optional] `currency` | [**Currency**](Currency.md) | | [optional] `available` | **boolean** | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -36,6 +37,7 @@ Name | Type | Description | Notes + --- [[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/ModifierGroup.md b/src/gen/docs/models/ModifierGroup.md index 67c6dccf4..b2568da1c 100644 --- a/src/gen/docs/models/ModifierGroup.md +++ b/src/gen/docs/models/ModifierGroup.md @@ -14,6 +14,7 @@ Name | Type | Description | Notes `present_at_all_locations` | **boolean** | | [optional] `modifiers` | **Array<object>** | | [optional] `deleted` | **boolean** | Flag to indicate if the object is deleted. | [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] diff --git a/src/gen/docs/models/Note.md b/src/gen/docs/models/Note.md index 5db6355f0..89ca3ef5b 100644 --- a/src/gen/docs/models/Note.md +++ b/src/gen/docs/models/Note.md @@ -14,6 +14,7 @@ Name | Type | Description | Notes `opportunity_id` | **string** | The opportunity that is related to the note. | [optional] `lead_id` | **string** | The lead that is related to the note. | [optional] `active` | **boolean** | Whether the Note is active or not. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user that last updated the note. | [optional] `created_by` | **string** | The user that created the note. | [optional] `updated_at` | **string** | The timestamp when the note was last updated | [optional] diff --git a/src/gen/docs/models/Offer.md b/src/gen/docs/models/Offer.md index c04f7d86c..93530256a 100644 --- a/src/gen/docs/models/Offer.md +++ b/src/gen/docs/models/Offer.md @@ -7,6 +7,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- `id` | **string** | A unique identifier for an object. | [optional] `application_id` | **string** | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] diff --git a/src/gen/docs/models/Opportunity.md b/src/gen/docs/models/Opportunity.md index ac204e095..e926292ea 100644 --- a/src/gen/docs/models/Opportunity.md +++ b/src/gen/docs/models/Opportunity.md @@ -41,6 +41,7 @@ Name | Type | Description | Notes `date_stage_changed` | **Date** | The date and time when the stage of the opportunity was last changed. | [optional] `date_last_contacted` | **Date** | The date and time when the opportunity was last contacted. | [optional] `date_lead_created` | **Date** | The date and time when the lead associated with the opportunity was created. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The unique identifier of the user who last updated the opportunity. | [optional] `created_by` | **string** | The unique identifier of the user who created the opportunity. | [optional] `updated_at` | **Date** | The date and time when the opportunity was last updated. | [optional] @@ -92,6 +93,7 @@ Name | Type | Description | Notes + --- [[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/Order.md b/src/gen/docs/models/Order.md index b477bd681..afbe2d894 100644 --- a/src/gen/docs/models/Order.md +++ b/src/gen/docs/models/Order.md @@ -42,6 +42,7 @@ Name | Type | Description | Notes `source` | **string** | Source of order. Indicates the way that the order was placed. | [optional] `voided` | **boolean** | | [optional] `voided_at` | **Date** | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `version` | **string** | | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] @@ -161,6 +162,7 @@ Name | Type | Description | Notes + --- [[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/Payment.md b/src/gen/docs/models/Payment.md index f4acb9179..98a77030f 100644 --- a/src/gen/docs/models/Payment.md +++ b/src/gen/docs/models/Payment.md @@ -27,6 +27,7 @@ Name | Type | Description | Notes `note` | **string** | Optional note to be associated with the payment. | [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] `display_id` | **string** | Payment id to be displayed. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `created_at` | **Date** | The date and time when the object was created. | [optional] @@ -102,6 +103,7 @@ Name | Type | Description | Notes + --- [[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/Payroll.md b/src/gen/docs/models/Payroll.md index c403b9818..ac18de272 100644 --- a/src/gen/docs/models/Payroll.md +++ b/src/gen/docs/models/Payroll.md @@ -14,6 +14,7 @@ Name | Type | Description | Notes `processed_date` | **string** | The date the payroll was processed. | [optional] `totals` | [**PayrollTotals**](.md) | | [optional] `compensations` | [**Array<Compensation>**](Compensation.md) | An array of compensations for the payroll. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] @@ -30,6 +31,7 @@ Name | Type | Description | Notes * [``](.md) * [`Compensation`](Compensation.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/Person.md b/src/gen/docs/models/Person.md index d4b0e42f1..85b2cb5ff 100644 --- a/src/gen/docs/models/Person.md +++ b/src/gen/docs/models/Person.md @@ -13,6 +13,7 @@ Name | Type | Description | Notes `initials` | **string** | Initials of the person | [optional] `birthday` | **Date** | Date of birth | [optional] `deceased_on` | **Date** | Date of death | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] @@ -28,6 +29,7 @@ Name | Type | Description | Notes + --- [[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/PosPayment.md b/src/gen/docs/models/PosPayment.md index a378c92cb..15817b576 100644 --- a/src/gen/docs/models/PosPayment.md +++ b/src/gen/docs/models/PosPayment.md @@ -34,6 +34,7 @@ Name | Type | Description | Notes `wallet` | [**WalletDetails**](WalletDetails.md) | | [optional] `external_details` | [**PosPaymentExternalDetails**](PosPaymentExternalDetails.md) | | [optional] `service_charges` | [**ServiceCharges**](ServiceCharges.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -118,6 +119,7 @@ Name | Type | Description | Notes + --- [[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/ProfitAndLoss.md b/src/gen/docs/models/ProfitAndLoss.md index 013f4c199..8b63a4cc1 100644 --- a/src/gen/docs/models/ProfitAndLoss.md +++ b/src/gen/docs/models/ProfitAndLoss.md @@ -16,6 +16,7 @@ Name | Type | Description | Notes `net_income` | [**ProfitAndLossNetIncome**](ProfitAndLossNetIncome.md) | | [optional] `net_operating_income` | [**ProfitAndLossNetOperatingIncome**](ProfitAndLossNetOperatingIncome.md) | | [optional] `gross_profit` | [**ProfitAndLossGrossProfit**](ProfitAndLossGrossProfit.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] @@ -34,6 +35,7 @@ Name | Type | Description | Notes * [`ProfitAndLossNetOperatingIncome`](ProfitAndLossNetOperatingIncome.md) * [`ProfitAndLossGrossProfit`](ProfitAndLossGrossProfit.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/PurchaseOrder.md b/src/gen/docs/models/PurchaseOrder.md index 9aa04ec29..77a33b572 100644 --- a/src/gen/docs/models/PurchaseOrder.md +++ b/src/gen/docs/models/PurchaseOrder.md @@ -32,6 +32,7 @@ Name | Type | Description | Notes `tax_code` | **string** | Applicable tax id/code override if tax is not supplied on a line item basis. | [optional] `channel` | **string** | The channel through which the transaction is processed. | [optional] `memo` | **string** | Message for the supplier. This text appears on the Purchase Order. | [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] @@ -95,6 +96,7 @@ Name | Type | Description | Notes + --- [[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/ResourceExample.md b/src/gen/docs/models/ResourceExample.md new file mode 100644 index 000000000..e4da747a2 --- /dev/null +++ b/src/gen/docs/models/ResourceExample.md @@ -0,0 +1,27 @@ +# Apideck.ResourceExample + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`unified_api` | [**UnifiedApiId**](UnifiedApiId.md) | | [optional] +`service_id` | **string** | Service provider identifier | [optional] +`resource` | [**LinkedConnectorResource**](LinkedConnectorResource.md) | | [optional] +`example_response` | **object** | Example response from the downstream API | [optional] + + + + + +## Referenced Types: +* [`UnifiedApiId`](UnifiedApiId.md) + +* [`LinkedConnectorResource`](LinkedConnectorResource.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/SchemaSupport.md b/src/gen/docs/models/SchemaSupport.md new file mode 100644 index 000000000..08500dcbb --- /dev/null +++ b/src/gen/docs/models/SchemaSupport.md @@ -0,0 +1,20 @@ +# Apideck.SchemaSupport + +### Description + +When a connector has schema_support, a call can be made to retrieve a json schema that describes a downstream resource. + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`supported` | **boolean** | Can a resource schema be retrieved for this connector? | [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/Supplier.md b/src/gen/docs/models/Supplier.md index c5a34ab09..691233048 100644 --- a/src/gen/docs/models/Supplier.md +++ b/src/gen/docs/models/Supplier.md @@ -29,6 +29,7 @@ Name | Type | Description | Notes `status` | **string** | Supplier status | [optional] `payment_method` | **string** | Payment method used for the transaction, such as cash, credit card, bank transfer, or check | [optional] `channel` | **string** | The channel through which the transaction is processed. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -87,6 +88,7 @@ Name | Type | Description | Notes + --- [[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/TaxRate.md b/src/gen/docs/models/TaxRate.md index 89a193810..2e317efe8 100644 --- a/src/gen/docs/models/TaxRate.md +++ b/src/gen/docs/models/TaxRate.md @@ -18,6 +18,7 @@ Name | Type | Description | Notes `report_tax_type` | **string** | Report Tax type to aggregate tax collected or paid for reporting purposes | [optional] `original_tax_rate_id` | **string** | ID of the original tax rate from which the new tax rate is derived. Helps to understand the relationship between corresponding tax rate entities. | [optional] `status` | **string** | Tax rate status | [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] diff --git a/src/gen/docs/models/Tender.md b/src/gen/docs/models/Tender.md index 67c00a983..86b23bd01 100644 --- a/src/gen/docs/models/Tender.md +++ b/src/gen/docs/models/Tender.md @@ -13,6 +13,7 @@ Name | Type | Description | Notes `editable` | **boolean** | | [optional] `opens_cash_drawer` | **boolean** | If this tender opens the cash drawer | [optional] `allows_tipping` | **boolean** | Allow tipping on payment from tender | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] diff --git a/src/gen/docs/models/Ticket.md b/src/gen/docs/models/Ticket.md index c2d697089..9beb336a0 100644 --- a/src/gen/docs/models/Ticket.md +++ b/src/gen/docs/models/Ticket.md @@ -20,6 +20,7 @@ Name | Type | Description | Notes `due_date` | **Date** | Due date of the ticket | [optional] `completed_at` | **Date** | When the ticket was completed | [optional] `tags` | [**Array<CollectionTag>**](CollectionTag.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] @@ -57,6 +58,7 @@ Name | Type | Description | Notes * [`CollectionTag`](CollectionTag.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/TimeOffRequest.md b/src/gen/docs/models/TimeOffRequest.md index 65c503bee..c222caeff 100644 --- a/src/gen/docs/models/TimeOffRequest.md +++ b/src/gen/docs/models/TimeOffRequest.md @@ -18,6 +18,7 @@ Name | Type | Description | Notes `units` | **string** | The unit of time off requested. Possible values include: `hours`, `days`, or `other`. | [optional] `amount` | **number** | The amount of time off requested. | [optional] `notes` | [**TimeOffRequestNotes**](TimeOffRequestNotes.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -99,6 +100,7 @@ Name | Type | Description | Notes + --- [[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/UnifiedFile.md b/src/gen/docs/models/UnifiedFile.md index 648eb365f..81249e98d 100644 --- a/src/gen/docs/models/UnifiedFile.md +++ b/src/gen/docs/models/UnifiedFile.md @@ -20,6 +20,7 @@ Name | Type | Description | Notes `permissions` | [**UnifiedFilePermissions**](UnifiedFilePermissions.md) | | [optional] `exportable` | **boolean** | Whether the current file is exportable to other file formats. This property is relevant for proprietary file formats such as Google Docs or Dropbox Paper. | [optional] `export_formats` | **Array<string>** | The available file formats when exporting this file. | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_by` | **string** | The user who last updated the object. | [optional] `created_by` | **string** | The user who created the object. | [optional] `updated_at` | **Date** | The date and time when the object was last updated. | [optional] @@ -50,6 +51,7 @@ Name | Type | Description | Notes + --- [[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/UpdateCustomMappingRequest.md b/src/gen/docs/models/UpdateCustomMappingRequest.md new file mode 100644 index 000000000..f16c16708 --- /dev/null +++ b/src/gen/docs/models/UpdateCustomMappingRequest.md @@ -0,0 +1,18 @@ +# Apideck.UpdateCustomMappingRequest + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`value` | **string** | Target Field Mapping value | + + + + + +--- + +[[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/UpdateCustomMappingResponse.md b/src/gen/docs/models/UpdateCustomMappingResponse.md new file mode 100644 index 000000000..8ce73c3f5 --- /dev/null +++ b/src/gen/docs/models/UpdateCustomMappingResponse.md @@ -0,0 +1,25 @@ +# Apideck.UpdateCustomMappingResponse + +### Description + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +`status_code` | **number** | HTTP Response Status Code | +`status` | **string** | HTTP Response Status | +`data` | [**CustomMapping**](CustomMapping.md) | | + + + + + +## Referenced Types: + + +* [`CustomMapping`](CustomMapping.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/User.md b/src/gen/docs/models/User.md index b1b2082fd..7743d4481 100644 --- a/src/gen/docs/models/User.md +++ b/src/gen/docs/models/User.md @@ -23,6 +23,7 @@ Name | Type | Description | Notes `password` | **string** | The password of the user | [optional] `addresses` | [**Array<Address>**](Address.md) | | [optional] `phone_numbers` | [**Array<PhoneNumber>**](PhoneNumber.md) | | [optional] +`custom_mappings` | **object** | When custom mappings are configured on the resource, the result is included here. | [optional] `updated_at` | **string** | The date and time when the user was last updated. | [optional] `created_at` | **string** | The date and time when the user was created. | [optional] @@ -52,6 +53,7 @@ Name | Type | Description | Notes + --- [[Back to top]](#) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../../README.md) diff --git a/src/gen/models/Activity.ts b/src/gen/models/Activity.ts index 991a20800..05435d7dc 100644 --- a/src/gen/models/Activity.ts +++ b/src/gen/models/Activity.ts @@ -303,6 +303,12 @@ export interface Activity { * @memberof Activity */ attendees?: Array + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Activity + */ + custom_mappings?: object | null /** * The user who last updated the activity * @type {string} @@ -418,6 +424,7 @@ export function ActivityFromJSONTyped(json: any, ignoreDiscriminator: boolean): attendees: !exists(json, 'attendees') ? undefined : (json['attendees'] as Array).map(ActivityAttendeeFromJSON), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') ? undefined : json['updated_at'], @@ -481,6 +488,7 @@ export function ActivityToJSON(value?: Activity | null): any { attendees: value.attendees === undefined ? undefined - : (value.attendees as Array).map(ActivityAttendeeToJSON) + : (value.attendees as Array).map(ActivityAttendeeToJSON), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Applicant.ts b/src/gen/models/Applicant.ts index a8c67e15f..48a6cdac9 100644 --- a/src/gen/models/Applicant.ts +++ b/src/gen/models/Applicant.ts @@ -257,6 +257,12 @@ export interface Applicant { * @memberof Applicant */ readonly rejected_at?: Date | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Applicant + */ + custom_mappings?: object | null /** * Flag to indicate if the object is deleted. * @type {boolean} @@ -369,6 +375,7 @@ export function ApplicantFromJSONTyped(json: any, ignoreDiscriminator: boolean): : json['rejected_at'] === null ? null : new Date(json['rejected_at']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], deleted: !exists(json, 'deleted') ? undefined : json['deleted'], deleted_by: !exists(json, 'deleted_by') ? undefined : json['deleted_by'], deleted_at: !exists(json, 'deleted_at') @@ -449,6 +456,7 @@ export function ApplicantToJSON(value?: Applicant | null): any { archived: value.archived, owner_id: value.owner_id, record_url: value.record_url, + custom_mappings: value.custom_mappings, deleted: value.deleted } } diff --git a/src/gen/models/Application.ts b/src/gen/models/Application.ts index 16027a4b5..c1a000f49 100644 --- a/src/gen/models/Application.ts +++ b/src/gen/models/Application.ts @@ -55,6 +55,12 @@ export interface Application { * @memberof Application */ stage?: ApplicationStage + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Application + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -107,6 +113,7 @@ export function ApplicationFromJSONTyped(json: any, ignoreDiscriminator: boolean id: !exists(json, 'id') ? undefined : json['id'], status: !exists(json, 'status') ? undefined : json['status'], stage: !exists(json, 'stage') ? undefined : ApplicationStageFromJSON(json['stage']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -133,6 +140,7 @@ export function ApplicationToJSON(value?: Application | null): any { applicant_id: value.applicant_id, job_id: value.job_id, status: value.status, - stage: ApplicationStageToJSON(value.stage) + stage: ApplicationStageToJSON(value.stage), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/AtsActivity.ts b/src/gen/models/AtsActivity.ts index af30dc39c..0ca76ad9b 100644 --- a/src/gen/models/AtsActivity.ts +++ b/src/gen/models/AtsActivity.ts @@ -25,6 +25,12 @@ export interface AtsActivity { * @memberof AtsActivity */ readonly id?: string + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof AtsActivity + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -61,6 +67,7 @@ export function AtsActivityFromJSONTyped(json: any, ignoreDiscriminator: boolean } return { id: !exists(json, 'id') ? undefined : json['id'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -83,5 +90,7 @@ export function AtsActivityToJSON(value?: AtsActivity | null): any { if (value === null) { return null } - return {} + return { + custom_mappings: value.custom_mappings + } } diff --git a/src/gen/models/BalanceSheet.ts b/src/gen/models/BalanceSheet.ts index f1e3b934b..8aa947cd6 100644 --- a/src/gen/models/BalanceSheet.ts +++ b/src/gen/models/BalanceSheet.ts @@ -77,6 +77,12 @@ export interface BalanceSheet { * @memberof BalanceSheet */ end_date?: string + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof BalanceSheet + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -119,6 +125,7 @@ export function BalanceSheetFromJSONTyped(json: any, ignoreDiscriminator: boolea equity: BalanceSheetEquityFromJSON(json['equity']), id: !exists(json, 'id') ? undefined : json['id'], end_date: !exists(json, 'end_date') ? undefined : json['end_date'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -147,6 +154,7 @@ export function BalanceSheetToJSON(value?: BalanceSheet | null): any { assets: BalanceSheetAssetsToJSON(value.assets), liabilities: BalanceSheetLiabilitiesToJSON(value.liabilities), equity: BalanceSheetEquityToJSON(value.equity), - end_date: value.end_date + end_date: value.end_date, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Bill.ts b/src/gen/models/Bill.ts index b6c945c1c..76741792f 100644 --- a/src/gen/models/Bill.ts +++ b/src/gen/models/Bill.ts @@ -233,6 +233,12 @@ export interface Bill { * @memberof Bill */ row_version?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Bill + */ + custom_mappings?: object | null } /** @@ -312,7 +318,8 @@ export function BillFromJSONTyped(json: any, ignoreDiscriminator: boolean): Bill : json['created_at'] === null ? null : new Date(json['created_at']), - row_version: !exists(json, 'row_version') ? undefined : json['row_version'] + row_version: !exists(json, 'row_version') ? undefined : json['row_version'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'] } } @@ -365,6 +372,7 @@ export function BillToJSON(value?: Bill | null): any { accounting_by_row: value.accounting_by_row, bank_account: BankAccountToJSON(value.bank_account), discount_percentage: value.discount_percentage, - row_version: value.row_version + row_version: value.row_version, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Collection.ts b/src/gen/models/Collection.ts index ff9c5c1be..f353dd3e8 100644 --- a/src/gen/models/Collection.ts +++ b/src/gen/models/Collection.ts @@ -49,6 +49,12 @@ export interface Collection { * @memberof Collection */ description?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Collection + */ + custom_mappings?: object | null /** * The date and time when the object was last updated. * @type {Date} @@ -77,6 +83,7 @@ export function CollectionFromJSONTyped(json: any, ignoreDiscriminator: boolean) type: !exists(json, 'type') ? undefined : json['type'], name: !exists(json, 'name') ? undefined : json['name'], description: !exists(json, 'description') ? undefined : json['description'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_at: !exists(json, 'updated_at') ? undefined : json['updated_at'] === null @@ -101,6 +108,7 @@ export function CollectionToJSON(value?: Collection | null): any { parent_id: value.parent_id, type: value.type, name: value.name, - description: value.description + description: value.description, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/CollectionTag.ts b/src/gen/models/CollectionTag.ts index 50186293d..d9a30ee05 100644 --- a/src/gen/models/CollectionTag.ts +++ b/src/gen/models/CollectionTag.ts @@ -31,6 +31,12 @@ export interface CollectionTag { * @memberof CollectionTag */ readonly name?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof CollectionTag + */ + custom_mappings?: object | null } export function CollectionTagFromJSON(json: any): CollectionTag { @@ -43,7 +49,8 @@ export function CollectionTagFromJSONTyped(json: any, ignoreDiscriminator: boole } return { id: json['id'], - name: !exists(json, 'name') ? undefined : json['name'] + name: !exists(json, 'name') ? undefined : json['name'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'] } } @@ -55,6 +62,7 @@ export function CollectionTagToJSON(value?: CollectionTag | null): any { return null } return { - id: value.id + id: value.id, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/CollectionTicketComment.ts b/src/gen/models/CollectionTicketComment.ts index 734b3ee30..db3d855b1 100644 --- a/src/gen/models/CollectionTicketComment.ts +++ b/src/gen/models/CollectionTicketComment.ts @@ -31,6 +31,12 @@ export interface CollectionTicketComment { * @memberof CollectionTicketComment */ body?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof CollectionTicketComment + */ + custom_mappings?: object | null /** * The user who created the object. * @type {string} @@ -65,6 +71,7 @@ export function CollectionTicketCommentFromJSONTyped( return { id: !exists(json, 'id') ? undefined : json['id'], body: !exists(json, 'body') ? undefined : json['body'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') ? undefined @@ -87,6 +94,7 @@ export function CollectionTicketCommentToJSON(value?: CollectionTicketComment | return null } return { - body: value.body + body: value.body, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/CollectionUser.ts b/src/gen/models/CollectionUser.ts index ec2376467..ccf977f69 100644 --- a/src/gen/models/CollectionUser.ts +++ b/src/gen/models/CollectionUser.ts @@ -55,6 +55,12 @@ export interface CollectionUser { * @memberof CollectionUser */ photo_url?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof CollectionUser + */ + custom_mappings?: object | null /** * The date and time when the object was last updated. * @type {Date} @@ -87,6 +93,7 @@ export function CollectionUserFromJSONTyped( last_name: !exists(json, 'last_name') ? undefined : json['last_name'], email: !exists(json, 'email') ? undefined : json['email'], photo_url: !exists(json, 'photo_url') ? undefined : json['photo_url'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_at: !exists(json, 'updated_at') ? undefined : json['updated_at'] === null @@ -112,6 +119,7 @@ export function CollectionUserToJSON(value?: CollectionUser | null): any { first_name: value.first_name, last_name: value.last_name, email: value.email, - photo_url: value.photo_url + photo_url: value.photo_url, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Company.ts b/src/gen/models/Company.ts index 530df85a5..77afa32a1 100644 --- a/src/gen/models/Company.ts +++ b/src/gen/models/Company.ts @@ -246,6 +246,12 @@ export interface Company { * @memberof Company */ birthday?: Date | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Company + */ + custom_mappings?: object | null /** * Updated by user ID * @type {string} @@ -339,6 +345,7 @@ export function CompanyFromJSONTyped(json: any, ignoreDiscriminator: boolean): C : json['birthday'] === null ? null : new Date(json['birthday']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -413,6 +420,7 @@ export function CompanyToJSON(value?: Company | null): any { ? undefined : value.birthday === null ? null - : new Date(value.birthday).toISOString().substr(0, 10) + : new Date(value.birthday).toISOString().substr(0, 10), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/CompanyInfo.ts b/src/gen/models/CompanyInfo.ts index b297d3da0..5c0c35a44 100644 --- a/src/gen/models/CompanyInfo.ts +++ b/src/gen/models/CompanyInfo.ts @@ -121,6 +121,12 @@ export interface CompanyInfo { * @memberof CompanyInfo */ emails?: Array + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof CompanyInfo + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -217,6 +223,7 @@ export function CompanyInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean ? undefined : (json['phone_numbers'] as Array).map(PhoneNumberFromJSON), emails: !exists(json, 'emails') ? undefined : (json['emails'] as Array).map(EmailFromJSON), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -265,6 +272,7 @@ export function CompanyInfoToJSON(value?: CompanyInfo | null): any { ? undefined : (value.phone_numbers as Array).map(PhoneNumberToJSON), emails: value.emails === undefined ? undefined : (value.emails as Array).map(EmailToJSON), + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/Connection.ts b/src/gen/models/Connection.ts index 2e088c3cc..7c5429261 100644 --- a/src/gen/models/Connection.ts +++ b/src/gen/models/Connection.ts @@ -20,6 +20,7 @@ import { ConnectionConfigurationToJSON } from './ConnectionConfiguration' import { ConnectionState, ConnectionStateFromJSON, ConnectionStateToJSON } from './ConnectionState' +import { CustomMapping, CustomMappingFromJSON, CustomMappingToJSON } from './CustomMapping' import { FormField, FormFieldFromJSON } from './FormField' import { IntegrationState, @@ -179,6 +180,12 @@ export interface Connection { * @memberof Connection */ readonly validation_support?: boolean + /** + * + * @type {boolean} + * @memberof Connection + */ + readonly schema_support?: boolean /** * List of settings that are required to be configured on integration before authorization can occur * @type {Array} @@ -203,6 +210,12 @@ export interface Connection { * @memberof Connection */ readonly created_at?: number + /** + * List of custom mappings configured for this connection + * @type {Array} + * @memberof Connection + */ + custom_mappings?: Array /** * * @type {number} @@ -270,6 +283,7 @@ export function ConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean) validation_support: !exists(json, 'validation_support') ? undefined : json['validation_support'], + schema_support: !exists(json, 'schema_support') ? undefined : json['schema_support'], settings_required_for_authorization: !exists(json, 'settings_required_for_authorization') ? undefined : json['settings_required_for_authorization'], @@ -278,6 +292,9 @@ export function ConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean) : (json['subscriptions'] as Array).map(WebhookSubscriptionFromJSON), has_guide: !exists(json, 'has_guide') ? undefined : json['has_guide'], created_at: !exists(json, 'created_at') ? undefined : json['created_at'], + custom_mappings: !exists(json, 'custom_mappings') + ? undefined + : (json['custom_mappings'] as Array).map(CustomMappingFromJSON), updated_at: !exists(json, 'updated_at') ? undefined : json['updated_at'] } } @@ -300,6 +317,10 @@ export function ConnectionToJSON(value?: Connection | null): any { configuration: value._configuration === undefined ? undefined - : (value._configuration as Array).map(ConnectionConfigurationToJSON) + : (value._configuration as Array).map(ConnectionConfigurationToJSON), + custom_mappings: + value.custom_mappings === undefined + ? undefined + : (value.custom_mappings as Array).map(CustomMappingToJSON) } } diff --git a/src/gen/models/Connector.ts b/src/gen/models/Connector.ts index 67fe6592f..58fc1648e 100644 --- a/src/gen/models/Connector.ts +++ b/src/gen/models/Connector.ts @@ -41,6 +41,7 @@ import { LinkedConnectorResourceFromJSON, LinkedConnectorResourceToJSON } from './LinkedConnectorResource' +import { SchemaSupport, SchemaSupportFromJSON, SchemaSupportToJSON } from './SchemaSupport' import { WebhookSupport, WebhookSupportFromJSON, WebhookSupportToJSON } from './WebhookSupport' /** @@ -199,6 +200,12 @@ export interface Connector { * @memberof Connector */ webhook_support?: WebhookSupport + /** + * + * @type {SchemaSupport} + * @memberof Connector + */ + schema_support?: SchemaSupport /** * * @type {Array} @@ -298,6 +305,9 @@ export function ConnectorFromJSONTyped(json: any, ignoreDiscriminator: boolean): webhook_support: !exists(json, 'webhook_support') ? undefined : WebhookSupportFromJSON(json['webhook_support']), + schema_support: !exists(json, 'schema_support') + ? undefined + : SchemaSupportFromJSON(json['schema_support']), docs: !exists(json, 'docs') ? undefined : (json['docs'] as Array).map(ConnectorDocFromJSON), @@ -348,6 +358,7 @@ export function ConnectorToJSON(value?: Connector | null): any { ? undefined : (value.supported_events as Array).map(ConnectorEventToJSON), webhook_support: WebhookSupportToJSON(value.webhook_support), + schema_support: SchemaSupportToJSON(value.schema_support), docs: value.docs === undefined ? undefined : (value.docs as Array).map(ConnectorDocToJSON), tls_support: ConnectorTlsSupportToJSON(value.tls_support) } diff --git a/src/gen/models/Contact.ts b/src/gen/models/Contact.ts index 296b71f18..f50e416eb 100644 --- a/src/gen/models/Contact.ts +++ b/src/gen/models/Contact.ts @@ -243,6 +243,12 @@ export interface Contact { * @memberof Contact */ readonly last_activity_at?: Date | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Contact + */ + custom_mappings?: object | null /** * The last update date of the contact. * @type {Date} @@ -344,6 +350,7 @@ export function ContactFromJSONTyped(json: any, ignoreDiscriminator: boolean): C : json['last_activity_at'] === null ? null : new Date(json['last_activity_at']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_at: !exists(json, 'updated_at') ? undefined : json['updated_at'] === null @@ -409,6 +416,7 @@ export function ContactToJSON(value?: Contact | null): any { value.custom_fields === undefined ? undefined : (value.custom_fields as Array).map(CustomFieldToJSON), - tags: TagsToJSON(value.tags) + tags: TagsToJSON(value.tags), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/CreateCustomMappingRequest.ts b/src/gen/models/CreateCustomMappingRequest.ts new file mode 100644 index 000000000..fd9f81eb8 --- /dev/null +++ b/src/gen/models/CreateCustomMappingRequest.ts @@ -0,0 +1,42 @@ +/* tslint:disable */ +/** + * + * @export + * @interface CreateCustomMappingRequest + */ +export interface CreateCustomMappingRequest { + /** + * Target Field Mapping value + * @type {string} + * @memberof CreateCustomMappingRequest + */ + value: string +} + +export function CreateCustomMappingRequestFromJSON(json: any): CreateCustomMappingRequest { + return CreateCustomMappingRequestFromJSONTyped(json, false) +} + +export function CreateCustomMappingRequestFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): CreateCustomMappingRequest { + if (json === undefined || json === null) { + return json + } + return { + value: json['value'] + } +} + +export function CreateCustomMappingRequestToJSON(value?: CreateCustomMappingRequest | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + value: value.value + } +} diff --git a/src/gen/models/CreateCustomMappingResponse.ts b/src/gen/models/CreateCustomMappingResponse.ts new file mode 100644 index 000000000..c72c8822d --- /dev/null +++ b/src/gen/models/CreateCustomMappingResponse.ts @@ -0,0 +1,73 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { CustomMapping, CustomMappingFromJSON, CustomMappingToJSON } from './CustomMapping' + +/** + * + * @export + * @interface CreateCustomMappingResponse + */ +export interface CreateCustomMappingResponse { + /** + * HTTP Response Status Code + * @type {number} + * @memberof CreateCustomMappingResponse + */ + status_code: number + /** + * HTTP Response Status + * @type {string} + * @memberof CreateCustomMappingResponse + */ + status: string + /** + * + * @type {CustomMapping} + * @memberof CreateCustomMappingResponse + */ + data: CustomMapping +} + +export function CreateCustomMappingResponseFromJSON(json: any): CreateCustomMappingResponse { + return CreateCustomMappingResponseFromJSONTyped(json, false) +} + +export function CreateCustomMappingResponseFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): CreateCustomMappingResponse { + if (json === undefined || json === null) { + return json + } + return { + status_code: json['status_code'], + status: json['status'], + data: CustomMappingFromJSON(json['data']) + } +} + +export function CreateCustomMappingResponseToJSON(value?: CreateCustomMappingResponse | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + status_code: value.status_code, + status: value.status, + data: CustomMappingToJSON(value.data) + } +} diff --git a/src/gen/models/CreditNote.ts b/src/gen/models/CreditNote.ts index a1251e458..0fab24745 100644 --- a/src/gen/models/CreditNote.ts +++ b/src/gen/models/CreditNote.ts @@ -160,6 +160,12 @@ export interface CreditNote { * @memberof CreditNote */ terms?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof CreditNote + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -249,6 +255,7 @@ export function CreditNoteFromJSONTyped(json: any, ignoreDiscriminator: boolean) allocations: !exists(json, 'allocations') ? undefined : json['allocations'], note: !exists(json, 'note') ? undefined : json['note'], terms: !exists(json, 'terms') ? undefined : json['terms'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -303,6 +310,7 @@ export function CreditNoteToJSON(value?: CreditNote | null): any { allocations: value.allocations, note: value.note, terms: value.terms, + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/CustomFieldFinder.ts b/src/gen/models/CustomFieldFinder.ts new file mode 100644 index 000000000..657e8907a --- /dev/null +++ b/src/gen/models/CustomFieldFinder.ts @@ -0,0 +1,85 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { exists } from '../runtime' +/** + * + * @export + * @interface CustomFieldFinder + */ +export interface CustomFieldFinder { + /** + * Custom Field ID + * @type {string} + * @memberof CustomFieldFinder + */ + readonly id?: string + /** + * Custom Field name to use as a label if provided + * @type {string} + * @memberof CustomFieldFinder + */ + readonly name?: string | null + /** + * More information about the custom field + * @type {string} + * @memberof CustomFieldFinder + */ + description?: string | null + /** + * Custom Field value + * @type {any} + * @memberof CustomFieldFinder + */ + value?: any | null + /** + * JSONPath finder for retrieving this value when mapping a response payload from downstream + * @type {string} + * @memberof CustomFieldFinder + */ + readonly finder?: string +} + +export function CustomFieldFinderFromJSON(json: any): CustomFieldFinder { + return CustomFieldFinderFromJSONTyped(json, false) +} + +export function CustomFieldFinderFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): CustomFieldFinder { + if (json === undefined || json === null) { + return json + } + return { + id: !exists(json, 'id') ? undefined : json['id'], + name: !exists(json, 'name') ? undefined : json['name'], + description: !exists(json, 'description') ? undefined : json['description'], + value: !exists(json, 'value') ? undefined : json['value'], + finder: !exists(json, 'finder') ? undefined : json['finder'] + } +} + +export function CustomFieldFinderToJSON(value?: CustomFieldFinder | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + description: value.description, + value: value.value + } +} diff --git a/src/gen/models/CustomMapping.ts b/src/gen/models/CustomMapping.ts new file mode 100644 index 000000000..6abf5a9fd --- /dev/null +++ b/src/gen/models/CustomMapping.ts @@ -0,0 +1,102 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { exists } from '../runtime' +/** + * + * @export + * @interface CustomMapping + */ +export interface CustomMapping { + /** + * Target Field ID + * @type {string} + * @memberof CustomMapping + */ + readonly id?: string + /** + * Target Field name to use as a label + * @type {string} + * @memberof CustomMapping + */ + readonly label?: string + /** + * Target Field description + * @type {string} + * @memberof CustomMapping + */ + readonly description?: string | null + /** + * Target Field Mapping value + * @type {string} + * @memberof CustomMapping + */ + value?: string + /** + * Target Field Key + * @type {string} + * @memberof CustomMapping + */ + readonly key?: string + /** + * Target Field Mapping is required + * @type {boolean} + * @memberof CustomMapping + */ + readonly required?: boolean + /** + * This mapping represents a finder for a custom field + * @type {boolean} + * @memberof CustomMapping + */ + readonly custom_field?: boolean + /** + * Consumer ID + * @type {string} + * @memberof CustomMapping + */ + readonly consumer_id?: string | null +} + +export function CustomMappingFromJSON(json: any): CustomMapping { + return CustomMappingFromJSONTyped(json, false) +} + +export function CustomMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomMapping { + if (json === undefined || json === null) { + return json + } + return { + id: !exists(json, 'id') ? undefined : json['id'], + label: !exists(json, 'label') ? undefined : json['label'], + description: !exists(json, 'description') ? undefined : json['description'], + value: !exists(json, 'value') ? undefined : json['value'], + key: !exists(json, 'key') ? undefined : json['key'], + required: !exists(json, 'required') ? undefined : json['required'], + custom_field: !exists(json, 'custom_field') ? undefined : json['custom_field'], + consumer_id: !exists(json, 'consumer_id') ? undefined : json['consumer_id'] + } +} + +export function CustomMappingToJSON(value?: CustomMapping | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + value: value.value + } +} diff --git a/src/gen/models/Customer.ts b/src/gen/models/Customer.ts index abe1decef..7025a4615 100644 --- a/src/gen/models/Customer.ts +++ b/src/gen/models/Customer.ts @@ -193,6 +193,12 @@ export interface Customer { * @memberof Customer */ channel?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Customer + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -280,6 +286,7 @@ export function CustomerFromJSONTyped(json: any, ignoreDiscriminator: boolean): status: !exists(json, 'status') ? undefined : json['status'], payment_method: !exists(json, 'payment_method') ? undefined : json['payment_method'], channel: !exists(json, 'channel') ? undefined : json['channel'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -338,6 +345,7 @@ export function CustomerToJSON(value?: Customer | null): any { status: value.status, payment_method: value.payment_method, channel: value.channel, + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/Department.ts b/src/gen/models/Department.ts index d500ea642..7eef2c530 100644 --- a/src/gen/models/Department.ts +++ b/src/gen/models/Department.ts @@ -49,6 +49,12 @@ export interface Department { * @memberof Department */ description?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Department + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -89,6 +95,7 @@ export function DepartmentFromJSONTyped(json: any, ignoreDiscriminator: boolean) name: !exists(json, 'name') ? undefined : json['name'], code: !exists(json, 'code') ? undefined : json['code'], description: !exists(json, 'description') ? undefined : json['description'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -114,6 +121,7 @@ export function DepartmentToJSON(value?: Department | null): any { return { name: value.name, code: value.code, - description: value.description + description: value.description, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Drive.ts b/src/gen/models/Drive.ts index 3c06feedb..5d521b467 100644 --- a/src/gen/models/Drive.ts +++ b/src/gen/models/Drive.ts @@ -37,6 +37,12 @@ export interface Drive { * @memberof Drive */ description?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Drive + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -75,6 +81,7 @@ export function DriveFromJSONTyped(json: any, ignoreDiscriminator: boolean): Dri id: json['id'], name: json['name'], description: !exists(json, 'description') ? undefined : json['description'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -99,6 +106,7 @@ export function DriveToJSON(value?: Drive | null): any { } return { name: value.name, - description: value.description + description: value.description, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/DriveGroup.ts b/src/gen/models/DriveGroup.ts index b54eb8bfd..b0f68cb67 100644 --- a/src/gen/models/DriveGroup.ts +++ b/src/gen/models/DriveGroup.ts @@ -43,6 +43,12 @@ export interface DriveGroup { * @memberof DriveGroup */ description?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof DriveGroup + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -82,6 +88,7 @@ export function DriveGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean) name: json['name'], display_name: !exists(json, 'display_name') ? undefined : json['display_name'], description: !exists(json, 'description') ? undefined : json['description'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -107,6 +114,7 @@ export function DriveGroupToJSON(value?: DriveGroup | null): any { return { name: value.name, display_name: value.display_name, - description: value.description + description: value.description, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/EcommerceCustomer.ts b/src/gen/models/EcommerceCustomer.ts index 6500ec5be..e6497624b 100644 --- a/src/gen/models/EcommerceCustomer.ts +++ b/src/gen/models/EcommerceCustomer.ts @@ -99,6 +99,12 @@ export interface EcommerceCustomer { * @memberof EcommerceCustomer */ orders?: Array + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof EcommerceCustomer + */ + custom_mappings?: object | null /** * The date and time when the object was created. * @type {Date} @@ -157,6 +163,7 @@ export function EcommerceCustomerFromJSONTyped( orders: !exists(json, 'orders') ? undefined : (json['orders'] as Array).map(LinkedEcommerceOrderFromJSON), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], created_at: !exists(json, 'created_at') ? undefined : json['created_at'] === null @@ -203,6 +210,7 @@ export function EcommerceCustomerToJSON(value?: EcommerceCustomer | null): any { orders: value.orders === undefined ? undefined - : (value.orders as Array).map(LinkedEcommerceOrderToJSON) + : (value.orders as Array).map(LinkedEcommerceOrderToJSON), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/EcommerceOrder.ts b/src/gen/models/EcommerceOrder.ts index 981ff4c24..a56fd5e37 100644 --- a/src/gen/models/EcommerceOrder.ts +++ b/src/gen/models/EcommerceOrder.ts @@ -161,6 +161,12 @@ export interface EcommerceOrder { * @memberof EcommerceOrder */ note?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof EcommerceOrder + */ + custom_mappings?: object | null /** * The date and time when the object was created. * @type {Date} @@ -247,6 +253,7 @@ export function EcommerceOrderFromJSONTyped( ? undefined : (json['line_items'] as Array).map(EcommerceOrderLineItemFromJSON), note: !exists(json, 'note') ? undefined : json['note'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], created_at: !exists(json, 'created_at') ? undefined : json['created_at'] === null @@ -294,6 +301,7 @@ export function EcommerceOrderToJSON(value?: EcommerceOrder | null): any { value.line_items === undefined ? undefined : (value.line_items as Array).map(EcommerceOrderLineItemToJSON), - note: value.note + note: value.note, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/EcommerceProduct.ts b/src/gen/models/EcommerceProduct.ts index 101e2240a..226e6b461 100644 --- a/src/gen/models/EcommerceProduct.ts +++ b/src/gen/models/EcommerceProduct.ts @@ -124,6 +124,12 @@ export interface EcommerceProduct { * @memberof EcommerceProduct */ categories?: Array + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof EcommerceProduct + */ + custom_mappings?: object | null /** * The date and time when the object was created. * @type {Date} @@ -185,6 +191,7 @@ export function EcommerceProductFromJSONTyped( categories: !exists(json, 'categories') ? undefined : (json['categories'] as Array).map(EcommerceProductCategoriesFromJSON), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], created_at: !exists(json, 'created_at') ? undefined : json['created_at'] === null @@ -232,6 +239,7 @@ export function EcommerceProductToJSON(value?: EcommerceProduct | null): any { categories: value.categories === undefined ? undefined - : (value.categories as Array).map(EcommerceProductCategoriesToJSON) + : (value.categories as Array).map(EcommerceProductCategoriesToJSON), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/EcommerceStore.ts b/src/gen/models/EcommerceStore.ts index 087d87cf2..54f514bec 100644 --- a/src/gen/models/EcommerceStore.ts +++ b/src/gen/models/EcommerceStore.ts @@ -43,6 +43,12 @@ export interface EcommerceStore { * @memberof EcommerceStore */ admin_url?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof EcommerceStore + */ + custom_mappings?: object | null /** * The date and time when the object was created. * @type {Date} @@ -73,6 +79,7 @@ export function EcommerceStoreFromJSONTyped( name: !exists(json, 'name') ? undefined : json['name'], store_url: !exists(json, 'store_url') ? undefined : json['store_url'], admin_url: !exists(json, 'admin_url') ? undefined : json['admin_url'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], created_at: !exists(json, 'created_at') ? undefined : json['created_at'] === null @@ -96,6 +103,7 @@ export function EcommerceStoreToJSON(value?: EcommerceStore | null): any { return { name: value.name, store_url: value.store_url, - admin_url: value.admin_url + admin_url: value.admin_url, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Employee.ts b/src/gen/models/Employee.ts index 3d2f96378..fe67c52be 100644 --- a/src/gen/models/Employee.ts +++ b/src/gen/models/Employee.ts @@ -396,6 +396,12 @@ export interface Employee { * @memberof Employee */ tags?: Tags | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Employee + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -554,6 +560,7 @@ export function EmployeeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ? undefined : ProbationPeriodFromJSON(json['probation_period']), tags: !exists(json, 'tags') ? undefined : TagsFromJSON(json['tags']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], deleted: !exists(json, 'deleted') ? undefined : json['deleted'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], @@ -671,6 +678,7 @@ export function EmployeeToJSON(value?: Employee | null): any { food_allergies: value.food_allergies, probation_period: ProbationPeriodToJSON(value.probation_period), tags: TagsToJSON(value.tags), + custom_mappings: value.custom_mappings, row_version: value.row_version, deleted: value.deleted } diff --git a/src/gen/models/Folder.ts b/src/gen/models/Folder.ts index 666fd0a53..d4d166c44 100644 --- a/src/gen/models/Folder.ts +++ b/src/gen/models/Folder.ts @@ -70,6 +70,12 @@ export interface Folder { * @memberof Folder */ readonly parent_folders_complete?: boolean + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Folder + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -115,6 +121,7 @@ export function FolderFromJSONTyped(json: any, ignoreDiscriminator: boolean): Fo parent_folders_complete: !exists(json, 'parent_folders_complete') ? undefined : json['parent_folders_complete'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -141,6 +148,7 @@ export function FolderToJSON(value?: Folder | null): any { name: value.name, parent_folders: (value.parent_folders as Array).map(LinkedFolderToJSON), description: value.description, - owner: OwnerToJSON(value.owner) + owner: OwnerToJSON(value.owner), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/GetConnectorResourceExampleResponse.ts b/src/gen/models/GetConnectorResourceExampleResponse.ts new file mode 100644 index 000000000..f16bc77af --- /dev/null +++ b/src/gen/models/GetConnectorResourceExampleResponse.ts @@ -0,0 +1,81 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { + GetConnectorResourceExampleResponseData, + GetConnectorResourceExampleResponseDataFromJSON, + GetConnectorResourceExampleResponseDataToJSON +} from './GetConnectorResourceExampleResponseData' + +/** + * + * @export + * @interface GetConnectorResourceExampleResponse + */ +export interface GetConnectorResourceExampleResponse { + /** + * HTTP Response Status Code + * @type {number} + * @memberof GetConnectorResourceExampleResponse + */ + status_code: number + /** + * HTTP Response Status + * @type {string} + * @memberof GetConnectorResourceExampleResponse + */ + status: string + /** + * + * @type {GetConnectorResourceExampleResponseData} + * @memberof GetConnectorResourceExampleResponse + */ + data: GetConnectorResourceExampleResponseData +} + +export function GetConnectorResourceExampleResponseFromJSON( + json: any +): GetConnectorResourceExampleResponse { + return GetConnectorResourceExampleResponseFromJSONTyped(json, false) +} + +export function GetConnectorResourceExampleResponseFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): GetConnectorResourceExampleResponse { + if (json === undefined || json === null) { + return json + } + return { + status_code: json['status_code'], + status: json['status'], + data: GetConnectorResourceExampleResponseDataFromJSON(json['data']) + } +} + +export function GetConnectorResourceExampleResponseToJSON( + value?: GetConnectorResourceExampleResponse | null +): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + status_code: value.status_code, + status: value.status, + data: GetConnectorResourceExampleResponseDataToJSON(value.data) + } +} diff --git a/src/gen/models/GetConnectorResourceExampleResponseData.ts b/src/gen/models/GetConnectorResourceExampleResponseData.ts new file mode 100644 index 000000000..5156e5bd0 --- /dev/null +++ b/src/gen/models/GetConnectorResourceExampleResponseData.ts @@ -0,0 +1,95 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { exists } from '../runtime' +import { + LinkedConnectorResource, + LinkedConnectorResourceFromJSON, + LinkedConnectorResourceToJSON +} from './LinkedConnectorResource' +import { UnifiedApiId, UnifiedApiIdFromJSON, UnifiedApiIdToJSON } from './UnifiedApiId' + +/** + * + * @export + * @interface GetConnectorResourceExampleResponseData + */ +export interface GetConnectorResourceExampleResponseData { + /** + * + * @type {UnifiedApiId} + * @memberof GetConnectorResourceExampleResponseData + */ + unified_api?: UnifiedApiId + /** + * Service provider identifier + * @type {string} + * @memberof GetConnectorResourceExampleResponseData + */ + service_id?: string + /** + * + * @type {LinkedConnectorResource} + * @memberof GetConnectorResourceExampleResponseData + */ + resource?: LinkedConnectorResource + /** + * + * @type {object} + * @memberof GetConnectorResourceExampleResponseData + */ + example_response?: object +} + +export function GetConnectorResourceExampleResponseDataFromJSON( + json: any +): GetConnectorResourceExampleResponseData { + return GetConnectorResourceExampleResponseDataFromJSONTyped(json, false) +} + +export function GetConnectorResourceExampleResponseDataFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): GetConnectorResourceExampleResponseData { + if (json === undefined || json === null) { + return json + } + return { + unified_api: !exists(json, 'unified_api') + ? undefined + : UnifiedApiIdFromJSON(json['unified_api']), + service_id: !exists(json, 'service_id') ? undefined : json['service_id'], + resource: !exists(json, 'resource') + ? undefined + : LinkedConnectorResourceFromJSON(json['resource']), + example_response: !exists(json, 'example_response') ? undefined : json['example_response'] + } +} + +export function GetConnectorResourceExampleResponseDataToJSON( + value?: GetConnectorResourceExampleResponseData | null +): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + unified_api: UnifiedApiIdToJSON(value.unified_api), + service_id: value.service_id, + resource: LinkedConnectorResourceToJSON(value.resource), + example_response: value.example_response + } +} diff --git a/src/gen/models/GetConnectorResourceSchemaResponse.ts b/src/gen/models/GetConnectorResourceSchemaResponse.ts new file mode 100644 index 000000000..8e74f1648 --- /dev/null +++ b/src/gen/models/GetConnectorResourceSchemaResponse.ts @@ -0,0 +1,62 @@ +/* tslint:disable */ +/** + * + * @export + * @interface GetConnectorResourceSchemaResponse + */ +export interface GetConnectorResourceSchemaResponse { + /** + * HTTP Response Status Code + * @type {number} + * @memberof GetConnectorResourceSchemaResponse + */ + status_code: number + /** + * HTTP Response Status + * @type {string} + * @memberof GetConnectorResourceSchemaResponse + */ + status: string + /** + * + * @type {object} + * @memberof GetConnectorResourceSchemaResponse + */ + data: object +} + +export function GetConnectorResourceSchemaResponseFromJSON( + json: any +): GetConnectorResourceSchemaResponse { + return GetConnectorResourceSchemaResponseFromJSONTyped(json, false) +} + +export function GetConnectorResourceSchemaResponseFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): GetConnectorResourceSchemaResponse { + if (json === undefined || json === null) { + return json + } + return { + status_code: json['status_code'], + status: json['status'], + data: json['data'] + } +} + +export function GetConnectorResourceSchemaResponseToJSON( + value?: GetConnectorResourceSchemaResponse | null +): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + status_code: value.status_code, + status: value.status, + data: value.data + } +} diff --git a/src/gen/models/GetCustomFieldsResponse.ts b/src/gen/models/GetCustomFieldsResponse.ts new file mode 100644 index 000000000..db0881d05 --- /dev/null +++ b/src/gen/models/GetCustomFieldsResponse.ts @@ -0,0 +1,77 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { + CustomFieldFinder, + CustomFieldFinderFromJSON, + CustomFieldFinderToJSON +} from './CustomFieldFinder' + +/** + * + * @export + * @interface GetCustomFieldsResponse + */ +export interface GetCustomFieldsResponse { + /** + * HTTP Response Status Code + * @type {number} + * @memberof GetCustomFieldsResponse + */ + status_code: number + /** + * HTTP Response Status + * @type {string} + * @memberof GetCustomFieldsResponse + */ + status: string + /** + * + * @type {Array} + * @memberof GetCustomFieldsResponse + */ + data: Array +} + +export function GetCustomFieldsResponseFromJSON(json: any): GetCustomFieldsResponse { + return GetCustomFieldsResponseFromJSONTyped(json, false) +} + +export function GetCustomFieldsResponseFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): GetCustomFieldsResponse { + if (json === undefined || json === null) { + return json + } + return { + status_code: json['status_code'], + status: json['status'], + data: (json['data'] as Array).map(CustomFieldFinderFromJSON) + } +} + +export function GetCustomFieldsResponseToJSON(value?: GetCustomFieldsResponse | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + status_code: value.status_code, + status: value.status, + data: (value.data as Array).map(CustomFieldFinderToJSON) + } +} diff --git a/src/gen/models/GetCustomMappingResponse.ts b/src/gen/models/GetCustomMappingResponse.ts new file mode 100644 index 000000000..38b06867b --- /dev/null +++ b/src/gen/models/GetCustomMappingResponse.ts @@ -0,0 +1,73 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { CustomMapping, CustomMappingFromJSON, CustomMappingToJSON } from './CustomMapping' + +/** + * + * @export + * @interface GetCustomMappingResponse + */ +export interface GetCustomMappingResponse { + /** + * HTTP Response Status Code + * @type {number} + * @memberof GetCustomMappingResponse + */ + status_code: number + /** + * HTTP Response Status + * @type {string} + * @memberof GetCustomMappingResponse + */ + status: string + /** + * + * @type {CustomMapping} + * @memberof GetCustomMappingResponse + */ + data: CustomMapping +} + +export function GetCustomMappingResponseFromJSON(json: any): GetCustomMappingResponse { + return GetCustomMappingResponseFromJSONTyped(json, false) +} + +export function GetCustomMappingResponseFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): GetCustomMappingResponse { + if (json === undefined || json === null) { + return json + } + return { + status_code: json['status_code'], + status: json['status'], + data: CustomMappingFromJSON(json['data']) + } +} + +export function GetCustomMappingResponseToJSON(value?: GetCustomMappingResponse | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + status_code: value.status_code, + status: value.status, + data: CustomMappingToJSON(value.data) + } +} diff --git a/src/gen/models/GetResourceExampleResponse.ts b/src/gen/models/GetResourceExampleResponse.ts new file mode 100644 index 000000000..ec05b0615 --- /dev/null +++ b/src/gen/models/GetResourceExampleResponse.ts @@ -0,0 +1,73 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { ResourceExample, ResourceExampleFromJSON, ResourceExampleToJSON } from './ResourceExample' + +/** + * + * @export + * @interface GetResourceExampleResponse + */ +export interface GetResourceExampleResponse { + /** + * HTTP Response Status Code + * @type {number} + * @memberof GetResourceExampleResponse + */ + status_code: number + /** + * HTTP Response Status + * @type {string} + * @memberof GetResourceExampleResponse + */ + status: string + /** + * + * @type {ResourceExample} + * @memberof GetResourceExampleResponse + */ + data: ResourceExample +} + +export function GetResourceExampleResponseFromJSON(json: any): GetResourceExampleResponse { + return GetResourceExampleResponseFromJSONTyped(json, false) +} + +export function GetResourceExampleResponseFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): GetResourceExampleResponse { + if (json === undefined || json === null) { + return json + } + return { + status_code: json['status_code'], + status: json['status'], + data: ResourceExampleFromJSON(json['data']) + } +} + +export function GetResourceExampleResponseToJSON(value?: GetResourceExampleResponse | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + status_code: value.status_code, + status: value.status, + data: ResourceExampleToJSON(value.data) + } +} diff --git a/src/gen/models/GetResourceSchemaResponse.ts b/src/gen/models/GetResourceSchemaResponse.ts new file mode 100644 index 000000000..6faad0290 --- /dev/null +++ b/src/gen/models/GetResourceSchemaResponse.ts @@ -0,0 +1,58 @@ +/* tslint:disable */ +/** + * + * @export + * @interface GetResourceSchemaResponse + */ +export interface GetResourceSchemaResponse { + /** + * HTTP Response Status Code + * @type {number} + * @memberof GetResourceSchemaResponse + */ + status_code: number + /** + * HTTP Response Status + * @type {string} + * @memberof GetResourceSchemaResponse + */ + status: string + /** + * + * @type {object} + * @memberof GetResourceSchemaResponse + */ + data: object +} + +export function GetResourceSchemaResponseFromJSON(json: any): GetResourceSchemaResponse { + return GetResourceSchemaResponseFromJSONTyped(json, false) +} + +export function GetResourceSchemaResponseFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): GetResourceSchemaResponse { + if (json === undefined || json === null) { + return json + } + return { + status_code: json['status_code'], + status: json['status'], + data: json['data'] + } +} + +export function GetResourceSchemaResponseToJSON(value?: GetResourceSchemaResponse | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + status_code: value.status_code, + status: value.status, + data: value.data + } +} diff --git a/src/gen/models/HrisCompany.ts b/src/gen/models/HrisCompany.ts index 4c0ceac74..9006eb166 100644 --- a/src/gen/models/HrisCompany.ts +++ b/src/gen/models/HrisCompany.ts @@ -97,6 +97,12 @@ export interface HrisCompany { * @memberof HrisCompany */ debtor_id?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof HrisCompany + */ + custom_mappings?: object | null /** * * @type {boolean} @@ -167,6 +173,7 @@ export function HrisCompanyFromJSONTyped(json: any, ignoreDiscriminator: boolean ? undefined : (json['websites'] as Array).map(WebsiteFromJSON), debtor_id: !exists(json, 'debtor_id') ? undefined : json['debtor_id'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], deleted: !exists(json, 'deleted') ? undefined : json['deleted'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -208,6 +215,7 @@ export function HrisCompanyToJSON(value?: HrisCompany | null): any { emails: value.emails === undefined ? undefined : (value.emails as Array).map(EmailToJSON), websites: value.websites === undefined ? undefined : (value.websites as Array).map(WebsiteToJSON), - debtor_id: value.debtor_id + debtor_id: value.debtor_id, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/HrisJob.ts b/src/gen/models/HrisJob.ts index bd065ee77..ccd0539fc 100644 --- a/src/gen/models/HrisJob.ts +++ b/src/gen/models/HrisJob.ts @@ -80,6 +80,12 @@ export interface HrisJob { * @memberof HrisJob */ location?: HrisJobLocation + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof HrisJob + */ + custom_mappings?: object | null } export function HrisJobFromJSON(json: any): HrisJob { @@ -109,7 +115,8 @@ export function HrisJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): H : EmploymentStatusFromJSON(json['employment_status']), department: !exists(json, 'department') ? undefined : json['department'], is_primary: !exists(json, 'is_primary') ? undefined : json['is_primary'], - location: !exists(json, 'location') ? undefined : HrisJobLocationFromJSON(json['location']) + location: !exists(json, 'location') ? undefined : HrisJobLocationFromJSON(json['location']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'] } } @@ -138,6 +145,7 @@ export function HrisJobToJSON(value?: HrisJob | null): any { employment_status: EmploymentStatusToJSON(value.employment_status), department: value.department, is_primary: value.is_primary, - location: HrisJobLocationToJSON(value.location) + location: HrisJobLocationToJSON(value.location), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Invoice.ts b/src/gen/models/Invoice.ts index 744d52e90..6a58f3f52 100644 --- a/src/gen/models/Invoice.ts +++ b/src/gen/models/Invoice.ts @@ -251,6 +251,12 @@ export interface Invoice { * @memberof Invoice */ ledger_account?: LinkedLedgerAccount | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Invoice + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -379,6 +385,7 @@ export function InvoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): I ledger_account: !exists(json, 'ledger_account') ? undefined : LinkedLedgerAccountFromJSON(json['ledger_account']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -450,6 +457,7 @@ export function InvoiceToJSON(value?: Invoice | null): any { accounting_by_row: value.accounting_by_row, bank_account: BankAccountToJSON(value.bank_account), ledger_account: LinkedLedgerAccountToJSON(value.ledger_account), + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/InvoiceItem.ts b/src/gen/models/InvoiceItem.ts index a47ba1221..2fb81c277 100644 --- a/src/gen/models/InvoiceItem.ts +++ b/src/gen/models/InvoiceItem.ts @@ -149,6 +149,12 @@ export interface InvoiceItem { * @memberof InvoiceItem */ active?: boolean | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof InvoiceItem + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -235,6 +241,7 @@ export function InvoiceItemFromJSONTyped(json: any, ignoreDiscriminator: boolean ? undefined : LinkedTrackingCategoryFromJSON(json['tracking_category']), active: !exists(json, 'active') ? undefined : json['active'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -282,6 +289,7 @@ export function InvoiceItemToJSON(value?: InvoiceItem | null): any { expense_account: LinkedLedgerAccountToJSON(value.expense_account), tracking_category: LinkedTrackingCategoryToJSON(value.tracking_category), active: value.active, + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/InvoiceLineItem.ts b/src/gen/models/InvoiceLineItem.ts index 238902cd6..9639da70e 100644 --- a/src/gen/models/InvoiceLineItem.ts +++ b/src/gen/models/InvoiceLineItem.ts @@ -139,6 +139,12 @@ export interface InvoiceLineItem { * @memberof InvoiceLineItem */ ledger_account?: LinkedLedgerAccount | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof InvoiceLineItem + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -216,6 +222,7 @@ export function InvoiceLineItemFromJSONTyped( ledger_account: !exists(json, 'ledger_account') ? undefined : LinkedLedgerAccountFromJSON(json['ledger_account']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -257,6 +264,7 @@ export function InvoiceLineItemToJSON(value?: InvoiceLineItem | null): any { item: LinkedInvoiceItemToJSON(value.item), tax_rate: LinkedTaxRateToJSON(value.tax_rate), ledger_account: LinkedLedgerAccountToJSON(value.ledger_account), + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/Item.ts b/src/gen/models/Item.ts index 539104369..af7db87c3 100644 --- a/src/gen/models/Item.ts +++ b/src/gen/models/Item.ts @@ -177,6 +177,12 @@ export interface Item { * @memberof Item */ readonly version?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Item + */ + custom_mappings?: object | null /** * Flag to indicate if the object is deleted. * @type {boolean} @@ -273,6 +279,7 @@ export function ItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): Item available: !exists(json, 'available') ? undefined : json['available'], hidden: !exists(json, 'hidden') ? undefined : json['hidden'], version: !exists(json, 'version') ? undefined : json['version'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], deleted: !exists(json, 'deleted') ? undefined : json['deleted'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -322,6 +329,7 @@ export function ItemToJSON(value?: Item | null): any { modifier_groups: value.modifier_groups, available: value.available, hidden: value.hidden, + custom_mappings: value.custom_mappings, deleted: value.deleted } } diff --git a/src/gen/models/Job.ts b/src/gen/models/Job.ts index d1c5ecde7..8f687059a 100644 --- a/src/gen/models/Job.ts +++ b/src/gen/models/Job.ts @@ -250,6 +250,12 @@ export interface Job { * @memberof Job */ readonly published_at?: Date | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Job + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -362,6 +368,7 @@ export function JobFromJSONTyped(json: any, ignoreDiscriminator: boolean): Job { : json['published_at'] === null ? null : new Date(json['published_at']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -430,6 +437,7 @@ export function JobToJSON(value?: Job | null): any { ? undefined : (value.custom_fields as Array).map(CustomFieldToJSON), deleted: value.deleted, - owner_id: value.owner_id + owner_id: value.owner_id, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/JournalEntry.ts b/src/gen/models/JournalEntry.ts index 502cb9272..1d4f439bb 100644 --- a/src/gen/models/JournalEntry.ts +++ b/src/gen/models/JournalEntry.ts @@ -92,6 +92,12 @@ export interface JournalEntry { * @memberof JournalEntry */ number?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof JournalEntry + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -146,6 +152,7 @@ export function JournalEntryFromJSONTyped(json: any, ignoreDiscriminator: boolea tax_type: !exists(json, 'tax_type') ? undefined : json['tax_type'], tax_code: !exists(json, 'tax_code') ? undefined : json['tax_code'], number: !exists(json, 'number') ? undefined : json['number'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -183,6 +190,7 @@ export function JournalEntryToJSON(value?: JournalEntry | null): any { tax_type: value.tax_type, tax_code: value.tax_code, number: value.number, + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/Lead.ts b/src/gen/models/Lead.ts index 13f16fbdd..1df779eff 100644 --- a/src/gen/models/Lead.ts +++ b/src/gen/models/Lead.ts @@ -172,6 +172,12 @@ export interface Lead { * @memberof Lead */ tags?: Tags | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Lead + */ + custom_mappings?: object | null /** * Date updated in ISO 8601 format * @type {string} @@ -229,6 +235,7 @@ export function LeadFromJSONTyped(json: any, ignoreDiscriminator: boolean): Lead ? undefined : (json['custom_fields'] as Array).map(CustomFieldFromJSON), tags: !exists(json, 'tags') ? undefined : TagsFromJSON(json['tags']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_at: !exists(json, 'updated_at') ? undefined : json['updated_at'], created_at: !exists(json, 'created_at') ? undefined : json['created_at'] } @@ -277,6 +284,7 @@ export function LeadToJSON(value?: Lead | null): any { value.custom_fields === undefined ? undefined : (value.custom_fields as Array).map(CustomFieldToJSON), - tags: TagsToJSON(value.tags) + tags: TagsToJSON(value.tags), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/LedgerAccount.ts b/src/gen/models/LedgerAccount.ts index 855dc6237..cffb6e240 100644 --- a/src/gen/models/LedgerAccount.ts +++ b/src/gen/models/LedgerAccount.ts @@ -180,6 +180,12 @@ export interface LedgerAccount { * @memberof LedgerAccount */ last_reconciliation_date?: Date | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof LedgerAccount + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -310,6 +316,7 @@ export function LedgerAccountFromJSONTyped(json: any, ignoreDiscriminator: boole : json['last_reconciliation_date'] === null ? null : new Date(json['last_reconciliation_date']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -362,6 +369,7 @@ export function LedgerAccountToJSON(value?: LedgerAccount | null): any { : value.last_reconciliation_date === null ? null : new Date(value.last_reconciliation_date).toISOString().substr(0, 10), + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/Location.ts b/src/gen/models/Location.ts index 61dd22812..c7b82bfdd 100644 --- a/src/gen/models/Location.ts +++ b/src/gen/models/Location.ts @@ -64,6 +64,12 @@ export interface Location { * @memberof Location */ currency?: Currency | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Location + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -116,6 +122,7 @@ export function LocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): status: !exists(json, 'status') ? undefined : json['status'], merchant_id: !exists(json, 'merchant_id') ? undefined : json['merchant_id'], currency: !exists(json, 'currency') ? undefined : CurrencyFromJSON(json['currency']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -144,6 +151,7 @@ export function LocationToJSON(value?: Location | null): any { address: AddressToJSON(value.address), status: value.status, merchant_id: value.merchant_id, - currency: CurrencyToJSON(value.currency) + currency: CurrencyToJSON(value.currency), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Merchant.ts b/src/gen/models/Merchant.ts index ecbc18f3c..a74df5a38 100644 --- a/src/gen/models/Merchant.ts +++ b/src/gen/models/Merchant.ts @@ -77,6 +77,12 @@ export interface Merchant { * @memberof Merchant */ currency?: Currency | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Merchant + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -133,6 +139,7 @@ export function MerchantFromJSONTyped(json: any, ignoreDiscriminator: boolean): : (json['service_charges'] as Array).map(ServiceChargeFromJSON), language: !exists(json, 'language') ? undefined : json['language'], currency: !exists(json, 'currency') ? undefined : CurrencyFromJSON(json['currency']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -166,6 +173,7 @@ export function MerchantToJSON(value?: Merchant | null): any { ? undefined : (value.service_charges as Array).map(ServiceChargeToJSON), language: value.language, - currency: CurrencyToJSON(value.currency) + currency: CurrencyToJSON(value.currency), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Message.ts b/src/gen/models/Message.ts index caf745f21..6f6d3476d 100644 --- a/src/gen/models/Message.ts +++ b/src/gen/models/Message.ts @@ -123,6 +123,12 @@ export interface Message { * @memberof Message */ messaging_service_id?: string + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Message + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -217,6 +223,7 @@ export function MessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): M messaging_service_id: !exists(json, 'messaging_service_id') ? undefined : json['messaging_service_id'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -251,6 +258,7 @@ export function MessageToJSON(value?: Message | null): any { reference: value.reference, price: PriceToJSON(value.price), error: value.error, - messaging_service_id: value.messaging_service_id + messaging_service_id: value.messaging_service_id, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Modifier.ts b/src/gen/models/Modifier.ts index e8a0681ac..07c3cdb18 100644 --- a/src/gen/models/Modifier.ts +++ b/src/gen/models/Modifier.ts @@ -69,6 +69,12 @@ export interface Modifier { * @memberof Modifier */ available?: boolean | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Modifier + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -112,6 +118,7 @@ export function ModifierFromJSONTyped(json: any, ignoreDiscriminator: boolean): price_amount: !exists(json, 'price_amount') ? undefined : json['price_amount'], currency: !exists(json, 'currency') ? undefined : CurrencyFromJSON(json['currency']), available: !exists(json, 'available') ? undefined : json['available'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -141,6 +148,7 @@ export function ModifierToJSON(value?: Modifier | null): any { alternate_name: value.alternate_name, price_amount: value.price_amount, currency: CurrencyToJSON(value.currency), - available: value.available + available: value.available, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/ModifierGroup.ts b/src/gen/models/ModifierGroup.ts index 60bde3a2a..e6ca6ad65 100644 --- a/src/gen/models/ModifierGroup.ts +++ b/src/gen/models/ModifierGroup.ts @@ -73,6 +73,12 @@ export interface ModifierGroup { * @memberof ModifierGroup */ deleted?: boolean | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof ModifierGroup + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -134,6 +140,7 @@ export function ModifierGroupFromJSONTyped(json: any, ignoreDiscriminator: boole : json['present_at_all_locations'], modifiers: !exists(json, 'modifiers') ? undefined : json['modifiers'], deleted: !exists(json, 'deleted') ? undefined : json['deleted'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -166,6 +173,7 @@ export function ModifierGroupToJSON(value?: ModifierGroup | null): any { present_at_all_locations: value.present_at_all_locations, modifiers: value.modifiers, deleted: value.deleted, + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/Note.ts b/src/gen/models/Note.ts index b002fa9da..82ec4aa40 100644 --- a/src/gen/models/Note.ts +++ b/src/gen/models/Note.ts @@ -73,6 +73,12 @@ export interface Note { * @memberof Note */ active?: boolean | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Note + */ + custom_mappings?: object | null /** * The user that last updated the note. * @type {string} @@ -117,6 +123,7 @@ export function NoteFromJSONTyped(json: any, ignoreDiscriminator: boolean): Note opportunity_id: !exists(json, 'opportunity_id') ? undefined : json['opportunity_id'], lead_id: !exists(json, 'lead_id') ? undefined : json['lead_id'], active: !exists(json, 'active') ? undefined : json['active'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') ? undefined : json['updated_at'], @@ -139,6 +146,7 @@ export function NoteToJSON(value?: Note | null): any { company_id: value.company_id, opportunity_id: value.opportunity_id, lead_id: value.lead_id, - active: value.active + active: value.active, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Offer.ts b/src/gen/models/Offer.ts index c866a4863..252e5032a 100644 --- a/src/gen/models/Offer.ts +++ b/src/gen/models/Offer.ts @@ -31,6 +31,12 @@ export interface Offer { * @memberof Offer */ application_id?: string + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Offer + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -68,6 +74,7 @@ export function OfferFromJSONTyped(json: any, ignoreDiscriminator: boolean): Off return { id: !exists(json, 'id') ? undefined : json['id'], application_id: !exists(json, 'application_id') ? undefined : json['application_id'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -91,6 +98,7 @@ export function OfferToJSON(value?: Offer | null): any { return null } return { - application_id: value.application_id + application_id: value.application_id, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Opportunity.ts b/src/gen/models/Opportunity.ts index b13aa1fcf..b4a118f0e 100644 --- a/src/gen/models/Opportunity.ts +++ b/src/gen/models/Opportunity.ts @@ -239,6 +239,12 @@ export interface Opportunity { * @memberof Opportunity */ readonly date_lead_created?: Date | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Opportunity + */ + custom_mappings?: object | null /** * The unique identifier of the user who last updated the opportunity. * @type {string} @@ -332,6 +338,7 @@ export function OpportunityFromJSONTyped(json: any, ignoreDiscriminator: boolean : json['date_lead_created'] === null ? null : new Date(json['date_lead_created']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -395,6 +402,7 @@ export function OpportunityToJSON(value?: Opportunity | null): any { ? undefined : value.stage_last_changed_at === null ? null - : new Date(value.stage_last_changed_at).toISOString() + : new Date(value.stage_last_changed_at).toISOString(), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Order.ts b/src/gen/models/Order.ts index 195947897..02c168780 100644 --- a/src/gen/models/Order.ts +++ b/src/gen/models/Order.ts @@ -255,6 +255,12 @@ export interface Order { * @memberof Order */ readonly voided_at?: Date + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Order + */ + custom_mappings?: object | null /** * * @type {string} @@ -400,6 +406,7 @@ export function OrderFromJSONTyped(json: any, ignoreDiscriminator: boolean): Ord source: !exists(json, 'source') ? undefined : json['source'], voided: !exists(json, 'voided') ? undefined : json['voided'], voided_at: !exists(json, 'voided_at') ? undefined : new Date(json['voided_at']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], version: !exists(json, 'version') ? undefined : json['version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -489,6 +496,7 @@ export function OrderToJSON(value?: Order | null): any { ? undefined : (value.tenders as Array).map(OrderTendersToJSON), voided: value.voided, + custom_mappings: value.custom_mappings, version: value.version } } diff --git a/src/gen/models/Payment.ts b/src/gen/models/Payment.ts index c58fbab57..35931be3c 100644 --- a/src/gen/models/Payment.ts +++ b/src/gen/models/Payment.ts @@ -165,6 +165,12 @@ export interface Payment { * @memberof Payment */ display_id?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Payment + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -255,6 +261,7 @@ export function PaymentFromJSONTyped(json: any, ignoreDiscriminator: boolean): P note: !exists(json, 'note') ? undefined : json['note'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], display_id: !exists(json, 'display_id') ? undefined : json['display_id'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], created_at: !exists(json, 'created_at') @@ -300,6 +307,7 @@ export function PaymentToJSON(value?: Payment | null): any { : (value.allocations as Array).map(PaymentAllocationsToJSON), note: value.note, row_version: value.row_version, - display_id: value.display_id + display_id: value.display_id, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Payroll.ts b/src/gen/models/Payroll.ts index 6c4d9b3b2..da68cbafd 100644 --- a/src/gen/models/Payroll.ts +++ b/src/gen/models/Payroll.ts @@ -76,6 +76,12 @@ export interface Payroll { * @memberof Payroll */ compensations?: Array + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Payroll + */ + custom_mappings?: object | null } export function PayrollFromJSON(json: any): Payroll { @@ -97,7 +103,8 @@ export function PayrollFromJSONTyped(json: any, ignoreDiscriminator: boolean): P totals: !exists(json, 'totals') ? undefined : json['totals'], compensations: !exists(json, 'compensations') ? undefined - : (json['compensations'] as Array).map(CompensationFromJSON) + : (json['compensations'] as Array).map(CompensationFromJSON), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'] } } @@ -119,6 +126,7 @@ export function PayrollToJSON(value?: Payroll | null): any { compensations: value.compensations === undefined ? undefined - : (value.compensations as Array).map(CompensationToJSON) + : (value.compensations as Array).map(CompensationToJSON), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Person.ts b/src/gen/models/Person.ts index a8fc3bd09..7dd09e6cc 100644 --- a/src/gen/models/Person.ts +++ b/src/gen/models/Person.ts @@ -69,6 +69,12 @@ export interface Person { * @memberof Person */ deceased_on?: Date | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Person + */ + custom_mappings?: object | null } export function PersonFromJSON(json: any): Person { @@ -95,7 +101,8 @@ export function PersonFromJSONTyped(json: any, ignoreDiscriminator: boolean): Pe ? undefined : json['deceased_on'] === null ? null - : new Date(json['deceased_on']) + : new Date(json['deceased_on']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'] } } @@ -123,6 +130,7 @@ export function PersonToJSON(value?: Person | null): any { ? undefined : value.deceased_on === null ? null - : new Date(value.deceased_on).toISOString().substr(0, 10) + : new Date(value.deceased_on).toISOString().substr(0, 10), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/PosPayment.ts b/src/gen/models/PosPayment.ts index 0d281803e..1da921316 100644 --- a/src/gen/models/PosPayment.ts +++ b/src/gen/models/PosPayment.ts @@ -209,6 +209,12 @@ export interface PosPayment { * @memberof PosPayment */ service_charges?: ServiceCharges + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof PosPayment + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -311,6 +317,7 @@ export function PosPaymentFromJSONTyped(json: any, ignoreDiscriminator: boolean) service_charges: !exists(json, 'service_charges') ? undefined : ServiceChargesFromJSON(json['service_charges']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -361,6 +368,7 @@ export function PosPaymentToJSON(value?: PosPayment | null): any { bank_account: PosBankAccountToJSON(value.bank_account), wallet: WalletDetailsToJSON(value.wallet), external_details: PosPaymentExternalDetailsToJSON(value.external_details), - service_charges: ServiceChargesToJSON(value.service_charges) + service_charges: ServiceChargesToJSON(value.service_charges), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/ProfitAndLoss.ts b/src/gen/models/ProfitAndLoss.ts index a2e5e1e66..028c8e89c 100644 --- a/src/gen/models/ProfitAndLoss.ts +++ b/src/gen/models/ProfitAndLoss.ts @@ -111,6 +111,12 @@ export interface ProfitAndLoss { * @memberof ProfitAndLoss */ gross_profit?: ProfitAndLossGrossProfit | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof ProfitAndLoss + */ + custom_mappings?: object | null } export function ProfitAndLossFromJSON(json: any): ProfitAndLoss { @@ -138,7 +144,8 @@ export function ProfitAndLossFromJSONTyped(json: any, ignoreDiscriminator: boole : ProfitAndLossNetOperatingIncomeFromJSON(json['net_operating_income']), gross_profit: !exists(json, 'gross_profit') ? undefined - : ProfitAndLossGrossProfitFromJSON(json['gross_profit']) + : ProfitAndLossGrossProfitFromJSON(json['gross_profit']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'] } } @@ -159,6 +166,7 @@ export function ProfitAndLossToJSON(value?: ProfitAndLoss | null): any { customer_id: value.customer_id, net_income: ProfitAndLossNetIncomeToJSON(value.net_income), net_operating_income: ProfitAndLossNetOperatingIncomeToJSON(value.net_operating_income), - gross_profit: ProfitAndLossGrossProfitToJSON(value.gross_profit) + gross_profit: ProfitAndLossGrossProfitToJSON(value.gross_profit), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/PurchaseOrder.ts b/src/gen/models/PurchaseOrder.ts index 1d94dbf40..617ca5ca7 100644 --- a/src/gen/models/PurchaseOrder.ts +++ b/src/gen/models/PurchaseOrder.ts @@ -192,6 +192,12 @@ export interface PurchaseOrder { * @memberof PurchaseOrder */ memo?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof PurchaseOrder + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -295,6 +301,7 @@ export function PurchaseOrderFromJSONTyped(json: any, ignoreDiscriminator: boole tax_code: !exists(json, 'tax_code') ? undefined : json['tax_code'], channel: !exists(json, 'channel') ? undefined : json['channel'], memo: !exists(json, 'memo') ? undefined : json['memo'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -365,6 +372,7 @@ export function PurchaseOrderToJSON(value?: PurchaseOrder | null): any { tax_code: value.tax_code, channel: value.channel, memo: value.memo, + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/ResourceExample.ts b/src/gen/models/ResourceExample.ts new file mode 100644 index 000000000..18b2e6746 --- /dev/null +++ b/src/gen/models/ResourceExample.ts @@ -0,0 +1,91 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { exists } from '../runtime' +import { + LinkedConnectorResource, + LinkedConnectorResourceFromJSON, + LinkedConnectorResourceToJSON +} from './LinkedConnectorResource' +import { UnifiedApiId, UnifiedApiIdFromJSON, UnifiedApiIdToJSON } from './UnifiedApiId' + +/** + * + * @export + * @interface ResourceExample + */ +export interface ResourceExample { + /** + * + * @type {UnifiedApiId} + * @memberof ResourceExample + */ + unified_api?: UnifiedApiId + /** + * Service provider identifier + * @type {string} + * @memberof ResourceExample + */ + service_id?: string + /** + * + * @type {LinkedConnectorResource} + * @memberof ResourceExample + */ + resource?: LinkedConnectorResource + /** + * Example response from the downstream API + * @type {object} + * @memberof ResourceExample + */ + example_response?: object +} + +export function ResourceExampleFromJSON(json: any): ResourceExample { + return ResourceExampleFromJSONTyped(json, false) +} + +export function ResourceExampleFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): ResourceExample { + if (json === undefined || json === null) { + return json + } + return { + unified_api: !exists(json, 'unified_api') + ? undefined + : UnifiedApiIdFromJSON(json['unified_api']), + service_id: !exists(json, 'service_id') ? undefined : json['service_id'], + resource: !exists(json, 'resource') + ? undefined + : LinkedConnectorResourceFromJSON(json['resource']), + example_response: !exists(json, 'example_response') ? undefined : json['example_response'] + } +} + +export function ResourceExampleToJSON(value?: ResourceExample | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + unified_api: UnifiedApiIdToJSON(value.unified_api), + service_id: value.service_id, + resource: LinkedConnectorResourceToJSON(value.resource), + example_response: value.example_response + } +} diff --git a/src/gen/models/SchemaSupport.ts b/src/gen/models/SchemaSupport.ts new file mode 100644 index 000000000..c64d231e1 --- /dev/null +++ b/src/gen/models/SchemaSupport.ts @@ -0,0 +1,53 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { exists } from '../runtime' +/** + * When a connector has schema_support, a call can be made to retrieve a json schema that describes a downstream resource. + * @export + * @interface SchemaSupport + */ +export interface SchemaSupport { + /** + * Can a resource schema be retrieved for this connector? + * @type {boolean} + * @memberof SchemaSupport + */ + supported?: boolean +} + +export function SchemaSupportFromJSON(json: any): SchemaSupport { + return SchemaSupportFromJSONTyped(json, false) +} + +export function SchemaSupportFromJSONTyped(json: any, ignoreDiscriminator: boolean): SchemaSupport { + if (json === undefined || json === null) { + return json + } + return { + supported: !exists(json, 'supported') ? undefined : json['supported'] + } +} + +export function SchemaSupportToJSON(value?: SchemaSupport | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + supported: value.supported + } +} diff --git a/src/gen/models/Supplier.ts b/src/gen/models/Supplier.ts index 91f7bd8a9..4015f479a 100644 --- a/src/gen/models/Supplier.ts +++ b/src/gen/models/Supplier.ts @@ -176,6 +176,12 @@ export interface Supplier { * @memberof Supplier */ channel?: string | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Supplier + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -261,6 +267,7 @@ export function SupplierFromJSONTyped(json: any, ignoreDiscriminator: boolean): status: !exists(json, 'status') ? undefined : json['status'], payment_method: !exists(json, 'payment_method') ? undefined : json['payment_method'], channel: !exists(json, 'channel') ? undefined : json['channel'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -317,6 +324,7 @@ export function SupplierToJSON(value?: Supplier | null): any { status: value.status, payment_method: value.payment_method, channel: value.channel, + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/TaxRate.ts b/src/gen/models/TaxRate.ts index da74cc83b..5db177d3b 100644 --- a/src/gen/models/TaxRate.ts +++ b/src/gen/models/TaxRate.ts @@ -97,6 +97,12 @@ export interface TaxRate { * @memberof TaxRate */ status?: TaxRateStatus + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof TaxRate + */ + custom_mappings?: object | null /** * 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. * @type {string} @@ -169,6 +175,7 @@ export function TaxRateFromJSONTyped(json: any, ignoreDiscriminator: boolean): T ? undefined : json['original_tax_rate_id'], status: !exists(json, 'status') ? undefined : json['status'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], row_version: !exists(json, 'row_version') ? undefined : json['row_version'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], @@ -206,6 +213,7 @@ export function TaxRateToJSON(value?: TaxRate | null): any { report_tax_type: value.report_tax_type, original_tax_rate_id: value.original_tax_rate_id, status: value.status, + custom_mappings: value.custom_mappings, row_version: value.row_version } } diff --git a/src/gen/models/Tender.ts b/src/gen/models/Tender.ts index 3e8bde6bc..16bfc7905 100644 --- a/src/gen/models/Tender.ts +++ b/src/gen/models/Tender.ts @@ -67,6 +67,12 @@ export interface Tender { * @memberof Tender */ allows_tipping?: boolean + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Tender + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -110,6 +116,7 @@ export function TenderFromJSONTyped(json: any, ignoreDiscriminator: boolean): Te editable: !exists(json, 'editable') ? undefined : json['editable'], opens_cash_drawer: !exists(json, 'opens_cash_drawer') ? undefined : json['opens_cash_drawer'], allows_tipping: !exists(json, 'allows_tipping') ? undefined : json['allows_tipping'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -139,6 +146,7 @@ export function TenderToJSON(value?: Tender | null): any { hidden: value.hidden, editable: value.editable, opens_cash_drawer: value.opens_cash_drawer, - allows_tipping: value.allows_tipping + allows_tipping: value.allows_tipping, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/Ticket.ts b/src/gen/models/Ticket.ts index c689b56a8..074a7e6fe 100644 --- a/src/gen/models/Ticket.ts +++ b/src/gen/models/Ticket.ts @@ -112,6 +112,12 @@ export interface Ticket { * @memberof Ticket */ tags?: Array + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof Ticket + */ + custom_mappings?: object | null } /** @@ -168,7 +174,8 @@ export function TicketFromJSONTyped(json: any, ignoreDiscriminator: boolean): Ti : new Date(json['completed_at']), tags: !exists(json, 'tags') ? undefined - : (json['tags'] as Array).map(CollectionTagFromJSON) + : (json['tags'] as Array).map(CollectionTagFromJSON), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'] } } @@ -196,6 +203,8 @@ export function TicketToJSON(value?: Ticket | null): any { : value.due_date === null ? null : new Date(value.due_date).toISOString(), - tags: value.tags === undefined ? undefined : (value.tags as Array).map(CollectionTagToJSON) + tags: + value.tags === undefined ? undefined : (value.tags as Array).map(CollectionTagToJSON), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/TimeOffRequest.ts b/src/gen/models/TimeOffRequest.ts index e6fd09db6..cea9b91b0 100644 --- a/src/gen/models/TimeOffRequest.ts +++ b/src/gen/models/TimeOffRequest.ts @@ -103,6 +103,12 @@ export interface TimeOffRequest { * @memberof TimeOffRequest */ notes?: TimeOffRequestNotes + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof TimeOffRequest + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -189,6 +195,7 @@ export function TimeOffRequestFromJSONTyped( units: !exists(json, 'units') ? undefined : json['units'], amount: !exists(json, 'amount') ? undefined : json['amount'], notes: !exists(json, 'notes') ? undefined : TimeOffRequestNotesFromJSON(json['notes']), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -223,6 +230,7 @@ export function TimeOffRequestToJSON(value?: TimeOffRequest | null): any { approval_date: value.approval_date, units: value.units, amount: value.amount, - notes: TimeOffRequestNotesToJSON(value.notes) + notes: TimeOffRequestNotesToJSON(value.notes), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/UnifiedFile.ts b/src/gen/models/UnifiedFile.ts index 990470788..ce66bba9d 100644 --- a/src/gen/models/UnifiedFile.ts +++ b/src/gen/models/UnifiedFile.ts @@ -118,6 +118,12 @@ export interface UnifiedFile { * @memberof UnifiedFile */ export_formats?: Array | null + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof UnifiedFile + */ + custom_mappings?: object | null /** * The user who last updated the object. * @type {string} @@ -174,6 +180,7 @@ export function UnifiedFileFromJSONTyped(json: any, ignoreDiscriminator: boolean : UnifiedFilePermissionsFromJSON(json['permissions']), exportable: !exists(json, 'exportable') ? undefined : json['exportable'], export_formats: !exists(json, 'export_formats') ? undefined : json['export_formats'], + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_by: !exists(json, 'updated_by') ? undefined : json['updated_by'], created_by: !exists(json, 'created_by') ? undefined : json['created_by'], updated_at: !exists(json, 'updated_at') @@ -212,6 +219,7 @@ export function UnifiedFileToJSON(value?: UnifiedFile | null): any { parent_folders_complete: value.parent_folders_complete, permissions: UnifiedFilePermissionsToJSON(value.permissions), exportable: value.exportable, - export_formats: value.export_formats + export_formats: value.export_formats, + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/UpdateCustomMappingRequest.ts b/src/gen/models/UpdateCustomMappingRequest.ts new file mode 100644 index 000000000..c4a868154 --- /dev/null +++ b/src/gen/models/UpdateCustomMappingRequest.ts @@ -0,0 +1,42 @@ +/* tslint:disable */ +/** + * + * @export + * @interface UpdateCustomMappingRequest + */ +export interface UpdateCustomMappingRequest { + /** + * Target Field Mapping value + * @type {string} + * @memberof UpdateCustomMappingRequest + */ + value: string +} + +export function UpdateCustomMappingRequestFromJSON(json: any): UpdateCustomMappingRequest { + return UpdateCustomMappingRequestFromJSONTyped(json, false) +} + +export function UpdateCustomMappingRequestFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): UpdateCustomMappingRequest { + if (json === undefined || json === null) { + return json + } + return { + value: json['value'] + } +} + +export function UpdateCustomMappingRequestToJSON(value?: UpdateCustomMappingRequest | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + value: value.value + } +} diff --git a/src/gen/models/UpdateCustomMappingResponse.ts b/src/gen/models/UpdateCustomMappingResponse.ts new file mode 100644 index 000000000..6e01aa747 --- /dev/null +++ b/src/gen/models/UpdateCustomMappingResponse.ts @@ -0,0 +1,73 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Apideck + * The Apideck OpenAPI Spec: SDK Optimized + * + * The version of the OpenAPI document: 9.9.3 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { CustomMapping, CustomMappingFromJSON, CustomMappingToJSON } from './CustomMapping' + +/** + * + * @export + * @interface UpdateCustomMappingResponse + */ +export interface UpdateCustomMappingResponse { + /** + * HTTP Response Status Code + * @type {number} + * @memberof UpdateCustomMappingResponse + */ + status_code: number + /** + * HTTP Response Status + * @type {string} + * @memberof UpdateCustomMappingResponse + */ + status: string + /** + * + * @type {CustomMapping} + * @memberof UpdateCustomMappingResponse + */ + data: CustomMapping +} + +export function UpdateCustomMappingResponseFromJSON(json: any): UpdateCustomMappingResponse { + return UpdateCustomMappingResponseFromJSONTyped(json, false) +} + +export function UpdateCustomMappingResponseFromJSONTyped( + json: any, + ignoreDiscriminator: boolean +): UpdateCustomMappingResponse { + if (json === undefined || json === null) { + return json + } + return { + status_code: json['status_code'], + status: json['status'], + data: CustomMappingFromJSON(json['data']) + } +} + +export function UpdateCustomMappingResponseToJSON(value?: UpdateCustomMappingResponse | null): any { + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + status_code: value.status_code, + status: value.status, + data: CustomMappingToJSON(value.data) + } +} diff --git a/src/gen/models/User.ts b/src/gen/models/User.ts index fa0981369..09c09b3dc 100644 --- a/src/gen/models/User.ts +++ b/src/gen/models/User.ts @@ -131,6 +131,12 @@ export interface User { * @memberof User */ phone_numbers?: Array + /** + * When custom mappings are configured on the resource, the result is included here. + * @type {object} + * @memberof User + */ + custom_mappings?: object | null /** * The date and time when the user was last updated. * @type {string} @@ -176,6 +182,7 @@ export function UserFromJSONTyped(json: any, ignoreDiscriminator: boolean): User phone_numbers: !exists(json, 'phone_numbers') ? undefined : (json['phone_numbers'] as Array).map(PhoneNumberFromJSON), + custom_mappings: !exists(json, 'custom_mappings') ? undefined : json['custom_mappings'], updated_at: !exists(json, 'updated_at') ? undefined : json['updated_at'], created_at: !exists(json, 'created_at') ? undefined : json['created_at'] } @@ -211,6 +218,7 @@ export function UserToJSON(value?: User | null): any { phone_numbers: value.phone_numbers === undefined ? undefined - : (value.phone_numbers as Array).map(PhoneNumberToJSON) + : (value.phone_numbers as Array).map(PhoneNumberToJSON), + custom_mappings: value.custom_mappings } } diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index 5b2171d16..5229e748c 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -93,6 +93,8 @@ export * from './CreateConsumerResponse' export * from './CreateContactResponse' export * from './CreateCreditNoteResponse' export * from './CreateCustomerResponse' +export * from './CreateCustomMappingRequest' +export * from './CreateCustomMappingResponse' export * from './CreateDepartmentResponse' export * from './CreateDriveGroupResponse' export * from './CreateDriveResponse' @@ -144,6 +146,8 @@ export * from './Currency' export * from './Customer' export * from './CustomersFilter' export * from './CustomField' +export * from './CustomFieldFinder' +export * from './CustomMapping' export * from './Deduction' export * from './DeleteActivityResponse' export * from './DeleteApplicantResponse' @@ -265,7 +269,10 @@ export * from './GetCompanyInfoResponse' export * from './GetCompanyResponse' export * from './GetConnectionResponse' export * from './GetConnectionsResponse' +export * from './GetConnectorResourceExampleResponse' +export * from './GetConnectorResourceExampleResponseData' export * from './GetConnectorResourceResponse' +export * from './GetConnectorResourceSchemaResponse' export * from './GetConnectorResponse' export * from './GetConnectorsResponse' export * from './GetConsumerResponse' @@ -277,6 +284,8 @@ export * from './GetCreditNoteResponse' export * from './GetCreditNotesResponse' export * from './GetCustomerResponse' export * from './GetCustomersResponse' +export * from './GetCustomFieldsResponse' +export * from './GetCustomMappingResponse' export * from './GetDepartmentResponse' export * from './GetDepartmentsResponse' export * from './GetDriveGroupResponse' @@ -346,6 +355,8 @@ export * from './GetProductsResponse' export * from './GetProfitAndLossResponse' export * from './GetPurchaseOrderResponse' export * from './GetPurchaseOrdersResponse' +export * from './GetResourceExampleResponse' +export * from './GetResourceSchemaResponse' export * from './GetSharedLinkResponse' export * from './GetSharedLinksResponse' export * from './GetStoreResponse' @@ -481,10 +492,12 @@ export * from './RequestRate' export * from './ResolveWebhookEventRequest' export * from './ResolveWebhookEventsRequest' export * from './ResolveWebhookResponse' +export * from './ResourceExample' export * from './ResourceStatus' export * from './Schedule' export * from './ScheduleWorkPattern' export * from './ScheduleWorkPatternOddWeeks' +export * from './SchemaSupport' export * from './ServiceCharge' export * from './ServiceCharges' export * from './Session' @@ -533,6 +546,8 @@ export * from './UpdateConsumerResponse' export * from './UpdateContactResponse' export * from './UpdateCreditNoteResponse' export * from './UpdateCustomerResponse' +export * from './UpdateCustomMappingRequest' +export * from './UpdateCustomMappingResponse' export * from './UpdateDepartmentResponse' export * from './UpdateDriveGroupResponse' export * from './UpdateDriveResponse' diff --git a/src/gen/tests/apis/AccountingApiTest.api.test.ts b/src/gen/tests/apis/AccountingApiTest.api.test.ts index 70765b4b7..af97848ae 100644 --- a/src/gen/tests/apis/AccountingApiTest.api.test.ts +++ b/src/gen/tests/apis/AccountingApiTest.api.test.ts @@ -94,6 +94,7 @@ describe('AccountingApi', () => { } ] }, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -251,7 +252,8 @@ describe('AccountingApi', () => { currency: 'USD' }, discount_percentage: 5.5, - row_version: '1-12345' + row_version: '1-12345', + custom_mappings: {} } } as any const current = await accounting.billsAdd(params) @@ -405,7 +407,8 @@ describe('AccountingApi', () => { created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z', - row_version: '1-12345' + row_version: '1-12345', + custom_mappings: {} } ], meta: { @@ -619,7 +622,8 @@ describe('AccountingApi', () => { created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z', - row_version: '1-12345' + row_version: '1-12345', + custom_mappings: {} } } as any @@ -776,7 +780,8 @@ describe('AccountingApi', () => { currency: 'USD' }, discount_percentage: 5.5, - row_version: '1-12345' + row_version: '1-12345', + custom_mappings: {} } } as any const current = await accounting.billsUpdate(params) @@ -836,6 +841,7 @@ describe('AccountingApi', () => { report_tax_type: 'NONE', original_tax_rate_id: '12345', status: 'active', + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -891,6 +897,7 @@ describe('AccountingApi', () => { type: 'primary' } ], + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -1000,6 +1007,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -1012,6 +1020,7 @@ describe('AccountingApi', () => { ], note: 'Some notes about this credit note', terms: 'Some terms about this credit note', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -1108,6 +1117,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -1125,6 +1135,7 @@ describe('AccountingApi', () => { ], note: 'Some notes about this credit note', terms: 'Some terms about this credit note', + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -1285,6 +1296,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -1302,6 +1314,7 @@ describe('AccountingApi', () => { ], note: 'Some notes about this credit note', terms: 'Some terms about this credit note', + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -1414,6 +1427,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -1426,6 +1440,7 @@ describe('AccountingApi', () => { ], note: 'Some notes about this credit note', terms: 'Some terms about this credit note', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -1564,6 +1579,7 @@ describe('AccountingApi', () => { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -1697,6 +1713,7 @@ describe('AccountingApi', () => { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1894,6 +1911,7 @@ describe('AccountingApi', () => { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -2046,6 +2064,7 @@ describe('AccountingApi', () => { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -2138,6 +2157,7 @@ describe('AccountingApi', () => { name: 'New York' }, active: true, + custom_mappings: {}, row_version: '1-12345' } } as any @@ -2228,6 +2248,7 @@ describe('AccountingApi', () => { name: 'New York' }, active: true, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -2382,6 +2403,7 @@ describe('AccountingApi', () => { name: 'New York' }, active: true, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -2488,6 +2510,7 @@ describe('AccountingApi', () => { name: 'New York' }, active: true, + custom_mappings: {}, row_version: '1-12345' } } as any @@ -2592,6 +2615,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -2671,6 +2695,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } } as any @@ -2772,6 +2797,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -2856,6 +2882,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -3022,6 +3049,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -3106,6 +3134,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -3224,6 +3253,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -3303,6 +3333,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } } as any @@ -3468,6 +3499,7 @@ describe('AccountingApi', () => { tax_type: 'sales', tax_code: '1234', number: 'OIT00546', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -3594,6 +3626,7 @@ describe('AccountingApi', () => { tax_type: 'sales', tax_code: '1234', number: 'OIT00546', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -3834,6 +3867,7 @@ describe('AccountingApi', () => { tax_type: 'sales', tax_code: '1234', number: 'OIT00546', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -4013,6 +4047,7 @@ describe('AccountingApi', () => { tax_type: 'sales', tax_code: '1234', number: 'OIT00546', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -4096,6 +4131,7 @@ describe('AccountingApi', () => { }, sub_account: false, last_reconciliation_date: '2020-09-30', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -4184,6 +4220,7 @@ describe('AccountingApi', () => { } ], last_reconciliation_date: '2020-09-30', + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -4336,6 +4373,7 @@ describe('AccountingApi', () => { } ], last_reconciliation_date: '2020-09-30', + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -4433,6 +4471,7 @@ describe('AccountingApi', () => { }, sub_account: false, last_reconciliation_date: '2020-09-30', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -4537,7 +4576,8 @@ describe('AccountingApi', () => { ], note: 'Some notes about this payment', row_version: '1-12345', - display_id: '123456' + display_id: '123456', + custom_mappings: {} } } as any const current = await accounting.paymentsAdd(params) @@ -4640,6 +4680,7 @@ describe('AccountingApi', () => { note: 'Some notes about this payment', row_version: '1-12345', display_id: '123456', + custom_mappings: {}, updated_by: '12345', created_by: '12345', created_at: '2020-09-30T07:43:32.000Z', @@ -4806,6 +4847,7 @@ describe('AccountingApi', () => { note: 'Some notes about this payment', row_version: '1-12345', display_id: '123456', + custom_mappings: {}, updated_by: '12345', created_by: '12345', created_at: '2020-09-30T07:43:32.000Z', @@ -4923,7 +4965,8 @@ describe('AccountingApi', () => { ], note: 'Some notes about this payment', row_version: '1-12345', - display_id: '123456' + display_id: '123456', + custom_mappings: {} } } as any const current = await accounting.paymentsUpdate(params) @@ -4998,7 +5041,8 @@ describe('AccountingApi', () => { }, gross_profit: { total: 200000 - } + }, + custom_mappings: {} } } as any @@ -5120,6 +5164,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -5175,6 +5220,7 @@ describe('AccountingApi', () => { tax_code: '1234', channel: 'email', memo: 'Thank you for the partnership and have a great day!', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -5288,6 +5334,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -5348,6 +5395,7 @@ describe('AccountingApi', () => { tax_code: '1234', channel: 'email', memo: 'Thank you for the partnership and have a great day!', + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -5525,6 +5573,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -5585,6 +5634,7 @@ describe('AccountingApi', () => { tax_code: '1234', channel: 'email', memo: 'Thank you for the partnership and have a great day!', + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -5714,6 +5764,7 @@ describe('AccountingApi', () => { nominal_code: 'N091', code: '453' }, + custom_mappings: {}, row_version: '1-12345' } ], @@ -5769,6 +5820,7 @@ describe('AccountingApi', () => { tax_code: '1234', channel: 'email', memo: 'Thank you for the partnership and have a great day!', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -5902,6 +5954,7 @@ describe('AccountingApi', () => { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -6030,6 +6083,7 @@ describe('AccountingApi', () => { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -6222,6 +6276,7 @@ describe('AccountingApi', () => { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -6369,6 +6424,7 @@ describe('AccountingApi', () => { status: 'active', payment_method: 'cash', channel: 'email', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -6431,6 +6487,7 @@ describe('AccountingApi', () => { report_tax_type: 'NONE', original_tax_rate_id: '12345', status: 'active', + custom_mappings: {}, row_version: '1-12345' } } as any @@ -6483,6 +6540,7 @@ describe('AccountingApi', () => { report_tax_type: 'NONE', original_tax_rate_id: '12345', status: 'active', + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -6599,6 +6657,7 @@ describe('AccountingApi', () => { report_tax_type: 'NONE', original_tax_rate_id: '12345', status: 'active', + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -6675,6 +6734,7 @@ describe('AccountingApi', () => { report_tax_type: 'NONE', original_tax_rate_id: '12345', status: 'active', + custom_mappings: {}, row_version: '1-12345' } } as any diff --git a/src/gen/tests/apis/AtsApiTest.api.test.ts b/src/gen/tests/apis/AtsApiTest.api.test.ts index c69d4e40a..97883bb06 100644 --- a/src/gen/tests/apis/AtsApiTest.api.test.ts +++ b/src/gen/tests/apis/AtsApiTest.api.test.ts @@ -149,6 +149,7 @@ describe('AtsApi', () => { archived: false, owner_id: '54321', record_url: 'https://app.intercom.io/contacts/12345', + custom_mappings: {}, deleted: true } } as any @@ -290,6 +291,7 @@ describe('AtsApi', () => { 'https://recruitee-main.s3.eu-central-1.amazonaws.com/candidates/36615291/pdf_cv_38swhu4w42k1.pdf?response-content-disposition=inline&response-content-type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQYHB7CA5RLR4Y3ON%2F20220514%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20220514T235654Z&X-Amz-Expires=36000&X-Amz-SignedHeaders=host&X-Amz-Signature=72c0621f5976db75b54de487eb821a8e73480d7f2a6a4a9713ab997944b0561f', record_url: 'https://app.intercom.io/contacts/12345', rejected_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {}, deleted: true, deleted_by: '12345', deleted_at: '2020-09-30T07:43:32.000Z', @@ -497,6 +499,7 @@ describe('AtsApi', () => { 'https://recruitee-main.s3.eu-central-1.amazonaws.com/candidates/36615291/pdf_cv_38swhu4w42k1.pdf?response-content-disposition=inline&response-content-type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQYHB7CA5RLR4Y3ON%2F20220514%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20220514T235654Z&X-Amz-Expires=36000&X-Amz-SignedHeaders=host&X-Amz-Signature=72c0621f5976db75b54de487eb821a8e73480d7f2a6a4a9713ab997944b0561f', record_url: 'https://app.intercom.io/contacts/12345', rejected_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {}, deleted: true, deleted_by: '12345', deleted_at: '2020-09-30T07:43:32.000Z', @@ -656,6 +659,7 @@ describe('AtsApi', () => { archived: false, owner_id: '54321', record_url: 'https://app.intercom.io/contacts/12345', + custom_mappings: {}, deleted: true } } as any @@ -704,7 +708,8 @@ describe('AtsApi', () => { stage: { id: '12345', name: '12345' - } + }, + custom_mappings: {} } } as any const current = await ats.applicationsAdd(params) @@ -744,6 +749,7 @@ describe('AtsApi', () => { id: '12345', name: '12345' }, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -847,6 +853,7 @@ describe('AtsApi', () => { id: '12345', name: '12345' }, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -908,7 +915,8 @@ describe('AtsApi', () => { stage: { id: '12345', name: '12345' - } + }, + custom_mappings: {} } } as any const current = await ats.applicationsUpdate(params) @@ -959,6 +967,7 @@ describe('AtsApi', () => { name: 'R&D', code: '2', description: 'R&D', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1042,6 +1051,7 @@ describe('AtsApi', () => { deleted: true, owner_id: '54321', published_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1116,6 +1126,7 @@ describe('AtsApi', () => { name: 'R&D', code: '2', description: 'R&D', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1199,6 +1210,7 @@ describe('AtsApi', () => { deleted: true, owner_id: '54321', published_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', diff --git a/src/gen/tests/apis/ConnectorApiTest.api.test.ts b/src/gen/tests/apis/ConnectorApiTest.api.test.ts index c3b42d827..39014c062 100644 --- a/src/gen/tests/apis/ConnectorApiTest.api.test.ts +++ b/src/gen/tests/apis/ConnectorApiTest.api.test.ts @@ -334,7 +334,7 @@ describe('ConnectorApi', () => { const { connector } = apideck const params = { id: 'id_example', - docId: 'doc_id_example' + docId: 'application_owner+oauth_credentials' } as any const current = await connector.connectorDocsOne(params) @@ -523,6 +523,9 @@ describe('ConnectorApi', () => { resources: {} } }, + schema_support: { + supported: true + }, docs: [ { id: '12345', @@ -681,6 +684,9 @@ describe('ConnectorApi', () => { resources: {} } }, + schema_support: { + supported: true + }, docs: [ { id: '12345', diff --git a/src/gen/tests/apis/CrmApiTest.api.test.ts b/src/gen/tests/apis/CrmApiTest.api.test.ts index 91e937847..5b51855d2 100644 --- a/src/gen/tests/apis/CrmApiTest.api.test.ts +++ b/src/gen/tests/apis/CrmApiTest.api.test.ts @@ -134,7 +134,8 @@ describe('CrmApi', () => { is_organizer: true, status: 'accepted' } - ] + ], + custom_mappings: {} } } as any const current = await crm.activitiesAdd(params) @@ -261,6 +262,7 @@ describe('CrmApi', () => { created_at: '2017-08-12T20:43:21.291Z' } ], + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -451,6 +453,7 @@ describe('CrmApi', () => { created_at: '2017-08-12T20:43:21.291Z' } ], + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -592,7 +595,8 @@ describe('CrmApi', () => { is_organizer: true, status: 'accepted' } - ] + ], + custom_mappings: {} } } as any const current = await crm.activitiesUpdate(params) @@ -743,7 +747,8 @@ describe('CrmApi', () => { tags: ['New'], read_only: false, salutation: 'Mr', - birthday: '2000-08-12' + birthday: '2000-08-12', + custom_mappings: {} } } as any const current = await crm.companiesAdd(params) @@ -890,6 +895,7 @@ describe('CrmApi', () => { deleted: false, salutation: 'Mr', birthday: '2000-08-12', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1100,6 +1106,7 @@ describe('CrmApi', () => { deleted: false, salutation: 'Mr', birthday: '2000-08-12', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1264,7 +1271,8 @@ describe('CrmApi', () => { tags: ['New'], read_only: false, salutation: 'Mr', - birthday: '2000-08-12' + birthday: '2000-08-12', + custom_mappings: {} } } as any const current = await crm.companiesUpdate(params) @@ -1398,7 +1406,8 @@ describe('CrmApi', () => { value: 'Uses Salesforce and Marketo' } ], - tags: ['New'] + tags: ['New'], + custom_mappings: {} } } as any const current = await crm.contactsAdd(params) @@ -1527,6 +1536,7 @@ describe('CrmApi', () => { first_call_at: '2020-09-30T07:43:32.000Z', first_email_at: '2020-09-30T07:43:32.000Z', last_activity_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {}, updated_at: '2017-08-12T20:43:21.291Z', created_at: '2017-08-12T20:43:21.291Z' } @@ -1717,6 +1727,7 @@ describe('CrmApi', () => { first_call_at: '2020-09-30T07:43:32.000Z', first_email_at: '2020-09-30T07:43:32.000Z', last_activity_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {}, updated_at: '2017-08-12T20:43:21.291Z', created_at: '2017-08-12T20:43:21.291Z' } @@ -1862,7 +1873,8 @@ describe('CrmApi', () => { value: 'Uses Salesforce and Marketo' } ], - tags: ['New'] + tags: ['New'], + custom_mappings: {} } } as any const current = await crm.contactsUpdate(params) @@ -1987,7 +1999,8 @@ describe('CrmApi', () => { value: 'Uses Salesforce and Marketo' } ], - tags: ['New'] + tags: ['New'], + custom_mappings: {} } } as any const current = await crm.leadsAdd(params) @@ -2104,6 +2117,7 @@ describe('CrmApi', () => { } ], tags: ['New'], + custom_mappings: {}, updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' } @@ -2282,6 +2296,7 @@ describe('CrmApi', () => { } ], tags: ['New'], + custom_mappings: {}, updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' } @@ -2418,7 +2433,8 @@ describe('CrmApi', () => { value: 'Uses Salesforce and Marketo' } ], - tags: ['New'] + tags: ['New'], + custom_mappings: {} } } as any const current = await crm.leadsUpdate(params) @@ -2467,7 +2483,8 @@ describe('CrmApi', () => { company_id: '12345', opportunity_id: '12345', lead_id: '12345', - active: true + active: true, + custom_mappings: {} } } as any const current = await crm.notesAdd(params) @@ -2508,6 +2525,7 @@ describe('CrmApi', () => { opportunity_id: '12345', lead_id: '12345', active: true, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -2612,6 +2630,7 @@ describe('CrmApi', () => { opportunity_id: '12345', lead_id: '12345', active: true, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -2674,7 +2693,8 @@ describe('CrmApi', () => { company_id: '12345', opportunity_id: '12345', lead_id: '12345', - active: true + active: true, + custom_mappings: {} } } as any const current = await crm.notesUpdate(params) @@ -2751,7 +2771,8 @@ describe('CrmApi', () => { value: 'Uses Salesforce and Marketo' } ], - stage_last_changed_at: '2020-09-30T07:43:32.000Z' + stage_last_changed_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {} } } as any const current = await crm.opportunitiesAdd(params) @@ -2827,6 +2848,7 @@ describe('CrmApi', () => { date_stage_changed: '2020-09-30T00:00:00.000Z', date_last_contacted: '2020-09-30T00:00:00.000Z', date_lead_created: '2020-09-30T00:00:00.000Z', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -2966,6 +2988,7 @@ describe('CrmApi', () => { date_stage_changed: '2020-09-30T00:00:00.000Z', date_last_contacted: '2020-09-30T00:00:00.000Z', date_lead_created: '2020-09-30T00:00:00.000Z', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -3056,7 +3079,8 @@ describe('CrmApi', () => { value: 'Uses Salesforce and Marketo' } ], - stage_last_changed_at: '2020-09-30T07:43:32.000Z' + stage_last_changed_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {} } } as any const current = await crm.opportunitiesUpdate(params) @@ -3436,7 +3460,8 @@ describe('CrmApi', () => { email: 'elon@musk.com', type: 'primary' } - ] + ], + custom_mappings: {} } } as any const current = await crm.usersAdd(params) @@ -3528,6 +3553,7 @@ describe('CrmApi', () => { type: 'primary' } ], + custom_mappings: {}, updated_at: '2017-08-12T20:43:21.291Z', created_at: '2017-08-12T20:43:21.291Z' } @@ -3681,6 +3707,7 @@ describe('CrmApi', () => { type: 'primary' } ], + custom_mappings: {}, updated_at: '2017-08-12T20:43:21.291Z', created_at: '2017-08-12T20:43:21.291Z' } @@ -3792,7 +3819,8 @@ describe('CrmApi', () => { email: 'elon@musk.com', type: 'primary' } - ] + ], + custom_mappings: {} } } as any const current = await crm.usersUpdate(params) diff --git a/src/gen/tests/apis/EcommerceApiTest.api.test.ts b/src/gen/tests/apis/EcommerceApiTest.api.test.ts index 602321442..1932042b2 100644 --- a/src/gen/tests/apis/EcommerceApiTest.api.test.ts +++ b/src/gen/tests/apis/EcommerceApiTest.api.test.ts @@ -81,6 +81,7 @@ describe('EcommerceApi', () => { status: 'active' } ], + custom_mappings: {}, created_at: '2020-09-30T07:43:32.000Z', updated_at: '2020-09-30T07:43:32.000Z' } @@ -177,6 +178,7 @@ describe('EcommerceApi', () => { status: 'active' } ], + custom_mappings: {}, created_at: '2020-09-30T07:43:32.000Z', updated_at: '2020-09-30T07:43:32.000Z' } @@ -307,6 +309,7 @@ describe('EcommerceApi', () => { } ], note: 'Special instructions for delivery', + custom_mappings: {}, created_at: '2020-09-30T07:43:32.000Z', updated_at: '2020-09-30T07:43:32.000Z' } @@ -460,6 +463,7 @@ describe('EcommerceApi', () => { } ], note: 'Special instructions for delivery', + custom_mappings: {}, created_at: '2020-09-30T07:43:32.000Z', updated_at: '2020-09-30T07:43:32.000Z' } @@ -545,6 +549,7 @@ describe('EcommerceApi', () => { name: 'Laptops' } ], + custom_mappings: {}, created_at: '2020-09-30T07:43:32.000Z', updated_at: '2020-09-30T07:43:32.000Z' } @@ -652,6 +657,7 @@ describe('EcommerceApi', () => { name: 'Laptops' } ], + custom_mappings: {}, created_at: '2020-09-30T07:43:32.000Z', updated_at: '2020-09-30T07:43:32.000Z' } @@ -697,6 +703,7 @@ describe('EcommerceApi', () => { name: 'My Store', store_url: 'https://mybrand.com/shop', admin_url: 'https://mybrand.com/admin', + custom_mappings: {}, created_at: '2020-09-30T07:43:32.000Z', updated_at: '2020-09-30T07:43:32.000Z' } diff --git a/src/gen/tests/apis/FileStorageApiTest.api.test.ts b/src/gen/tests/apis/FileStorageApiTest.api.test.ts index 860572942..5769c7c6d 100644 --- a/src/gen/tests/apis/FileStorageApiTest.api.test.ts +++ b/src/gen/tests/apis/FileStorageApiTest.api.test.ts @@ -50,7 +50,8 @@ describe('FileStorageApi', () => { driveGroup: { name: 'accounting', display_name: 'accounting', - description: 'A description' + description: 'A description', + custom_mappings: {} } } as any const current = await fileStorage.driveGroupsAdd(params) @@ -86,6 +87,7 @@ describe('FileStorageApi', () => { name: 'accounting', display_name: 'accounting', description: 'A description', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -185,6 +187,7 @@ describe('FileStorageApi', () => { name: 'accounting', display_name: 'accounting', description: 'A description', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -242,7 +245,8 @@ describe('FileStorageApi', () => { driveGroup: { name: 'accounting', display_name: 'accounting', - description: 'A description' + description: 'A description', + custom_mappings: {} } } as any const current = await fileStorage.driveGroupsUpdate(params) @@ -285,7 +289,8 @@ describe('FileStorageApi', () => { const params = { drive: { name: 'Project Resources', - description: 'A description' + description: 'A description', + custom_mappings: {} } } as any const current = await fileStorage.drivesAdd(params) @@ -320,6 +325,7 @@ describe('FileStorageApi', () => { id: '12345', name: 'Project Resources', description: 'A description', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -418,6 +424,7 @@ describe('FileStorageApi', () => { id: '12345', name: 'Project Resources', description: 'A description', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -474,7 +481,8 @@ describe('FileStorageApi', () => { id: 'id_example', drive: { name: 'Project Resources', - description: 'A description' + description: 'A description', + custom_mappings: {} } } as any const current = await fileStorage.drivesUpdate(params) @@ -536,6 +544,7 @@ describe('FileStorageApi', () => { 'application/vnd.oasis.opendocument.presentation', 'text/plain' ], + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -724,6 +733,7 @@ describe('FileStorageApi', () => { 'application/vnd.oasis.opendocument.presentation', 'text/plain' ], + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -798,6 +808,7 @@ describe('FileStorageApi', () => { 'application/vnd.oasis.opendocument.presentation', 'text/plain' ], + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1048,6 +1059,7 @@ describe('FileStorageApi', () => { } ], parent_folders_complete: true, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1502,6 +1514,7 @@ describe('FileStorageApi', () => { 'application/vnd.oasis.opendocument.presentation', 'text/plain' ], + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', diff --git a/src/gen/tests/apis/HrisApiTest.api.test.ts b/src/gen/tests/apis/HrisApiTest.api.test.ts index 94f8af815..1bde7fa57 100644 --- a/src/gen/tests/apis/HrisApiTest.api.test.ts +++ b/src/gen/tests/apis/HrisApiTest.api.test.ts @@ -106,7 +106,8 @@ describe('HrisApi', () => { type: 'primary' } ], - debtor_id: '12345' + debtor_id: '12345', + custom_mappings: {} } } as any const current = await hris.companiesAdd(params) @@ -198,6 +199,7 @@ describe('HrisApi', () => { } ], debtor_id: '12345', + custom_mappings: {}, deleted: false, updated_by: '12345', created_by: '12345', @@ -354,6 +356,7 @@ describe('HrisApi', () => { } ], debtor_id: '12345', + custom_mappings: {}, deleted: false, updated_by: '12345', created_by: '12345', @@ -468,7 +471,8 @@ describe('HrisApi', () => { type: 'primary' } ], - debtor_id: '12345' + debtor_id: '12345', + custom_mappings: {} } } as any const current = await hris.companiesUpdate(params) @@ -512,7 +516,8 @@ describe('HrisApi', () => { department: { name: 'R&D', code: '2', - description: 'R&D' + description: 'R&D', + custom_mappings: {} } } as any const current = await hris.departmentsAdd(params) @@ -549,6 +554,7 @@ describe('HrisApi', () => { name: 'R&D', code: '2', description: 'R&D', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -649,6 +655,7 @@ describe('HrisApi', () => { name: 'R&D', code: '2', description: 'R&D', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -706,7 +713,8 @@ describe('HrisApi', () => { department: { name: 'R&D', code: '2', - description: 'R&D' + description: 'R&D', + custom_mappings: {} } } as any const current = await hris.departmentsUpdate(params) @@ -912,7 +920,8 @@ describe('HrisApi', () => { gender: 'male', initials: 'EM', birthday: '2000-08-12', - deceased_on: '2000-08-12' + deceased_on: '2000-08-12', + custom_mappings: {} }, division: 'Europe', division_id: '12345', @@ -1098,6 +1107,7 @@ describe('HrisApi', () => { end_date: '2021-11-28' }, tags: ['New'], + custom_mappings: {}, row_version: '1-12345', deleted: true, updated_by: '12345', @@ -1198,7 +1208,8 @@ describe('HrisApi', () => { gender: 'male', initials: 'EM', birthday: '2000-08-12', - deceased_on: '2000-08-12' + deceased_on: '2000-08-12', + custom_mappings: {} }, division: 'Europe', division_id: '12345', @@ -1382,6 +1393,7 @@ describe('HrisApi', () => { end_date: '2021-11-28' }, tags: ['New'], + custom_mappings: {}, row_version: '1-12345', deleted: true } @@ -1433,7 +1445,8 @@ describe('HrisApi', () => { gender: 'male', initials: 'EM', birthday: '2000-08-12', - deceased_on: '2000-08-12' + deceased_on: '2000-08-12', + custom_mappings: {} }, division: 'Europe', division_id: '12345', @@ -1619,6 +1632,7 @@ describe('HrisApi', () => { end_date: '2021-11-28' }, tags: ['New'], + custom_mappings: {}, row_version: '1-12345', deleted: true, updated_by: '12345', @@ -1734,7 +1748,8 @@ describe('HrisApi', () => { gender: 'male', initials: 'EM', birthday: '2000-08-12', - deceased_on: '2000-08-12' + deceased_on: '2000-08-12', + custom_mappings: {} }, division: 'Europe', division_id: '12345', @@ -1920,6 +1935,7 @@ describe('HrisApi', () => { end_date: '2021-11-28' }, tags: ['New'], + custom_mappings: {}, row_version: '1-12345', deleted: true, updated_by: '12345', @@ -1993,7 +2009,8 @@ describe('HrisApi', () => { gender: 'male', initials: 'EM', birthday: '2000-08-12', - deceased_on: '2000-08-12' + deceased_on: '2000-08-12', + custom_mappings: {} }, division: 'Europe', division_id: '12345', @@ -2177,6 +2194,7 @@ describe('HrisApi', () => { end_date: '2021-11-28' }, tags: ['New'], + custom_mappings: {}, row_version: '1-12345', deleted: true } @@ -2237,7 +2255,8 @@ describe('HrisApi', () => { deductions: [[Object]], benefits: [[Object]] } - ] + ], + custom_mappings: {} } ] } as any @@ -2320,7 +2339,8 @@ describe('HrisApi', () => { } ] } - ] + ], + custom_mappings: {} } } as any @@ -2385,7 +2405,8 @@ describe('HrisApi', () => { notes: { employee: 'Relaxing on the beach for a few hours.', manager: 'Enjoy!' - } + }, + custom_mappings: {} } } as any const current = await hris.timeOffRequestsAdd(params) @@ -2433,6 +2454,7 @@ describe('HrisApi', () => { employee: 'Relaxing on the beach for a few hours.', manager: 'Enjoy!' }, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -2544,6 +2566,7 @@ describe('HrisApi', () => { employee: 'Relaxing on the beach for a few hours.', manager: 'Enjoy!' }, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -2613,7 +2636,8 @@ describe('HrisApi', () => { notes: { employee: 'Relaxing on the beach for a few hours.', manager: 'Enjoy!' - } + }, + custom_mappings: {} } } as any const current = await hris.timeOffRequestsUpdate(params) diff --git a/src/gen/tests/apis/IssueTrackingApiTest.api.test.ts b/src/gen/tests/apis/IssueTrackingApiTest.api.test.ts index f7ed00ed5..b9ae71f91 100644 --- a/src/gen/tests/apis/IssueTrackingApiTest.api.test.ts +++ b/src/gen/tests/apis/IssueTrackingApiTest.api.test.ts @@ -39,7 +39,8 @@ describe('IssueTrackingApi', () => { data: [ { id: '12345', - name: 'User Experience' + name: 'User Experience', + custom_mappings: {} } ], meta: { @@ -106,7 +107,8 @@ describe('IssueTrackingApi', () => { collectionId: 'collection_id_example', ticketId: 'ticket_id_example', ticketComment: { - body: 'What internet provider do you use?' + body: 'What internet provider do you use?', + custom_mappings: {} } } as any const current = await issueTracking.ticketCommentsAdd(params) @@ -140,6 +142,7 @@ describe('IssueTrackingApi', () => { { id: '12345', body: 'What internet provider do you use?', + custom_mappings: {}, created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' @@ -241,6 +244,7 @@ describe('IssueTrackingApi', () => { data: { id: '12345', body: 'What internet provider do you use?', + custom_mappings: {}, created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' @@ -299,7 +303,8 @@ describe('IssueTrackingApi', () => { collectionId: 'collection_id_example', ticketId: 'ticket_id_example', ticketComment: { - body: 'What internet provider do you use?' + body: 'What internet provider do you use?', + custom_mappings: {} } } as any const current = await issueTracking.ticketCommentsUpdate(params) @@ -356,9 +361,11 @@ describe('IssueTrackingApi', () => { due_date: '2020-09-30T07:43:32.000Z', tags: [ { - id: '12345' + id: '12345', + custom_mappings: {} } - ] + ], + custom_mappings: {} } } as any const current = await issueTracking.ticketsAdd(params) @@ -412,9 +419,11 @@ describe('IssueTrackingApi', () => { tags: [ { id: '12345', - name: 'User Experience' + name: 'User Experience', + custom_mappings: {} } - ] + ], + custom_mappings: {} } ], meta: { @@ -531,9 +540,11 @@ describe('IssueTrackingApi', () => { tags: [ { id: '12345', - name: 'User Experience' + name: 'User Experience', + custom_mappings: {} } - ] + ], + custom_mappings: {} } } as any @@ -601,9 +612,11 @@ describe('IssueTrackingApi', () => { due_date: '2020-09-30T07:43:32.000Z', tags: [ { - id: '12345' + id: '12345', + custom_mappings: {} } - ] + ], + custom_mappings: {} } } as any const current = await issueTracking.ticketsUpdate(params) @@ -641,6 +654,7 @@ describe('IssueTrackingApi', () => { last_name: 'Musk', email: 'elon@musk.com', photo_url: 'https://unavatar.io/elon-musk', + custom_mappings: {}, updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' } @@ -702,6 +716,7 @@ describe('IssueTrackingApi', () => { last_name: 'Musk', email: 'elon@musk.com', photo_url: 'https://unavatar.io/elon-musk', + custom_mappings: {}, updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' } @@ -750,6 +765,7 @@ describe('IssueTrackingApi', () => { type: 'Technical', name: 'Main IT Issues', description: 'IT Issues', + custom_mappings: {}, updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' } @@ -808,6 +824,7 @@ describe('IssueTrackingApi', () => { type: 'Technical', name: 'Main IT Issues', description: 'IT Issues', + custom_mappings: {}, updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' } diff --git a/src/gen/tests/apis/LeadApiTest.api.test.ts b/src/gen/tests/apis/LeadApiTest.api.test.ts index 5a861cb9d..30e363bd1 100644 --- a/src/gen/tests/apis/LeadApiTest.api.test.ts +++ b/src/gen/tests/apis/LeadApiTest.api.test.ts @@ -131,7 +131,8 @@ describe('LeadApi', () => { value: 'Uses Salesforce and Marketo' } ], - tags: ['New'] + tags: ['New'], + custom_mappings: {} } } as any const current = await lead.leadsAdd(params) @@ -248,6 +249,7 @@ describe('LeadApi', () => { } ], tags: ['New'], + custom_mappings: {}, updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' } @@ -426,6 +428,7 @@ describe('LeadApi', () => { } ], tags: ['New'], + custom_mappings: {}, updated_at: '2020-09-30T07:43:32.000Z', created_at: '2020-09-30T07:43:32.000Z' } @@ -562,7 +565,8 @@ describe('LeadApi', () => { value: 'Uses Salesforce and Marketo' } ], - tags: ['New'] + tags: ['New'], + custom_mappings: {} } } as any const current = await lead.leadsUpdate(params) diff --git a/src/gen/tests/apis/PosApiTest.api.test.ts b/src/gen/tests/apis/PosApiTest.api.test.ts index 3ff700485..eb5b648f5 100644 --- a/src/gen/tests/apis/PosApiTest.api.test.ts +++ b/src/gen/tests/apis/PosApiTest.api.test.ts @@ -101,6 +101,7 @@ describe('PosApi', () => { ], available: true, hidden: true, + custom_mappings: {}, deleted: true } } as any @@ -187,6 +188,7 @@ describe('PosApi', () => { available: true, hidden: true, version: '12345', + custom_mappings: {}, deleted: true, updated_by: '12345', created_by: '12345', @@ -337,6 +339,7 @@ describe('PosApi', () => { available: true, hidden: true, version: '12345', + custom_mappings: {}, deleted: true, updated_by: '12345', created_by: '12345', @@ -446,6 +449,7 @@ describe('PosApi', () => { ], available: true, hidden: true, + custom_mappings: {}, deleted: true } } as any @@ -518,7 +522,8 @@ describe('PosApi', () => { }, status: 'active', merchant_id: '12345', - currency: 'USD' + currency: 'USD', + custom_mappings: {} } } as any const current = await pos.locationsAdd(params) @@ -582,6 +587,7 @@ describe('PosApi', () => { status: 'active', merchant_id: '12345', currency: 'USD', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -709,6 +715,7 @@ describe('PosApi', () => { status: 'active', merchant_id: '12345', currency: 'USD', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -794,7 +801,8 @@ describe('PosApi', () => { }, status: 'active', merchant_id: '12345', - currency: 'USD' + currency: 'USD', + custom_mappings: {} } } as any const current = await pos.locationsUpdate(params) @@ -877,7 +885,8 @@ describe('PosApi', () => { } ], language: 'EN', - currency: 'USD' + currency: 'USD', + custom_mappings: {} } } as any const current = await pos.merchantsAdd(params) @@ -953,6 +962,7 @@ describe('PosApi', () => { ], language: 'EN', currency: 'USD', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1092,6 +1102,7 @@ describe('PosApi', () => { ], language: 'EN', currency: 'USD', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1188,7 +1199,8 @@ describe('PosApi', () => { } ], language: 'EN', - currency: 'USD' + currency: 'USD', + custom_mappings: {} } } as any const current = await pos.merchantsUpdate(params) @@ -1247,6 +1259,7 @@ describe('PosApi', () => { } ], deleted: true, + custom_mappings: {}, row_version: '1-12345' } } as any @@ -1297,6 +1310,7 @@ describe('PosApi', () => { } ], deleted: true, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -1411,6 +1425,7 @@ describe('PosApi', () => { } ], deleted: true, + custom_mappings: {}, row_version: '1-12345', updated_by: '12345', created_by: '12345', @@ -1484,6 +1499,7 @@ describe('PosApi', () => { } ], deleted: true, + custom_mappings: {}, row_version: '1-12345' } } as any @@ -1532,7 +1548,8 @@ describe('PosApi', () => { price_amount: 10, currency: 'USD', modifier_group_id: '123', - available: true + available: true, + custom_mappings: {} } } as any const current = await pos.modifiersAdd(params) @@ -1572,6 +1589,7 @@ describe('PosApi', () => { currency: 'USD', modifier_group_id: '123', available: true, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1675,6 +1693,7 @@ describe('PosApi', () => { currency: 'USD', modifier_group_id: '123', available: true, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -1736,7 +1755,8 @@ describe('PosApi', () => { price_amount: 10, currency: 'USD', modifier_group_id: '123', - available: true + available: true, + custom_mappings: {} } } as any const current = await pos.modifiersUpdate(params) @@ -2240,6 +2260,7 @@ describe('PosApi', () => { } ], voided: false, + custom_mappings: {}, version: '230320320320' } } as any @@ -2452,6 +2473,7 @@ describe('PosApi', () => { source: 'api', voided: false, voided_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {}, version: '230320320320', updated_by: '12345', created_by: '12345', @@ -2800,6 +2822,7 @@ describe('PosApi', () => { source: 'api', voided: false, voided_at: '2020-09-30T07:43:32.000Z', + custom_mappings: {}, version: '230320320320', updated_by: '12345', created_by: '12345', @@ -3086,6 +3109,7 @@ describe('PosApi', () => { } ], voided: false, + custom_mappings: {}, version: '230320320320' } } as any @@ -3359,6 +3383,7 @@ describe('PosApi', () => { } ], voided: false, + custom_mappings: {}, version: '230320320320' } } as any @@ -3509,7 +3534,8 @@ describe('PosApi', () => { active: true, type: 'auto_gratuity' } - ] + ], + custom_mappings: {} } } as any const current = await pos.paymentsAdd(params) @@ -3653,6 +3679,7 @@ describe('PosApi', () => { type: 'auto_gratuity' } ], + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -3860,6 +3887,7 @@ describe('PosApi', () => { type: 'auto_gratuity' } ], + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -4023,7 +4051,8 @@ describe('PosApi', () => { active: true, type: 'auto_gratuity' } - ] + ], + custom_mappings: {} } } as any const current = await pos.paymentsUpdate(params) @@ -4071,7 +4100,8 @@ describe('PosApi', () => { hidden: true, editable: true, opens_cash_drawer: true, - allows_tipping: true + allows_tipping: true, + custom_mappings: {} } } as any const current = await pos.tendersAdd(params) @@ -4111,6 +4141,7 @@ describe('PosApi', () => { editable: true, opens_cash_drawer: true, allows_tipping: true, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -4214,6 +4245,7 @@ describe('PosApi', () => { editable: true, opens_cash_drawer: true, allows_tipping: true, + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -4275,7 +4307,8 @@ describe('PosApi', () => { hidden: true, editable: true, opens_cash_drawer: true, - allows_tipping: true + allows_tipping: true, + custom_mappings: {} } } as any const current = await pos.tendersUpdate(params) diff --git a/src/gen/tests/apis/SmsApiTest.api.test.ts b/src/gen/tests/apis/SmsApiTest.api.test.ts index b91883521..c81b05435 100644 --- a/src/gen/tests/apis/SmsApiTest.api.test.ts +++ b/src/gen/tests/apis/SmsApiTest.api.test.ts @@ -56,7 +56,8 @@ describe('SmsApi', () => { scheduled_at: '2020-09-30T07:43:32.000Z', webhook_url: 'https://unify.apideck.com/webhook/webhooks/eyz329dkffdl4949/x/sms', reference: 'CUST001', - messaging_service_id: '123456' + messaging_service_id: '123456', + custom_mappings: {} } } as any const current = await sms.messagesAdd(params) @@ -112,6 +113,7 @@ describe('SmsApi', () => { message: 'Something went wrong' }, messaging_service_id: '123456', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -231,6 +233,7 @@ describe('SmsApi', () => { message: 'Something went wrong' }, messaging_service_id: '123456', + custom_mappings: {}, updated_by: '12345', created_by: '12345', updated_at: '2020-09-30T07:43:32.000Z', @@ -294,7 +297,8 @@ describe('SmsApi', () => { scheduled_at: '2020-09-30T07:43:32.000Z', webhook_url: 'https://unify.apideck.com/webhook/webhooks/eyz329dkffdl4949/x/sms', reference: 'CUST001', - messaging_service_id: '123456' + messaging_service_id: '123456', + custom_mappings: {} } } as any const current = await sms.messagesUpdate(params) diff --git a/src/gen/tests/apis/VaultApiTest.api.test.ts b/src/gen/tests/apis/VaultApiTest.api.test.ts index a829a6d34..bad34b8ec 100644 --- a/src/gen/tests/apis/VaultApiTest.api.test.ts +++ b/src/gen/tests/apis/VaultApiTest.api.test.ts @@ -1,29 +1,38 @@ -import fetch from 'node-fetch-commonjs' -import { Apideck } from '../../../' +import fetch from 'node-fetch-commonjs'; +import { + Apideck, + Configuration +} from '../../../'; -const { Response } = jest.requireActual('node-fetch-commonjs') +import { + VaultApi +}from '../../'; + +const {Response} = jest.requireActual('node-fetch-commonjs') + +jest.mock('node-fetch-commonjs', () => jest.fn()); -jest.mock('node-fetch-commonjs', () => jest.fn()) const basePath = 'https://example.com' const methodResponse = { - All: { + 'All': { status: 'OK', data: [] } } describe('VaultApi', () => { + describe('#connectionSettingsAll', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}/{resource}/config' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -31,124 +40,147 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: - 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: - 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: - 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], - resource_schema_support: ['leads'], - resource_settings_support: ['leads'], - validation_support: true, - settings_required_for_authorization: ['client_id', 'client_secret'], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: ['crm.contact.created'], - downstream_event_types: ['contacts.CREATED'], - execute_url: - 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - updated_at: 1616662325753 - } - } as any + status_code: 200, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: [ + 'opportunities', + 'companies', + 'contacts', + 'leads' + ], + resource_schema_support: [ + 'leads' + ], + resource_settings_support: [ + 'leads' + ], + validation_support: true, + schema_support: true, + settings_required_for_authorization: [ + 'client_id', + 'client_secret' + ], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: [ + 'crm.contact.created' + ], + downstream_event_types: [ + 'contacts.CREATED' + ], + execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - unifiedApi: 'crm', - serviceId: 'pipedrive', - resource: 'leads' - } as any + unifiedApi: 'crm', + serviceId: 'pipedrive', + resource: 'leads' +} as any const current = await vault.connectionSettingsAll(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#connectionSettingsUpdate', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}/{resource}/config' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -156,150 +188,178 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: - 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: - 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: - 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], - resource_schema_support: ['leads'], - resource_settings_support: ['leads'], - validation_support: true, - settings_required_for_authorization: ['client_id', 'client_secret'], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: ['crm.contact.created'], - downstream_event_types: ['contacts.CREATED'], - execute_url: - 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - updated_at: 1616662325753 - } - } as any + status_code: 200, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: [ + 'opportunities', + 'companies', + 'contacts', + 'leads' + ], + resource_schema_support: [ + 'leads' + ], + resource_settings_support: [ + 'leads' + ], + validation_support: true, + schema_support: true, + settings_required_for_authorization: [ + 'client_id', + 'client_secret' + ], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: [ + 'crm.contact.created' + ], + downstream_event_types: [ + 'contacts.CREATED' + ], + execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm', + serviceId: 'pipedrive', + unifiedApi: 'crm', + resource: 'leads', + connection: { + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + configuration: [ + { resource: 'leads', - connection: { - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - configuration: [ - { - resource: 'leads', - defaults: [ - { - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ] - } - } as any + defaults: [ + { + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + custom_mappings: [ + { + value: '$.root.training.first_aid' + } + ] + } +} as any const current = await vault.connectionSettingsUpdate(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#connectionsAll', () => { const endpoint = '/vault/connections' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -307,147 +367,170 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: [ - { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: - 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: - 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: - 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [[Object]] - } - ], - configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], - resource_schema_support: ['leads'], - resource_settings_support: ['leads'], - validation_support: true, - settings_required_for_authorization: ['client_id', 'client_secret'], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: ['crm.contact.created'], - downstream_event_types: ['contacts.CREATED'], - execute_url: - 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - updated_at: 1616662325753 - } - ] - } as any + status_code: 200, + status: 'OK', + data: [ + { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + [Object] + ] + } + ], + configurable_resources: [ + 'opportunities', + 'companies', + 'contacts', + 'leads' + ], + resource_schema_support: [ + 'leads' + ], + resource_settings_support: [ + 'leads' + ], + validation_support: true, + schema_support: true, + settings_required_for_authorization: [ + 'client_id', + 'client_secret' + ], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: [ + 'crm.contact.created' + ], + downstream_event_types: [ + 'contacts.CREATED' + ], + execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } + ] +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = {} as any const current = await vault.connectionsAll(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#connectionsDelete', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() }) it('should call Apideck with expected params', async () => { - const mockedResponse: Record = {} as any + const mockedResponse: Record = {}as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm' - } as any + serviceId: 'pipedrive', + unifiedApi: 'crm' +} as any const current = await vault.connectionsDelete(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#connectionsImport', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}/import' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -455,141 +538,162 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 201, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: - 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: - 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: - 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], - resource_schema_support: ['leads'], - resource_settings_support: ['leads'], - validation_support: true, - settings_required_for_authorization: ['client_id', 'client_secret'], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: ['crm.contact.created'], - downstream_event_types: ['contacts.CREATED'], - execute_url: - 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - updated_at: 1616662325753 - } - } as any + status_code: 201, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: [ + 'opportunities', + 'companies', + 'contacts', + 'leads' + ], + resource_schema_support: [ + 'leads' + ], + resource_settings_support: [ + 'leads' + ], + validation_support: true, + schema_support: true, + settings_required_for_authorization: [ + 'client_id', + 'client_secret' + ], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: [ + 'crm.contact.created' + ], + downstream_event_types: [ + 'contacts.CREATED' + ], + execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm', - connection: { - credentials: { - access_token: - 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c', - refresh_token: - 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.cThIIoDvwdueQB468K5xDc5633seEFoqwxjF_xSJyQQ' - }, - settings: { - instance_url: 'https://eu28.salesforce.com' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - } - } - } as any + serviceId: 'pipedrive', + unifiedApi: 'crm', + connection: { + credentials: { + access_token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c', + refresh_token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.cThIIoDvwdueQB468K5xDc5633seEFoqwxjF_xSJyQQ' + }, + settings: { + instance_url: 'https://eu28.salesforce.com' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + } + } +} as any const current = await vault.connectionsImport(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#connectionsOne', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -597,123 +701,146 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: - 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: - 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: - 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], - resource_schema_support: ['leads'], - resource_settings_support: ['leads'], - validation_support: true, - settings_required_for_authorization: ['client_id', 'client_secret'], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: ['crm.contact.created'], - downstream_event_types: ['contacts.CREATED'], - execute_url: - 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - updated_at: 1616662325753 - } - } as any + status_code: 200, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: [ + 'opportunities', + 'companies', + 'contacts', + 'leads' + ], + resource_schema_support: [ + 'leads' + ], + resource_settings_support: [ + 'leads' + ], + validation_support: true, + schema_support: true, + settings_required_for_authorization: [ + 'client_id', + 'client_secret' + ], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: [ + 'crm.contact.created' + ], + downstream_event_types: [ + 'contacts.CREATED' + ], + execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm' - } as any + serviceId: 'pipedrive', + unifiedApi: 'crm' +} as any const current = await vault.connectionsOne(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#connectionsUpdate', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -721,148 +848,176 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: - 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: - 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: - 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], - resource_schema_support: ['leads'], - resource_settings_support: ['leads'], - validation_support: true, - settings_required_for_authorization: ['client_id', 'client_secret'], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: ['crm.contact.created'], - downstream_event_types: ['contacts.CREATED'], - execute_url: - 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - updated_at: 1616662325753 - } - } as any + status_code: 200, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: [ + 'opportunities', + 'companies', + 'contacts', + 'leads' + ], + resource_schema_support: [ + 'leads' + ], + resource_settings_support: [ + 'leads' + ], + validation_support: true, + schema_support: true, + settings_required_for_authorization: [ + 'client_id', + 'client_secret' + ], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: [ + 'crm.contact.created' + ], + downstream_event_types: [ + 'contacts.CREATED' + ], + execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm', - connection: { - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - configuration: [ - { - resource: 'leads', - defaults: [ - { - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ] - } - } as any + serviceId: 'pipedrive', + unifiedApi: 'crm', + connection: { + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + configuration: [ + { + resource: 'leads', + defaults: [ + { + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + custom_mappings: [ + { + value: '$.root.training.first_aid' + } + ] + } +} as any const current = await vault.connectionsUpdate(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#consumerRequestCountsAll', () => { const endpoint = '/vault/consumers/{consumer_id}/stats' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -870,46 +1025,44 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - application_id: '1111', - consumer_id: 'test_user_id', - start_datetime: '2021-05-01T12:00:00.000Z', - end_datetime: '2021-05-10T12:00:00.000Z', - aggregated_request_count: 40, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 - } - } - } as any + status_code: 200, + status: 'OK', + data: { + application_id: '1111', + consumer_id: 'test_user_id', + start_datetime: '2021-05-01T12:00:00.000Z', + end_datetime: '2021-05-10T12:00:00.000Z', + aggregated_request_count: 40, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + } + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - consumerId: 'test_user_id', - startDatetime: '2021-05-01T12:00:00.000Z', - endDatetime: '2021-05-30T12:00:00.000Z' - } as any + consumerId: 'test_user_id', + startDatetime: '2021-05-01T12:00:00.000Z', + endDatetime: '2021-05-30T12:00:00.000Z' +} as any const current = await vault.consumerRequestCountsAll(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#consumersAdd', () => { const endpoint = '/vault/consumers' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -917,89 +1070,89 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - consumer_id: 'test_consumer_id', - application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - connections: [ - { - id: '1111+test_user_id', - name: 'Salesforce', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - website: 'https://www.salesforce.com', - tag_line: - 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - service_id: 'teamleader', - unified_api: 'crm', - consumer_id: 'test_user_id', - auth_type: 'oauth2', - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - created_at: '2020-09-19T12:18:37.071Z', - updated_at: '2020-09-19T12:18:37.071Z', - state: 'authorized' - } - ], - services: ['salesforce', 'stripe'], - aggregated_request_count: 101, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 + status_code: 200, + status: 'OK', + data: { + consumer_id: 'test_consumer_id', + application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + }, + connections: [ + { + id: '1111+test_user_id', + name: 'Salesforce', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + website: 'https://www.salesforce.com', + tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + service_id: 'teamleader', + unified_api: 'crm', + consumer_id: 'test_user_id', + auth_type: 'oauth2', + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' }, - created: '2021-05-07T12:55:42.242Z', - modified: '2021-05-07T12:55:42.242Z', - request_count_updated: '2021-05-07T12:55:42.242Z' - } - } as any + plan: 'enterprise' + }, + created_at: '2020-09-19T12:18:37.071Z', + updated_at: '2020-09-19T12:18:37.071Z', + state: 'authorized' + } + ], + services: [ + 'salesforce', + 'stripe' + ], + aggregated_request_count: 101, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + }, + created: '2021-05-07T12:55:42.242Z', + modified: '2021-05-07T12:55:42.242Z', + request_count_updated: '2021-05-07T12:55:42.242Z' + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - consumer: { - consumer_id: 'test_consumer_id', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - } - } - } as any + consumer: { + consumer_id: 'test_consumer_id', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + } + } +} as any const current = await vault.consumersAdd(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#consumersAll', () => { const endpoint = '/vault/consumers' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -1007,65 +1160,66 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: [ - { - consumer_id: 'test_consumer_id', - application_id: '1111', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - aggregated_request_count: 101, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 - }, - created: '2021-05-07T12:55:42.242Z', - modified: '2021-05-07T12:55:42.242Z', - request_count_updated: '2021-05-07T12:55:42.242Z', - services: ['salesforce', 'stripe'] - } - ], - meta: { - items_on_page: 50, - cursors: { - previous: 'em9oby1jcm06OnBhZ2U6OjE=', - current: 'em9oby1jcm06OnBhZ2U6OjI=', - next: 'em9oby1jcm06OnBhZ2U6OjM=' - } - }, - links: { - previous: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D', - current: 'https://unify.apideck.com/crm/companies', - next: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM' - } - } as any + status_code: 200, + status: 'OK', + data: [ + { + consumer_id: 'test_consumer_id', + application_id: '1111', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + }, + aggregated_request_count: 101, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + }, + created: '2021-05-07T12:55:42.242Z', + modified: '2021-05-07T12:55:42.242Z', + request_count_updated: '2021-05-07T12:55:42.242Z', + services: [ + 'salesforce', + 'stripe' + ] + } + ], + meta: { + items_on_page: 50, + cursors: { + previous: 'em9oby1jcm06OnBhZ2U6OjE=', + current: 'em9oby1jcm06OnBhZ2U6OjI=', + next: 'em9oby1jcm06OnBhZ2U6OjM=' + } + }, + links: { + previous: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D', + current: 'https://unify.apideck.com/crm/companies', + next: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM' + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = {} as any const current = await vault.consumersAll(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#consumersDelete', () => { const endpoint = '/vault/consumers/{consumer_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -1073,35 +1227,33 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - consumer_id: 'test_consumer_id' - } - } as any + status_code: 200, + status: 'OK', + data: { + consumer_id: 'test_consumer_id' + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - consumerId: 'test_user_id' - } as any + consumerId: 'test_user_id' +} as any const current = await vault.consumersDelete(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#consumersOne', () => { const endpoint = '/vault/consumers/{consumer_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -1109,81 +1261,81 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - consumer_id: 'test_consumer_id', - application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - connections: [ - { - id: '1111+test_user_id', - name: 'Salesforce', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - website: 'https://www.salesforce.com', - tag_line: - 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - service_id: 'teamleader', - unified_api: 'crm', - consumer_id: 'test_user_id', - auth_type: 'oauth2', - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - created_at: '2020-09-19T12:18:37.071Z', - updated_at: '2020-09-19T12:18:37.071Z', - state: 'authorized' - } - ], - services: ['salesforce', 'stripe'], - aggregated_request_count: 101, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 + status_code: 200, + status: 'OK', + data: { + consumer_id: 'test_consumer_id', + application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + }, + connections: [ + { + id: '1111+test_user_id', + name: 'Salesforce', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + website: 'https://www.salesforce.com', + tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + service_id: 'teamleader', + unified_api: 'crm', + consumer_id: 'test_user_id', + auth_type: 'oauth2', + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' }, - created: '2021-05-07T12:55:42.242Z', - modified: '2021-05-07T12:55:42.242Z', - request_count_updated: '2021-05-07T12:55:42.242Z' - } - } as any + plan: 'enterprise' + }, + created_at: '2020-09-19T12:18:37.071Z', + updated_at: '2020-09-19T12:18:37.071Z', + state: 'authorized' + } + ], + services: [ + 'salesforce', + 'stripe' + ], + aggregated_request_count: 101, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + }, + created: '2021-05-07T12:55:42.242Z', + modified: '2021-05-07T12:55:42.242Z', + request_count_updated: '2021-05-07T12:55:42.242Z' + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - consumerId: 'test_user_id' - } as any + consumerId: 'test_user_id' +} as any const current = await vault.consumersOne(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#consumersUpdate', () => { const endpoint = '/vault/consumers/{consumer_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -1191,90 +1343,133 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - consumer_id: 'test_consumer_id', - application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - connections: [ - { - id: '1111+test_user_id', - name: 'Salesforce', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - website: 'https://www.salesforce.com', - tag_line: - 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - service_id: 'teamleader', - unified_api: 'crm', - consumer_id: 'test_user_id', - auth_type: 'oauth2', - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - created_at: '2020-09-19T12:18:37.071Z', - updated_at: '2020-09-19T12:18:37.071Z', - state: 'authorized' - } - ], - services: ['salesforce', 'stripe'], - aggregated_request_count: 101, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 + status_code: 200, + status: 'OK', + data: { + consumer_id: 'test_consumer_id', + application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + }, + connections: [ + { + id: '1111+test_user_id', + name: 'Salesforce', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + website: 'https://www.salesforce.com', + tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + service_id: 'teamleader', + unified_api: 'crm', + consumer_id: 'test_user_id', + auth_type: 'oauth2', + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' }, - created: '2021-05-07T12:55:42.242Z', - modified: '2021-05-07T12:55:42.242Z', - request_count_updated: '2021-05-07T12:55:42.242Z' - } - } as any + plan: 'enterprise' + }, + created_at: '2020-09-19T12:18:37.071Z', + updated_at: '2020-09-19T12:18:37.071Z', + state: 'authorized' + } + ], + services: [ + 'salesforce', + 'stripe' + ], + aggregated_request_count: 101, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + }, + created: '2021-05-07T12:55:42.242Z', + modified: '2021-05-07T12:55:42.242Z', + request_count_updated: '2021-05-07T12:55:42.242Z' + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - consumerId: 'test_user_id', - consumer: { - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - } - } - } as any + consumerId: 'test_user_id', + consumer: { + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + } + } +} as any const current = await vault.consumersUpdate(params) - expect(fetch).toHaveBeenCalledTimes(1) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); + + describe('#customFieldsAll', () => { + const endpoint = '/vault/connections/{unified_api}/{service_id}/{resource}/custom-fields' + + const config = { + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) + + afterEach(() => { + jest.clearAllMocks() }) - }) + + it('should call Apideck with expected params', async () => { + const mockedResponse: Record = { + status_code: 200, + status: 'OK', + data: [ + { + id: '123456', + name: 'SSN', + description: 'Employee Level', + value: '495172776', + finder: "$['data']['custom_fields'][?(@['custom_field_id']===123456)]" + } + ] +} as any + + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + + const { vault } = apideck; + const params = { + unifiedApi: 'crm', + serviceId: 'pipedrive', + resource: 'leads' +} as any + const current = await vault.customFieldsAll(params) + + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#logsAll', () => { const endpoint = '/vault/logs' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -1282,75 +1477,73 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: [ - { - api_style: 'REST', - base_url: 'unify.apideck.com', - child_request: false, - consumer_id: 'test-consumer', - duration: 2220.379304, - error_message: 'Refresh token is invalid', - execution: 2248, - has_children: false, - http_method: 'GET', - id: '0b5f7480-5550-4f5c-a5fc-3c01ac43dd0f', - latency: '27.620695999999953===', - operation: { - id: 'connectionsAll', - name: 'Get All Connections' - }, - parent_id: '0b5f7480-5550-4f5c-a5fc-3c01ac43dd0f', - path: '/vault/connections', - sandbox: false, - service: { - id: 'apideck-vault', - name: 'Apideck Vault' - }, - source_ip: '94.227.131.238', - status_code: 200, - success: true, - timestamp: '2021-07-12T14:26:17.420Z', - unified_api: 'vault' - } - ], - meta: { - items_on_page: 50, - cursors: { - previous: 'em9oby1jcm06OnBhZ2U6OjE=', - current: 'em9oby1jcm06OnBhZ2U6OjI=', - next: 'em9oby1jcm06OnBhZ2U6OjM=' - } - }, - links: { - previous: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D', - current: 'https://unify.apideck.com/crm/companies', - next: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM' - } - } as any + status_code: 200, + status: 'OK', + data: [ + { + api_style: 'REST', + base_url: 'unify.apideck.com', + child_request: false, + consumer_id: 'test-consumer', + duration: 2220.379304, + error_message: 'Refresh token is invalid', + execution: 2248, + has_children: false, + http_method: 'GET', + id: '0b5f7480-5550-4f5c-a5fc-3c01ac43dd0f', + latency: '27.620695999999953===', + operation: { + id: 'connectionsAll', + name: 'Get All Connections' + }, + parent_id: '0b5f7480-5550-4f5c-a5fc-3c01ac43dd0f', + path: '/vault/connections', + sandbox: false, + service: { + id: 'apideck-vault', + name: 'Apideck Vault' + }, + source_ip: '94.227.131.238', + status_code: 200, + success: true, + timestamp: '2021-07-12T14:26:17.420Z', + unified_api: 'vault' + } + ], + meta: { + items_on_page: 50, + cursors: { + previous: 'em9oby1jcm06OnBhZ2U6OjE=', + current: 'em9oby1jcm06OnBhZ2U6OjI=', + next: 'em9oby1jcm06OnBhZ2U6OjM=' + } + }, + links: { + previous: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D', + current: 'https://unify.apideck.com/crm/companies', + next: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM' + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = {} as any const current = await vault.logsAll(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); describe('#sessionsCreate', () => { const endpoint = '/vault/sessions' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' - } - const apideck = new Apideck({ ...config, basePath: basePath }) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' +} + const apideck = new Apideck({...config, basePath: basePath}) afterEach(() => { jest.clearAllMocks() @@ -1358,71 +1551,71 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - session_uri: - 'http://vault.apideck.com/session/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdW1lcl9pZCI6InRlc3RfdXNlcl9pZCIsImFwcGxpY2F0aW9uX2lkIj', - session_token: - 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdW1lcl9pZCI6InRlc3RfdXNlcl9pZCIsImFwcGxpY2F0aW9uX2lkIj' - } - } as any + status_code: 200, + status: 'OK', + data: { + session_uri: 'http://vault.apideck.com/session/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdW1lcl9pZCI6InRlc3RfdXNlcl9pZCIsImFwcGxpY2F0aW9uX2lkIj', + session_token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdW1lcl9pZCI6InRlc3RfdXNlcl9pZCIsImFwcGxpY2F0aW9uX2lkIj' + } +} as any - ;(fetch as jest.MockedFunction).mockResolvedValueOnce( - Promise.resolve(new Response(JSON.stringify(mockedResponse))) - ) + (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); - const { vault } = apideck + const { vault } = apideck; const params = { - session: { - consumer_metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - redirect_uri: 'https://mysaas.com/dashboard', - settings: { - unified_apis: ['crm'], - hide_resource_settings: false, - sandbox_mode: false, - isolation_mode: false, - session_length: '30m', - show_logs: true, - show_suggestions: false, - show_sidebar: true, - auto_redirect: false, - hide_guides: false, - allow_actions: ['delete'] - }, - theme: { - favicon: 'https://res.cloudinary.com/apideck/icons/intercom', - logo: 'https://res.cloudinary.com/apideck/icons/intercom', - primary_color: '#286efa', - sidepanel_background_color: '#286efa', - sidepanel_text_color: '#FFFFFF', - vault_name: 'Intercom', - privacy_url: 'https://compliance.apideck.com/privacy-policy', - terms_url: 'https://www.termsfeed.com/terms-conditions/957c85c1b089ae9e3219c83eff65377e' - }, - custom_consumer_settings: { - feature_flag_1: true, - tax_rates: [ - { - id: '6', - label: '6%' - }, - { - id: '21', - label: '21%' - } - ] - } + session: { + consumer_metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + }, + redirect_uri: 'https://mysaas.com/dashboard', + settings: { + unified_apis: [ + 'crm' + ], + hide_resource_settings: false, + sandbox_mode: false, + isolation_mode: false, + session_length: '30m', + show_logs: true, + show_suggestions: false, + show_sidebar: true, + auto_redirect: false, + hide_guides: false, + allow_actions: [ + 'delete' + ] + }, + theme: { + favicon: 'https://res.cloudinary.com/apideck/icons/intercom', + logo: 'https://res.cloudinary.com/apideck/icons/intercom', + primary_color: '#286efa', + sidepanel_background_color: '#286efa', + sidepanel_text_color: '#FFFFFF', + vault_name: 'Intercom', + privacy_url: 'https://compliance.apideck.com/privacy-policy', + terms_url: 'https://www.termsfeed.com/terms-conditions/957c85c1b089ae9e3219c83eff65377e' + }, + custom_consumer_settings: { + feature_flag_1: true, + tax_rates: [ + { + id: '6', + label: '6%' + }, + { + id: '21', + label: '21%' } - } as any + ] + } + } +} as any const current = await vault.sessionsCreate(params) - expect(fetch).toHaveBeenCalledTimes(1) - }) - }) -}) + expect(fetch).toHaveBeenCalledTimes(1); + }); + }); +}); From ce95c7e11ac197c9e9d4e84e0ddf3e8af5fb2b59 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 18:30:36 +0000 Subject: [PATCH 4/9] Automated update by SDK Generator version:3.0.0 commit:f553e4a --- package.json | 2 +- src/gen/apis/AccountingApi.ts | 2 +- src/gen/apis/AtsApi.ts | 2 +- src/gen/apis/ConnectorApi.ts | 2 +- src/gen/apis/CrmApi.ts | 2 +- src/gen/apis/EcommerceApi.ts | 2 +- src/gen/apis/FileStorageApi.ts | 2 +- src/gen/apis/HrisApi.ts | 2 +- src/gen/apis/IssueTrackingApi.ts | 2 +- src/gen/apis/LeadApi.ts | 2 +- src/gen/apis/PosApi.ts | 2 +- src/gen/apis/SmsApi.ts | 2 +- src/gen/apis/VaultApi.ts | 2 +- src/gen/apis/WebhookApi.ts | 2 +- src/gen/models/AccountingEventType.ts | 2 +- src/gen/models/ActivitiesFilter.ts | 2 +- src/gen/models/Activity.ts | 2 +- src/gen/models/ActivityAttendee.ts | 2 +- src/gen/models/Address.ts | 2 +- src/gen/models/Api.ts | 2 +- src/gen/models/ApiResource.ts | 2 +- src/gen/models/ApiResourceCoverage.ts | 2 +- src/gen/models/ApiResourceCoverageCoverage.ts | 2 +- src/gen/models/ApiResourceLinkedResources.ts | 2 +- src/gen/models/ApiResources.ts | 2 +- src/gen/models/ApiStatus.ts | 2 +- src/gen/models/ApisFilter.ts | 2 +- src/gen/models/Applicant.ts | 2 +- src/gen/models/ApplicantSocialLinks.ts | 2 +- src/gen/models/ApplicantWebsites.ts | 2 +- src/gen/models/ApplicantsFilter.ts | 2 +- src/gen/models/Application.ts | 2 +- src/gen/models/ApplicationStage.ts | 2 +- src/gen/models/Assignee.ts | 2 +- src/gen/models/AtsActivity.ts | 2 +- src/gen/models/AtsEventType.ts | 2 +- src/gen/models/AuthType.ts | 2 +- src/gen/models/BadRequestResponse.ts | 2 +- src/gen/models/BalanceSheet.ts | 2 +- src/gen/models/BalanceSheetAssets.ts | 2 +- src/gen/models/BalanceSheetAssetsCurrentAssets.ts | 2 +- src/gen/models/BalanceSheetAssetsCurrentAssetsAccounts.ts | 2 +- src/gen/models/BalanceSheetAssetsFixedAssets.ts | 2 +- src/gen/models/BalanceSheetAssetsFixedAssetsAccounts.ts | 2 +- src/gen/models/BalanceSheetEquity.ts | 2 +- src/gen/models/BalanceSheetEquityItems.ts | 2 +- src/gen/models/BalanceSheetFilter.ts | 2 +- src/gen/models/BalanceSheetLiabilities.ts | 2 +- src/gen/models/BalanceSheetLiabilitiesAccounts.ts | 2 +- src/gen/models/BankAccount.ts | 2 +- src/gen/models/Benefit.ts | 2 +- src/gen/models/Bill.ts | 2 +- src/gen/models/BillLineItem.ts | 2 +- src/gen/models/BillsSort.ts | 2 +- src/gen/models/Branch.ts | 2 +- src/gen/models/CashDetails.ts | 2 +- src/gen/models/Collection.ts | 2 +- src/gen/models/CollectionTag.ts | 2 +- src/gen/models/CollectionTicketComment.ts | 2 +- src/gen/models/CollectionUser.ts | 2 +- src/gen/models/CollectionsSort.ts | 2 +- src/gen/models/CommentsSort.ts | 2 +- src/gen/models/CompaniesFilter.ts | 2 +- src/gen/models/CompaniesSort.ts | 2 +- src/gen/models/Company.ts | 2 +- src/gen/models/CompanyInfo.ts | 2 +- src/gen/models/CompanyRowType.ts | 2 +- src/gen/models/Compensation.ts | 2 +- src/gen/models/Connection.ts | 2 +- src/gen/models/ConnectionConfiguration.ts | 2 +- src/gen/models/ConnectionDefaults.ts | 2 +- src/gen/models/ConnectionImportData.ts | 2 +- src/gen/models/ConnectionImportDataCredentials.ts | 2 +- src/gen/models/ConnectionMetadata.ts | 2 +- src/gen/models/ConnectionState.ts | 2 +- src/gen/models/ConnectionWebhook.ts | 2 +- src/gen/models/Connector.ts | 2 +- src/gen/models/ConnectorDoc.ts | 2 +- src/gen/models/ConnectorEvent.ts | 2 +- src/gen/models/ConnectorOauthScopes.ts | 2 +- src/gen/models/ConnectorOauthScopes1.ts | 2 +- src/gen/models/ConnectorResource.ts | 2 +- src/gen/models/ConnectorSetting.ts | 2 +- src/gen/models/ConnectorStatus.ts | 2 +- src/gen/models/ConnectorTlsSupport.ts | 2 +- src/gen/models/ConnectorUnifiedApis.ts | 2 +- src/gen/models/ConnectorsFilter.ts | 2 +- src/gen/models/Consumer.ts | 2 +- src/gen/models/ConsumerConnection.ts | 2 +- src/gen/models/ConsumerMetadata.ts | 2 +- src/gen/models/ConsumerRequestCountsInDateRangeResponse.ts | 2 +- .../models/ConsumerRequestCountsInDateRangeResponseData.ts | 2 +- src/gen/models/Contact.ts | 2 +- src/gen/models/ContactsFilter.ts | 2 +- src/gen/models/ContactsSort.ts | 2 +- src/gen/models/CopyFolderRequest.ts | 2 +- src/gen/models/CreateActivityResponse.ts | 2 +- src/gen/models/CreateApplicantResponse.ts | 2 +- src/gen/models/CreateApplicationResponse.ts | 2 +- src/gen/models/CreateBillResponse.ts | 2 +- src/gen/models/CreateCommentResponse.ts | 2 +- src/gen/models/CreateCompanyResponse.ts | 2 +- src/gen/models/CreateConnectionResponse.ts | 2 +- src/gen/models/CreateConsumerResponse.ts | 2 +- src/gen/models/CreateContactResponse.ts | 2 +- src/gen/models/CreateCreditNoteResponse.ts | 2 +- src/gen/models/CreateCustomMappingResponse.ts | 2 +- src/gen/models/CreateCustomerResponse.ts | 2 +- src/gen/models/CreateDepartmentResponse.ts | 2 +- src/gen/models/CreateDriveGroupResponse.ts | 2 +- src/gen/models/CreateDriveResponse.ts | 2 +- src/gen/models/CreateEcommerceCustomerResponse.ts | 2 +- src/gen/models/CreateEcommerceOrderResponse.ts | 2 +- src/gen/models/CreateEmployeeResponse.ts | 2 +- src/gen/models/CreateFileRequest.ts | 2 +- src/gen/models/CreateFileResponse.ts | 2 +- src/gen/models/CreateFolderRequest.ts | 2 +- src/gen/models/CreateFolderResponse.ts | 2 +- src/gen/models/CreateHrisCompanyResponse.ts | 2 +- src/gen/models/CreateInvoiceItemResponse.ts | 2 +- src/gen/models/CreateInvoiceResponse.ts | 2 +- src/gen/models/CreateItemResponse.ts | 2 +- src/gen/models/CreateJobResponse.ts | 2 +- src/gen/models/CreateJournalEntryResponse.ts | 2 +- src/gen/models/CreateLeadResponse.ts | 2 +- src/gen/models/CreateLedgerAccountResponse.ts | 2 +- src/gen/models/CreateLocationResponse.ts | 2 +- src/gen/models/CreateMerchantResponse.ts | 2 +- src/gen/models/CreateMessageResponse.ts | 2 +- src/gen/models/CreateModifierGroupResponse.ts | 2 +- src/gen/models/CreateModifierResponse.ts | 2 +- src/gen/models/CreateNoteResponse.ts | 2 +- src/gen/models/CreateOpportunityResponse.ts | 2 +- src/gen/models/CreateOrderResponse.ts | 2 +- src/gen/models/CreateOrderTypeResponse.ts | 2 +- src/gen/models/CreatePaymentResponse.ts | 2 +- src/gen/models/CreatePipelineResponse.ts | 2 +- src/gen/models/CreatePosPaymentResponse.ts | 2 +- src/gen/models/CreateProductResponse.ts | 2 +- src/gen/models/CreatePurchaseOrderResponse.ts | 2 +- src/gen/models/CreateSessionResponse.ts | 2 +- src/gen/models/CreateSharedLinkResponse.ts | 2 +- src/gen/models/CreateSupplierResponse.ts | 2 +- src/gen/models/CreateTaxRateResponse.ts | 2 +- src/gen/models/CreateTenderResponse.ts | 2 +- src/gen/models/CreateTicketResponse.ts | 2 +- src/gen/models/CreateTimeOffRequestResponse.ts | 2 +- src/gen/models/CreateUploadSessionRequest.ts | 2 +- src/gen/models/CreateUploadSessionResponse.ts | 2 +- src/gen/models/CreateUserResponse.ts | 2 +- src/gen/models/CreateWebhookRequest.ts | 2 +- src/gen/models/CreateWebhookResponse.ts | 2 +- src/gen/models/CreditNote.ts | 2 +- src/gen/models/CrmEventType.ts | 2 +- src/gen/models/Currency.ts | 2 +- src/gen/models/CustomField.ts | 2 +- src/gen/models/CustomFieldFinder.ts | 2 +- src/gen/models/CustomMapping.ts | 2 +- src/gen/models/Customer.ts | 2 +- src/gen/models/CustomersFilter.ts | 2 +- src/gen/models/Deduction.ts | 2 +- src/gen/models/DeleteActivityResponse.ts | 2 +- src/gen/models/DeleteApplicantResponse.ts | 2 +- src/gen/models/DeleteApplicationResponse.ts | 2 +- src/gen/models/DeleteBillResponse.ts | 2 +- src/gen/models/DeleteCommentResponse.ts | 2 +- src/gen/models/DeleteCompanyResponse.ts | 2 +- src/gen/models/DeleteContactResponse.ts | 2 +- src/gen/models/DeleteCreditNoteResponse.ts | 2 +- src/gen/models/DeleteCustomerResponse.ts | 2 +- src/gen/models/DeleteDepartmentResponse.ts | 2 +- src/gen/models/DeleteDriveGroupResponse.ts | 2 +- src/gen/models/DeleteDriveResponse.ts | 2 +- src/gen/models/DeleteEcommerceCustomerResponse.ts | 2 +- src/gen/models/DeleteEcommerceOrderResponse.ts | 2 +- src/gen/models/DeleteEmployeeResponse.ts | 2 +- src/gen/models/DeleteFileResponse.ts | 2 +- src/gen/models/DeleteFolderResponse.ts | 2 +- src/gen/models/DeleteHrisCompanyResponse.ts | 2 +- src/gen/models/DeleteInvoiceResponse.ts | 2 +- src/gen/models/DeleteItemResponse.ts | 2 +- src/gen/models/DeleteJobResponse.ts | 2 +- src/gen/models/DeleteJournalEntryResponse.ts | 2 +- src/gen/models/DeleteLeadResponse.ts | 2 +- src/gen/models/DeleteLedgerAccountResponse.ts | 2 +- src/gen/models/DeleteLocationResponse.ts | 2 +- src/gen/models/DeleteMerchantResponse.ts | 2 +- src/gen/models/DeleteMessageResponse.ts | 2 +- src/gen/models/DeleteModifierGroupResponse.ts | 2 +- src/gen/models/DeleteModifierResponse.ts | 2 +- src/gen/models/DeleteNoteResponse.ts | 2 +- src/gen/models/DeleteOpportunityResponse.ts | 2 +- src/gen/models/DeleteOrderResponse.ts | 2 +- src/gen/models/DeleteOrderTypeResponse.ts | 2 +- src/gen/models/DeletePaymentResponse.ts | 2 +- src/gen/models/DeletePipelineResponse.ts | 2 +- src/gen/models/DeletePosPaymentResponse.ts | 2 +- src/gen/models/DeleteProductResponse.ts | 2 +- src/gen/models/DeletePurchaseOrderResponse.ts | 2 +- src/gen/models/DeleteSharedLinkResponse.ts | 2 +- src/gen/models/DeleteSupplierResponse.ts | 2 +- src/gen/models/DeleteTaxRateResponse.ts | 2 +- src/gen/models/DeleteTenderResponse.ts | 2 +- src/gen/models/DeleteTicketResponse.ts | 2 +- src/gen/models/DeleteTimeOffRequestResponse.ts | 2 +- src/gen/models/DeleteUploadSessionResponse.ts | 2 +- src/gen/models/DeleteUserResponse.ts | 2 +- src/gen/models/DeleteWebhookResponse.ts | 2 +- src/gen/models/Department.ts | 2 +- src/gen/models/Drive.ts | 2 +- src/gen/models/DriveGroup.ts | 2 +- src/gen/models/DriveGroupsFilter.ts | 2 +- src/gen/models/DrivesFilter.ts | 2 +- src/gen/models/EcommerceAddress.ts | 2 +- src/gen/models/EcommerceCustomer.ts | 2 +- src/gen/models/EcommerceCustomerAddresses.ts | 2 +- src/gen/models/EcommerceCustomersFilter.ts | 2 +- src/gen/models/EcommerceDiscount.ts | 2 +- src/gen/models/EcommerceOrder.ts | 2 +- src/gen/models/EcommerceOrderLineItem.ts | 2 +- src/gen/models/EcommerceOrderStatus.ts | 2 +- src/gen/models/EcommerceOrdersFilter.ts | 2 +- src/gen/models/EcommerceProduct.ts | 2 +- src/gen/models/EcommerceProductCategories.ts | 2 +- src/gen/models/EcommerceProductImages.ts | 2 +- src/gen/models/EcommerceProductImages1.ts | 2 +- src/gen/models/EcommerceProductOptions.ts | 2 +- src/gen/models/EcommerceProductOptions1.ts | 2 +- src/gen/models/EcommerceProductVariants.ts | 2 +- src/gen/models/EcommerceStore.ts | 2 +- src/gen/models/Email.ts | 2 +- src/gen/models/Employee.ts | 2 +- src/gen/models/EmployeeCompensation.ts | 2 +- src/gen/models/EmployeeEmploymentRole.ts | 2 +- src/gen/models/EmployeeJob.ts | 2 +- src/gen/models/EmployeeList.ts | 2 +- src/gen/models/EmployeeManager.ts | 2 +- src/gen/models/EmployeePayroll.ts | 2 +- src/gen/models/EmployeeSchedules.ts | 2 +- src/gen/models/EmployeesFilter.ts | 2 +- src/gen/models/EmployeesSort.ts | 2 +- src/gen/models/EmploymentStatus.ts | 2 +- src/gen/models/ExecuteWebhookResponse.ts | 2 +- src/gen/models/FileStorageEventType.ts | 2 +- src/gen/models/FileType.ts | 2 +- src/gen/models/FilesFilter.ts | 2 +- src/gen/models/FilesSearch.ts | 2 +- src/gen/models/FilesSort.ts | 2 +- src/gen/models/Folder.ts | 2 +- src/gen/models/FormField.ts | 2 +- src/gen/models/FormFieldOption.ts | 2 +- src/gen/models/FormFieldOptionGroup.ts | 2 +- src/gen/models/Gender.ts | 2 +- src/gen/models/GetActivitiesResponse.ts | 2 +- src/gen/models/GetActivityResponse.ts | 2 +- src/gen/models/GetApiResourceCoverageResponse.ts | 2 +- src/gen/models/GetApiResourceResponse.ts | 2 +- src/gen/models/GetApiResponse.ts | 2 +- src/gen/models/GetApisResponse.ts | 2 +- src/gen/models/GetApplicantResponse.ts | 2 +- src/gen/models/GetApplicantsResponse.ts | 2 +- src/gen/models/GetApplicationResponse.ts | 2 +- src/gen/models/GetApplicationsResponse.ts | 2 +- src/gen/models/GetBalanceSheetResponse.ts | 2 +- src/gen/models/GetBillResponse.ts | 2 +- src/gen/models/GetBillsResponse.ts | 2 +- src/gen/models/GetCollectionResponse.ts | 2 +- src/gen/models/GetCollectionTagsResponse.ts | 2 +- src/gen/models/GetCollectionUserResponse.ts | 2 +- src/gen/models/GetCollectionUsersResponse.ts | 2 +- src/gen/models/GetCollectionsResponse.ts | 2 +- src/gen/models/GetCommentResponse.ts | 2 +- src/gen/models/GetCommentsResponse.ts | 2 +- src/gen/models/GetCompaniesResponse.ts | 2 +- src/gen/models/GetCompanyInfoResponse.ts | 2 +- src/gen/models/GetCompanyResponse.ts | 2 +- src/gen/models/GetConnectionResponse.ts | 2 +- src/gen/models/GetConnectionsResponse.ts | 2 +- src/gen/models/GetConnectorResourceExampleResponse.ts | 2 +- src/gen/models/GetConnectorResourceExampleResponseData.ts | 2 +- src/gen/models/GetConnectorResourceResponse.ts | 2 +- src/gen/models/GetConnectorResponse.ts | 2 +- src/gen/models/GetConnectorsResponse.ts | 2 +- src/gen/models/GetConsumerResponse.ts | 2 +- src/gen/models/GetConsumersResponse.ts | 2 +- src/gen/models/GetConsumersResponseData.ts | 2 +- src/gen/models/GetContactResponse.ts | 2 +- src/gen/models/GetContactsResponse.ts | 2 +- src/gen/models/GetCreditNoteResponse.ts | 2 +- src/gen/models/GetCreditNotesResponse.ts | 2 +- src/gen/models/GetCustomFieldsResponse.ts | 2 +- src/gen/models/GetCustomMappingResponse.ts | 2 +- src/gen/models/GetCustomerResponse.ts | 2 +- src/gen/models/GetCustomersResponse.ts | 2 +- src/gen/models/GetDepartmentResponse.ts | 2 +- src/gen/models/GetDepartmentsResponse.ts | 2 +- src/gen/models/GetDriveGroupResponse.ts | 2 +- src/gen/models/GetDriveGroupsResponse.ts | 2 +- src/gen/models/GetDriveResponse.ts | 2 +- src/gen/models/GetDrivesResponse.ts | 2 +- src/gen/models/GetEcommerceCustomerResponse.ts | 2 +- src/gen/models/GetEcommerceCustomersResponse.ts | 2 +- src/gen/models/GetEcommerceOrderResponse.ts | 2 +- src/gen/models/GetEcommerceOrdersResponse.ts | 2 +- src/gen/models/GetEmployeePayrollResponse.ts | 2 +- src/gen/models/GetEmployeePayrollsResponse.ts | 2 +- src/gen/models/GetEmployeeResponse.ts | 2 +- src/gen/models/GetEmployeeSchedulesResponse.ts | 2 +- src/gen/models/GetEmployeesResponse.ts | 2 +- src/gen/models/GetFileResponse.ts | 2 +- src/gen/models/GetFilesResponse.ts | 2 +- src/gen/models/GetFolderResponse.ts | 2 +- src/gen/models/GetFoldersResponse.ts | 2 +- src/gen/models/GetHrisCompaniesResponse.ts | 2 +- src/gen/models/GetHrisCompanyResponse.ts | 2 +- src/gen/models/GetHrisJobResponse.ts | 2 +- src/gen/models/GetHrisJobsResponse.ts | 2 +- src/gen/models/GetInvoiceItemResponse.ts | 2 +- src/gen/models/GetInvoiceItemsResponse.ts | 2 +- src/gen/models/GetInvoiceResponse.ts | 2 +- src/gen/models/GetInvoicesResponse.ts | 2 +- src/gen/models/GetItemResponse.ts | 2 +- src/gen/models/GetItemsResponse.ts | 2 +- src/gen/models/GetJobResponse.ts | 2 +- src/gen/models/GetJobsResponse.ts | 2 +- src/gen/models/GetJournalEntriesResponse.ts | 2 +- src/gen/models/GetJournalEntryResponse.ts | 2 +- src/gen/models/GetLeadResponse.ts | 2 +- src/gen/models/GetLeadsResponse.ts | 2 +- src/gen/models/GetLedgerAccountResponse.ts | 2 +- src/gen/models/GetLedgerAccountsResponse.ts | 2 +- src/gen/models/GetLocationResponse.ts | 2 +- src/gen/models/GetLocationsResponse.ts | 2 +- src/gen/models/GetLogsResponse.ts | 2 +- src/gen/models/GetMerchantResponse.ts | 2 +- src/gen/models/GetMerchantsResponse.ts | 2 +- src/gen/models/GetMessageResponse.ts | 2 +- src/gen/models/GetMessagesResponse.ts | 2 +- src/gen/models/GetModifierGroupResponse.ts | 2 +- src/gen/models/GetModifierGroupsResponse.ts | 2 +- src/gen/models/GetModifierResponse.ts | 2 +- src/gen/models/GetModifiersResponse.ts | 2 +- src/gen/models/GetNoteResponse.ts | 2 +- src/gen/models/GetNotesResponse.ts | 2 +- src/gen/models/GetOpportunitiesResponse.ts | 2 +- src/gen/models/GetOpportunityResponse.ts | 2 +- src/gen/models/GetOrderResponse.ts | 2 +- src/gen/models/GetOrderTypeResponse.ts | 2 +- src/gen/models/GetOrderTypesResponse.ts | 2 +- src/gen/models/GetOrdersResponse.ts | 2 +- src/gen/models/GetPaymentResponse.ts | 2 +- src/gen/models/GetPaymentsResponse.ts | 2 +- src/gen/models/GetPayrollResponse.ts | 2 +- src/gen/models/GetPayrollsResponse.ts | 2 +- src/gen/models/GetPipelineResponse.ts | 2 +- src/gen/models/GetPipelinesResponse.ts | 2 +- src/gen/models/GetPosPaymentResponse.ts | 2 +- src/gen/models/GetPosPaymentsResponse.ts | 2 +- src/gen/models/GetProductResponse.ts | 2 +- src/gen/models/GetProductsResponse.ts | 2 +- src/gen/models/GetProfitAndLossResponse.ts | 2 +- src/gen/models/GetPurchaseOrderResponse.ts | 2 +- src/gen/models/GetPurchaseOrdersResponse.ts | 2 +- src/gen/models/GetResourceExampleResponse.ts | 2 +- src/gen/models/GetSharedLinkResponse.ts | 2 +- src/gen/models/GetSharedLinksResponse.ts | 2 +- src/gen/models/GetStoreResponse.ts | 2 +- src/gen/models/GetStoresResponse.ts | 2 +- src/gen/models/GetSupplierResponse.ts | 2 +- src/gen/models/GetSuppliersResponse.ts | 2 +- src/gen/models/GetTaxRateResponse.ts | 2 +- src/gen/models/GetTaxRatesResponse.ts | 2 +- src/gen/models/GetTenderResponse.ts | 2 +- src/gen/models/GetTendersResponse.ts | 2 +- src/gen/models/GetTicketResponse.ts | 2 +- src/gen/models/GetTicketsResponse.ts | 2 +- src/gen/models/GetTimeOffRequestResponse.ts | 2 +- src/gen/models/GetTimeOffRequestsResponse.ts | 2 +- src/gen/models/GetUploadSessionResponse.ts | 2 +- src/gen/models/GetUserResponse.ts | 2 +- src/gen/models/GetUsersResponse.ts | 2 +- src/gen/models/GetWebhookEventLogsResponse.ts | 2 +- src/gen/models/GetWebhookResponse.ts | 2 +- src/gen/models/GetWebhooksResponse.ts | 2 +- src/gen/models/HrisCompany.ts | 2 +- src/gen/models/HrisEventType.ts | 2 +- src/gen/models/HrisJob.ts | 2 +- src/gen/models/HrisJobLocation.ts | 2 +- src/gen/models/HrisJobs.ts | 2 +- src/gen/models/IntegrationState.ts | 2 +- src/gen/models/Invoice.ts | 2 +- src/gen/models/InvoiceItem.ts | 2 +- src/gen/models/InvoiceItemSalesDetails.ts | 2 +- src/gen/models/InvoiceItemsFilter.ts | 2 +- src/gen/models/InvoiceLineItem.ts | 2 +- src/gen/models/InvoiceResponse.ts | 2 +- src/gen/models/InvoicesSort.ts | 2 +- src/gen/models/IssueTrackingEventType.ts | 2 +- src/gen/models/IssuesFilter.ts | 2 +- src/gen/models/Item.ts | 2 +- src/gen/models/Job.ts | 2 +- src/gen/models/JobLinks.ts | 2 +- src/gen/models/JobSalary.ts | 2 +- src/gen/models/JobStatus.ts | 2 +- src/gen/models/JournalEntry.ts | 2 +- src/gen/models/JournalEntryLineItem.ts | 2 +- src/gen/models/Lead.ts | 2 +- src/gen/models/LeadEventType.ts | 2 +- src/gen/models/LeadsFilter.ts | 2 +- src/gen/models/LeadsSort.ts | 2 +- src/gen/models/LedgerAccount.ts | 2 +- src/gen/models/LedgerAccountCategories.ts | 2 +- src/gen/models/LedgerAccountParentAccount.ts | 2 +- src/gen/models/LedgerAccounts.ts | 2 +- src/gen/models/LinkedConnectorResource.ts | 2 +- src/gen/models/LinkedCustomer.ts | 2 +- src/gen/models/LinkedEcommerceCustomer.ts | 2 +- src/gen/models/LinkedEcommerceOrder.ts | 2 +- src/gen/models/LinkedFolder.ts | 2 +- src/gen/models/LinkedInvoiceItem.ts | 2 +- src/gen/models/LinkedLedgerAccount.ts | 2 +- src/gen/models/LinkedParentCustomer.ts | 2 +- src/gen/models/LinkedSupplier.ts | 2 +- src/gen/models/LinkedTaxRate.ts | 2 +- src/gen/models/LinkedTrackingCategory.ts | 2 +- src/gen/models/Links.ts | 2 +- src/gen/models/Location.ts | 2 +- src/gen/models/Log.ts | 2 +- src/gen/models/LogsFilter.ts | 2 +- src/gen/models/Merchant.ts | 2 +- src/gen/models/Message.ts | 2 +- src/gen/models/Meta.ts | 2 +- src/gen/models/MetaCursors.ts | 2 +- src/gen/models/ModelError.ts | 2 +- src/gen/models/Modifier.ts | 2 +- src/gen/models/ModifierGroup.ts | 2 +- src/gen/models/ModifierGroupFilter.ts | 2 +- src/gen/models/NotFoundResponse.ts | 2 +- src/gen/models/NotImplementedResponse.ts | 2 +- src/gen/models/Note.ts | 2 +- src/gen/models/OAuthGrantType.ts | 2 +- src/gen/models/Offer.ts | 2 +- src/gen/models/OpportunitiesFilter.ts | 2 +- src/gen/models/OpportunitiesSort.ts | 2 +- src/gen/models/Opportunity.ts | 2 +- src/gen/models/Order.ts | 2 +- src/gen/models/OrderCustomers.ts | 2 +- src/gen/models/OrderDiscounts.ts | 2 +- src/gen/models/OrderFulfillments.ts | 2 +- src/gen/models/OrderLineItems.ts | 2 +- src/gen/models/OrderPayments.ts | 2 +- src/gen/models/OrderPickupDetails.ts | 2 +- src/gen/models/OrderPickupDetailsCurbsidePickupDetails.ts | 2 +- src/gen/models/OrderPickupDetailsRecipient.ts | 2 +- src/gen/models/OrderRefunds.ts | 2 +- src/gen/models/OrderTenders.ts | 2 +- src/gen/models/OrderType.ts | 2 +- src/gen/models/Owner.ts | 2 +- src/gen/models/PaginationCoverage.ts | 2 +- src/gen/models/PassThroughQuery.ts | 2 +- src/gen/models/Payment.ts | 2 +- src/gen/models/PaymentAllocations.ts | 2 +- src/gen/models/PaymentCard.ts | 2 +- src/gen/models/PaymentFrequency.ts | 2 +- src/gen/models/PaymentRequiredResponse.ts | 2 +- src/gen/models/PaymentUnit.ts | 2 +- src/gen/models/PaymentsFilter.ts | 2 +- src/gen/models/Payroll.ts | 2 +- src/gen/models/PayrollTotals.ts | 2 +- src/gen/models/PayrollsFilter.ts | 2 +- src/gen/models/Person.ts | 2 +- src/gen/models/PhoneNumber.ts | 2 +- src/gen/models/Pipeline.ts | 2 +- src/gen/models/PipelineStages.ts | 2 +- src/gen/models/PosBankAccount.ts | 2 +- src/gen/models/PosBankAccountAchDetails.ts | 2 +- src/gen/models/PosPayment.ts | 2 +- src/gen/models/PosPaymentCardDetails.ts | 2 +- src/gen/models/PosPaymentExternalDetails.ts | 2 +- src/gen/models/Price.ts | 2 +- src/gen/models/ProbationPeriod.ts | 2 +- src/gen/models/ProfitAndLoss.ts | 2 +- src/gen/models/ProfitAndLossExpenses.ts | 2 +- src/gen/models/ProfitAndLossFilter.ts | 2 +- src/gen/models/ProfitAndLossGrossProfit.ts | 2 +- src/gen/models/ProfitAndLossIncome.ts | 2 +- src/gen/models/ProfitAndLossNetIncome.ts | 2 +- src/gen/models/ProfitAndLossNetOperatingIncome.ts | 2 +- src/gen/models/ProfitAndLossRecord.ts | 2 +- src/gen/models/ProfitAndLossRecords.ts | 2 +- src/gen/models/ProfitAndLossSection.ts | 2 +- src/gen/models/PurchaseOrder.ts | 2 +- src/gen/models/RequestCountAllocation.ts | 2 +- src/gen/models/ResolveWebhookResponse.ts | 2 +- src/gen/models/ResourceExample.ts | 2 +- src/gen/models/ResourceStatus.ts | 2 +- src/gen/models/Schedule.ts | 2 +- src/gen/models/ScheduleWorkPattern.ts | 2 +- src/gen/models/ScheduleWorkPatternOddWeeks.ts | 2 +- src/gen/models/SchemaSupport.ts | 2 +- src/gen/models/ServiceCharge.ts | 2 +- src/gen/models/ServiceCharges.ts | 2 +- src/gen/models/Session.ts | 2 +- src/gen/models/SessionSettings.ts | 2 +- src/gen/models/SessionTheme.ts | 2 +- src/gen/models/SharedLink.ts | 2 +- src/gen/models/SharedLinkTarget.ts | 2 +- src/gen/models/SimpleFormFieldOption.ts | 2 +- src/gen/models/SocialLink.ts | 2 +- src/gen/models/SortDirection.ts | 2 +- src/gen/models/Status.ts | 2 +- src/gen/models/Supplier.ts | 2 +- src/gen/models/SuppliersFilter.ts | 2 +- src/gen/models/SupportedProperty.ts | 2 +- src/gen/models/SupportedPropertyChildProperties.ts | 2 +- src/gen/models/Tax.ts | 2 +- src/gen/models/TaxRate.ts | 2 +- src/gen/models/TaxRatesFilter.ts | 2 +- src/gen/models/Team.ts | 2 +- src/gen/models/Tender.ts | 2 +- src/gen/models/Ticket.ts | 2 +- src/gen/models/TicketsSort.ts | 2 +- src/gen/models/TimeOffRequest.ts | 2 +- src/gen/models/TimeOffRequestNotes.ts | 2 +- src/gen/models/TimeOffRequestsFilter.ts | 2 +- src/gen/models/TooManyRequestsResponse.ts | 2 +- src/gen/models/TooManyRequestsResponseDetail.ts | 2 +- src/gen/models/TrackingItem.ts | 2 +- src/gen/models/UnauthorizedResponse.ts | 2 +- src/gen/models/UnexpectedErrorResponse.ts | 2 +- src/gen/models/UnifiedApiId.ts | 2 +- src/gen/models/UnifiedFile.ts | 2 +- src/gen/models/UnifiedFilePermissions.ts | 2 +- src/gen/models/UnprocessableResponse.ts | 2 +- src/gen/models/UpdateActivityResponse.ts | 2 +- src/gen/models/UpdateApplicantResponse.ts | 2 +- src/gen/models/UpdateApplicationResponse.ts | 2 +- src/gen/models/UpdateBillResponse.ts | 2 +- src/gen/models/UpdateCommentResponse.ts | 2 +- src/gen/models/UpdateCompanyResponse.ts | 2 +- src/gen/models/UpdateConnectionResponse.ts | 2 +- src/gen/models/UpdateConsumerRequest.ts | 2 +- src/gen/models/UpdateConsumerResponse.ts | 2 +- src/gen/models/UpdateContactResponse.ts | 2 +- src/gen/models/UpdateCreditNoteResponse.ts | 2 +- src/gen/models/UpdateCustomMappingResponse.ts | 2 +- src/gen/models/UpdateCustomerResponse.ts | 2 +- src/gen/models/UpdateDepartmentResponse.ts | 2 +- src/gen/models/UpdateDriveGroupResponse.ts | 2 +- src/gen/models/UpdateDriveResponse.ts | 2 +- src/gen/models/UpdateEcommerceCustomerResponse.ts | 2 +- src/gen/models/UpdateEcommerceOrderResponse.ts | 2 +- src/gen/models/UpdateEmployeeResponse.ts | 2 +- src/gen/models/UpdateFileRequest.ts | 2 +- src/gen/models/UpdateFileResponse.ts | 2 +- src/gen/models/UpdateFolderRequest.ts | 2 +- src/gen/models/UpdateFolderResponse.ts | 2 +- src/gen/models/UpdateHrisCompanyResponse.ts | 2 +- src/gen/models/UpdateInvoiceItemsResponse.ts | 2 +- src/gen/models/UpdateInvoiceResponse.ts | 2 +- src/gen/models/UpdateItemResponse.ts | 2 +- src/gen/models/UpdateJobResponse.ts | 2 +- src/gen/models/UpdateJournalEntryResponse.ts | 2 +- src/gen/models/UpdateLeadResponse.ts | 2 +- src/gen/models/UpdateLedgerAccountResponse.ts | 2 +- src/gen/models/UpdateLocationResponse.ts | 2 +- src/gen/models/UpdateMerchantResponse.ts | 2 +- src/gen/models/UpdateMessageResponse.ts | 2 +- src/gen/models/UpdateModifierGroupResponse.ts | 2 +- src/gen/models/UpdateModifierResponse.ts | 2 +- src/gen/models/UpdateNoteResponse.ts | 2 +- src/gen/models/UpdateOpportunityResponse.ts | 2 +- src/gen/models/UpdateOrderResponse.ts | 2 +- src/gen/models/UpdateOrderTypeResponse.ts | 2 +- src/gen/models/UpdatePaymentResponse.ts | 2 +- src/gen/models/UpdatePipelineResponse.ts | 2 +- src/gen/models/UpdatePosPaymentResponse.ts | 2 +- src/gen/models/UpdateProductResponse.ts | 2 +- src/gen/models/UpdatePurchaseOrderResponse.ts | 2 +- src/gen/models/UpdateSharedLinkResponse.ts | 2 +- src/gen/models/UpdateSupplierResponse.ts | 2 +- src/gen/models/UpdateTaxRateResponse.ts | 2 +- src/gen/models/UpdateTenderResponse.ts | 2 +- src/gen/models/UpdateTicketResponse.ts | 2 +- src/gen/models/UpdateTimeOffRequestResponse.ts | 2 +- src/gen/models/UpdateUploadSessionResponse.ts | 2 +- src/gen/models/UpdateUserResponse.ts | 2 +- src/gen/models/UpdateWebhookRequest.ts | 2 +- src/gen/models/UpdateWebhookResponse.ts | 2 +- src/gen/models/UploadSession.ts | 2 +- src/gen/models/User.ts | 2 +- src/gen/models/VaultEventType.ts | 2 +- src/gen/models/VirtualWebhooks.ts | 2 +- src/gen/models/WalletDetails.ts | 2 +- src/gen/models/Webhook.ts | 2 +- src/gen/models/WebhookEvent.ts | 2 +- src/gen/models/WebhookEventLog.ts | 2 +- src/gen/models/WebhookEventLogAttempts.ts | 2 +- src/gen/models/WebhookEventLogsFilter.ts | 2 +- src/gen/models/WebhookEventLogsFilterService.ts | 2 +- src/gen/models/WebhookEventType.ts | 2 +- src/gen/models/WebhookSubscription.ts | 2 +- src/gen/models/WebhookSupport.ts | 2 +- src/gen/models/Website.ts | 2 +- src/gen/runtime.ts | 2 +- yarn.lock | 6 +++--- 606 files changed, 608 insertions(+), 608 deletions(-) diff --git a/package.json b/package.json index 090f8889e..8375ca458 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@apideck/node", - "version": "2.9.3", + "version": "3.0.0", "description": "Apideck Node.js SDK", "keywords": [ "apideck", diff --git a/src/gen/apis/AccountingApi.ts b/src/gen/apis/AccountingApi.ts index 90b541f7d..4d77a068d 100644 --- a/src/gen/apis/AccountingApi.ts +++ b/src/gen/apis/AccountingApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/AtsApi.ts b/src/gen/apis/AtsApi.ts index fc71c4bf0..509546b65 100644 --- a/src/gen/apis/AtsApi.ts +++ b/src/gen/apis/AtsApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/ConnectorApi.ts b/src/gen/apis/ConnectorApi.ts index 0a2b81ade..e27aedd7e 100644 --- a/src/gen/apis/ConnectorApi.ts +++ b/src/gen/apis/ConnectorApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/CrmApi.ts b/src/gen/apis/CrmApi.ts index 6e0820afb..a8f6a0a73 100644 --- a/src/gen/apis/CrmApi.ts +++ b/src/gen/apis/CrmApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/EcommerceApi.ts b/src/gen/apis/EcommerceApi.ts index f86049ae6..a5937e3a5 100644 --- a/src/gen/apis/EcommerceApi.ts +++ b/src/gen/apis/EcommerceApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/FileStorageApi.ts b/src/gen/apis/FileStorageApi.ts index 3528072c1..2aeebc923 100644 --- a/src/gen/apis/FileStorageApi.ts +++ b/src/gen/apis/FileStorageApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/HrisApi.ts b/src/gen/apis/HrisApi.ts index 9efa47051..4a62e4831 100644 --- a/src/gen/apis/HrisApi.ts +++ b/src/gen/apis/HrisApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/IssueTrackingApi.ts b/src/gen/apis/IssueTrackingApi.ts index 85b08ceb5..c1ecf6650 100644 --- a/src/gen/apis/IssueTrackingApi.ts +++ b/src/gen/apis/IssueTrackingApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/LeadApi.ts b/src/gen/apis/LeadApi.ts index f7acce15c..0d1146521 100644 --- a/src/gen/apis/LeadApi.ts +++ b/src/gen/apis/LeadApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/PosApi.ts b/src/gen/apis/PosApi.ts index 24888c686..0f9aee4ac 100644 --- a/src/gen/apis/PosApi.ts +++ b/src/gen/apis/PosApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/SmsApi.ts b/src/gen/apis/SmsApi.ts index 993d7e3e0..dc8135346 100644 --- a/src/gen/apis/SmsApi.ts +++ b/src/gen/apis/SmsApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/VaultApi.ts b/src/gen/apis/VaultApi.ts index 450b389dc..77a3e261f 100644 --- a/src/gen/apis/VaultApi.ts +++ b/src/gen/apis/VaultApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/apis/WebhookApi.ts b/src/gen/apis/WebhookApi.ts index d27040f05..ae506322a 100644 --- a/src/gen/apis/WebhookApi.ts +++ b/src/gen/apis/WebhookApi.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/AccountingEventType.ts b/src/gen/models/AccountingEventType.ts index 9d670e82e..973588e2b 100644 --- a/src/gen/models/AccountingEventType.ts +++ b/src/gen/models/AccountingEventType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ActivitiesFilter.ts b/src/gen/models/ActivitiesFilter.ts index ba081d873..80d9264db 100644 --- a/src/gen/models/ActivitiesFilter.ts +++ b/src/gen/models/ActivitiesFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Activity.ts b/src/gen/models/Activity.ts index 05435d7dc..60c71babb 100644 --- a/src/gen/models/Activity.ts +++ b/src/gen/models/Activity.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ActivityAttendee.ts b/src/gen/models/ActivityAttendee.ts index 0420a5a09..6cafcdd89 100644 --- a/src/gen/models/ActivityAttendee.ts +++ b/src/gen/models/ActivityAttendee.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Address.ts b/src/gen/models/Address.ts index f7ad12d56..fa5d1624f 100644 --- a/src/gen/models/Address.ts +++ b/src/gen/models/Address.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Api.ts b/src/gen/models/Api.ts index 9f771e70a..686cf96c7 100644 --- a/src/gen/models/Api.ts +++ b/src/gen/models/Api.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApiResource.ts b/src/gen/models/ApiResource.ts index 92affcbcb..6723969ab 100644 --- a/src/gen/models/ApiResource.ts +++ b/src/gen/models/ApiResource.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApiResourceCoverage.ts b/src/gen/models/ApiResourceCoverage.ts index c67e5a2da..5eeef7310 100644 --- a/src/gen/models/ApiResourceCoverage.ts +++ b/src/gen/models/ApiResourceCoverage.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApiResourceCoverageCoverage.ts b/src/gen/models/ApiResourceCoverageCoverage.ts index c1095f039..1735c24dd 100644 --- a/src/gen/models/ApiResourceCoverageCoverage.ts +++ b/src/gen/models/ApiResourceCoverageCoverage.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApiResourceLinkedResources.ts b/src/gen/models/ApiResourceLinkedResources.ts index 9d5555ed2..c898a8889 100644 --- a/src/gen/models/ApiResourceLinkedResources.ts +++ b/src/gen/models/ApiResourceLinkedResources.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApiResources.ts b/src/gen/models/ApiResources.ts index abc70cdc9..0a6118ae2 100644 --- a/src/gen/models/ApiResources.ts +++ b/src/gen/models/ApiResources.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApiStatus.ts b/src/gen/models/ApiStatus.ts index 1543cc2ca..963a706cb 100644 --- a/src/gen/models/ApiStatus.ts +++ b/src/gen/models/ApiStatus.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApisFilter.ts b/src/gen/models/ApisFilter.ts index a5db6f074..cea455356 100644 --- a/src/gen/models/ApisFilter.ts +++ b/src/gen/models/ApisFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Applicant.ts b/src/gen/models/Applicant.ts index 48a6cdac9..3838fb26c 100644 --- a/src/gen/models/Applicant.ts +++ b/src/gen/models/Applicant.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApplicantSocialLinks.ts b/src/gen/models/ApplicantSocialLinks.ts index a5de409f0..6fe592d5c 100644 --- a/src/gen/models/ApplicantSocialLinks.ts +++ b/src/gen/models/ApplicantSocialLinks.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApplicantWebsites.ts b/src/gen/models/ApplicantWebsites.ts index e32afad97..1298e8d4c 100644 --- a/src/gen/models/ApplicantWebsites.ts +++ b/src/gen/models/ApplicantWebsites.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApplicantsFilter.ts b/src/gen/models/ApplicantsFilter.ts index ce1ec9cff..d89387fa1 100644 --- a/src/gen/models/ApplicantsFilter.ts +++ b/src/gen/models/ApplicantsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Application.ts b/src/gen/models/Application.ts index c1a000f49..18a5c785d 100644 --- a/src/gen/models/Application.ts +++ b/src/gen/models/Application.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ApplicationStage.ts b/src/gen/models/ApplicationStage.ts index 84112009d..41ca53ccd 100644 --- a/src/gen/models/ApplicationStage.ts +++ b/src/gen/models/ApplicationStage.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Assignee.ts b/src/gen/models/Assignee.ts index f8e9a4c47..62c9640fc 100644 --- a/src/gen/models/Assignee.ts +++ b/src/gen/models/Assignee.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/AtsActivity.ts b/src/gen/models/AtsActivity.ts index 0ca76ad9b..de78ddcb0 100644 --- a/src/gen/models/AtsActivity.ts +++ b/src/gen/models/AtsActivity.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/AtsEventType.ts b/src/gen/models/AtsEventType.ts index 87efd4392..d63ba6995 100644 --- a/src/gen/models/AtsEventType.ts +++ b/src/gen/models/AtsEventType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/AuthType.ts b/src/gen/models/AuthType.ts index 12e170740..b51bc1df8 100644 --- a/src/gen/models/AuthType.ts +++ b/src/gen/models/AuthType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BadRequestResponse.ts b/src/gen/models/BadRequestResponse.ts index 2eecd6557..9859002b5 100644 --- a/src/gen/models/BadRequestResponse.ts +++ b/src/gen/models/BadRequestResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheet.ts b/src/gen/models/BalanceSheet.ts index 8aa947cd6..925cb169e 100644 --- a/src/gen/models/BalanceSheet.ts +++ b/src/gen/models/BalanceSheet.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetAssets.ts b/src/gen/models/BalanceSheetAssets.ts index dd9bfc4a7..fb511c9b9 100644 --- a/src/gen/models/BalanceSheetAssets.ts +++ b/src/gen/models/BalanceSheetAssets.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetAssetsCurrentAssets.ts b/src/gen/models/BalanceSheetAssetsCurrentAssets.ts index 092cacca1..103ddd7da 100644 --- a/src/gen/models/BalanceSheetAssetsCurrentAssets.ts +++ b/src/gen/models/BalanceSheetAssetsCurrentAssets.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetAssetsCurrentAssetsAccounts.ts b/src/gen/models/BalanceSheetAssetsCurrentAssetsAccounts.ts index fbe86271d..66a6704ab 100644 --- a/src/gen/models/BalanceSheetAssetsCurrentAssetsAccounts.ts +++ b/src/gen/models/BalanceSheetAssetsCurrentAssetsAccounts.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetAssetsFixedAssets.ts b/src/gen/models/BalanceSheetAssetsFixedAssets.ts index 90cfe530b..54a4befcd 100644 --- a/src/gen/models/BalanceSheetAssetsFixedAssets.ts +++ b/src/gen/models/BalanceSheetAssetsFixedAssets.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetAssetsFixedAssetsAccounts.ts b/src/gen/models/BalanceSheetAssetsFixedAssetsAccounts.ts index f791259ee..45df61f2d 100644 --- a/src/gen/models/BalanceSheetAssetsFixedAssetsAccounts.ts +++ b/src/gen/models/BalanceSheetAssetsFixedAssetsAccounts.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetEquity.ts b/src/gen/models/BalanceSheetEquity.ts index 6dd36510b..4500a8796 100644 --- a/src/gen/models/BalanceSheetEquity.ts +++ b/src/gen/models/BalanceSheetEquity.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetEquityItems.ts b/src/gen/models/BalanceSheetEquityItems.ts index 779ac6c7a..c73e81471 100644 --- a/src/gen/models/BalanceSheetEquityItems.ts +++ b/src/gen/models/BalanceSheetEquityItems.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetFilter.ts b/src/gen/models/BalanceSheetFilter.ts index 2535a2c72..651a6bf1c 100644 --- a/src/gen/models/BalanceSheetFilter.ts +++ b/src/gen/models/BalanceSheetFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetLiabilities.ts b/src/gen/models/BalanceSheetLiabilities.ts index e6e400710..609f7354e 100644 --- a/src/gen/models/BalanceSheetLiabilities.ts +++ b/src/gen/models/BalanceSheetLiabilities.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BalanceSheetLiabilitiesAccounts.ts b/src/gen/models/BalanceSheetLiabilitiesAccounts.ts index ad0d7be8d..158ce0201 100644 --- a/src/gen/models/BalanceSheetLiabilitiesAccounts.ts +++ b/src/gen/models/BalanceSheetLiabilitiesAccounts.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BankAccount.ts b/src/gen/models/BankAccount.ts index 71037ccee..356b68aec 100644 --- a/src/gen/models/BankAccount.ts +++ b/src/gen/models/BankAccount.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Benefit.ts b/src/gen/models/Benefit.ts index 2a47280eb..19cb94f54 100644 --- a/src/gen/models/Benefit.ts +++ b/src/gen/models/Benefit.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Bill.ts b/src/gen/models/Bill.ts index 76741792f..0ffe0100b 100644 --- a/src/gen/models/Bill.ts +++ b/src/gen/models/Bill.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BillLineItem.ts b/src/gen/models/BillLineItem.ts index 676d9c2c6..214a80a43 100644 --- a/src/gen/models/BillLineItem.ts +++ b/src/gen/models/BillLineItem.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/BillsSort.ts b/src/gen/models/BillsSort.ts index 8ec992907..9c8e1ef21 100644 --- a/src/gen/models/BillsSort.ts +++ b/src/gen/models/BillsSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Branch.ts b/src/gen/models/Branch.ts index 667dc491e..7bef42092 100644 --- a/src/gen/models/Branch.ts +++ b/src/gen/models/Branch.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CashDetails.ts b/src/gen/models/CashDetails.ts index c55921e33..b7317b295 100644 --- a/src/gen/models/CashDetails.ts +++ b/src/gen/models/CashDetails.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Collection.ts b/src/gen/models/Collection.ts index f353dd3e8..78daeeeec 100644 --- a/src/gen/models/Collection.ts +++ b/src/gen/models/Collection.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CollectionTag.ts b/src/gen/models/CollectionTag.ts index d9a30ee05..d4e33d4f4 100644 --- a/src/gen/models/CollectionTag.ts +++ b/src/gen/models/CollectionTag.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CollectionTicketComment.ts b/src/gen/models/CollectionTicketComment.ts index db3d855b1..382e42652 100644 --- a/src/gen/models/CollectionTicketComment.ts +++ b/src/gen/models/CollectionTicketComment.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CollectionUser.ts b/src/gen/models/CollectionUser.ts index ccf977f69..315f3951d 100644 --- a/src/gen/models/CollectionUser.ts +++ b/src/gen/models/CollectionUser.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CollectionsSort.ts b/src/gen/models/CollectionsSort.ts index 8454709be..631368211 100644 --- a/src/gen/models/CollectionsSort.ts +++ b/src/gen/models/CollectionsSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CommentsSort.ts b/src/gen/models/CommentsSort.ts index c8c2f0646..ea3d756b6 100644 --- a/src/gen/models/CommentsSort.ts +++ b/src/gen/models/CommentsSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CompaniesFilter.ts b/src/gen/models/CompaniesFilter.ts index 4c11ddb99..85cb0b5f2 100644 --- a/src/gen/models/CompaniesFilter.ts +++ b/src/gen/models/CompaniesFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CompaniesSort.ts b/src/gen/models/CompaniesSort.ts index 688f8e7ab..a13b1de0f 100644 --- a/src/gen/models/CompaniesSort.ts +++ b/src/gen/models/CompaniesSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Company.ts b/src/gen/models/Company.ts index 77afa32a1..277a0a60e 100644 --- a/src/gen/models/Company.ts +++ b/src/gen/models/Company.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CompanyInfo.ts b/src/gen/models/CompanyInfo.ts index 5c0c35a44..12d1d4090 100644 --- a/src/gen/models/CompanyInfo.ts +++ b/src/gen/models/CompanyInfo.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CompanyRowType.ts b/src/gen/models/CompanyRowType.ts index 58a063b0b..5eeeab91e 100644 --- a/src/gen/models/CompanyRowType.ts +++ b/src/gen/models/CompanyRowType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Compensation.ts b/src/gen/models/Compensation.ts index aa17b5ddf..6c4a7ba52 100644 --- a/src/gen/models/Compensation.ts +++ b/src/gen/models/Compensation.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Connection.ts b/src/gen/models/Connection.ts index 7c5429261..0d64ac1b0 100644 --- a/src/gen/models/Connection.ts +++ b/src/gen/models/Connection.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectionConfiguration.ts b/src/gen/models/ConnectionConfiguration.ts index cfa39c40f..19240dfe2 100644 --- a/src/gen/models/ConnectionConfiguration.ts +++ b/src/gen/models/ConnectionConfiguration.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectionDefaults.ts b/src/gen/models/ConnectionDefaults.ts index 657de5afa..6ef613721 100644 --- a/src/gen/models/ConnectionDefaults.ts +++ b/src/gen/models/ConnectionDefaults.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectionImportData.ts b/src/gen/models/ConnectionImportData.ts index 73eb28f30..b8a2327ae 100644 --- a/src/gen/models/ConnectionImportData.ts +++ b/src/gen/models/ConnectionImportData.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectionImportDataCredentials.ts b/src/gen/models/ConnectionImportDataCredentials.ts index 52a47785d..2555d940a 100644 --- a/src/gen/models/ConnectionImportDataCredentials.ts +++ b/src/gen/models/ConnectionImportDataCredentials.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectionMetadata.ts b/src/gen/models/ConnectionMetadata.ts index e8b3a4536..f1b69b12c 100644 --- a/src/gen/models/ConnectionMetadata.ts +++ b/src/gen/models/ConnectionMetadata.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectionState.ts b/src/gen/models/ConnectionState.ts index 50fc97adf..8929a3580 100644 --- a/src/gen/models/ConnectionState.ts +++ b/src/gen/models/ConnectionState.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectionWebhook.ts b/src/gen/models/ConnectionWebhook.ts index d521d321c..0c9a5f98b 100644 --- a/src/gen/models/ConnectionWebhook.ts +++ b/src/gen/models/ConnectionWebhook.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Connector.ts b/src/gen/models/Connector.ts index 58fc1648e..ec7b0db74 100644 --- a/src/gen/models/Connector.ts +++ b/src/gen/models/Connector.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorDoc.ts b/src/gen/models/ConnectorDoc.ts index 8c1f25381..567ff9739 100644 --- a/src/gen/models/ConnectorDoc.ts +++ b/src/gen/models/ConnectorDoc.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorEvent.ts b/src/gen/models/ConnectorEvent.ts index fd760adcd..9abec1a09 100644 --- a/src/gen/models/ConnectorEvent.ts +++ b/src/gen/models/ConnectorEvent.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorOauthScopes.ts b/src/gen/models/ConnectorOauthScopes.ts index 1acc5b9d4..f3a6de064 100644 --- a/src/gen/models/ConnectorOauthScopes.ts +++ b/src/gen/models/ConnectorOauthScopes.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorOauthScopes1.ts b/src/gen/models/ConnectorOauthScopes1.ts index 797849630..7ce2966b6 100644 --- a/src/gen/models/ConnectorOauthScopes1.ts +++ b/src/gen/models/ConnectorOauthScopes1.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorResource.ts b/src/gen/models/ConnectorResource.ts index f8074e62a..2391c8129 100644 --- a/src/gen/models/ConnectorResource.ts +++ b/src/gen/models/ConnectorResource.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorSetting.ts b/src/gen/models/ConnectorSetting.ts index 3ee6628ba..90ac70319 100644 --- a/src/gen/models/ConnectorSetting.ts +++ b/src/gen/models/ConnectorSetting.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorStatus.ts b/src/gen/models/ConnectorStatus.ts index 64484c9b1..a578083da 100644 --- a/src/gen/models/ConnectorStatus.ts +++ b/src/gen/models/ConnectorStatus.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorTlsSupport.ts b/src/gen/models/ConnectorTlsSupport.ts index 68a443b36..e73b584ec 100644 --- a/src/gen/models/ConnectorTlsSupport.ts +++ b/src/gen/models/ConnectorTlsSupport.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorUnifiedApis.ts b/src/gen/models/ConnectorUnifiedApis.ts index 0cf1a8777..2c6fae977 100644 --- a/src/gen/models/ConnectorUnifiedApis.ts +++ b/src/gen/models/ConnectorUnifiedApis.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConnectorsFilter.ts b/src/gen/models/ConnectorsFilter.ts index 673dbcb00..f302306b5 100644 --- a/src/gen/models/ConnectorsFilter.ts +++ b/src/gen/models/ConnectorsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Consumer.ts b/src/gen/models/Consumer.ts index 426c0e996..ff693baca 100644 --- a/src/gen/models/Consumer.ts +++ b/src/gen/models/Consumer.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConsumerConnection.ts b/src/gen/models/ConsumerConnection.ts index 96a6b3690..be5815171 100644 --- a/src/gen/models/ConsumerConnection.ts +++ b/src/gen/models/ConsumerConnection.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConsumerMetadata.ts b/src/gen/models/ConsumerMetadata.ts index 8b7567bdb..da77a2f95 100644 --- a/src/gen/models/ConsumerMetadata.ts +++ b/src/gen/models/ConsumerMetadata.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConsumerRequestCountsInDateRangeResponse.ts b/src/gen/models/ConsumerRequestCountsInDateRangeResponse.ts index 10cad36e5..f3a6dcc2a 100644 --- a/src/gen/models/ConsumerRequestCountsInDateRangeResponse.ts +++ b/src/gen/models/ConsumerRequestCountsInDateRangeResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ConsumerRequestCountsInDateRangeResponseData.ts b/src/gen/models/ConsumerRequestCountsInDateRangeResponseData.ts index 234878d23..b5a631cd2 100644 --- a/src/gen/models/ConsumerRequestCountsInDateRangeResponseData.ts +++ b/src/gen/models/ConsumerRequestCountsInDateRangeResponseData.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Contact.ts b/src/gen/models/Contact.ts index f50e416eb..4117e6b22 100644 --- a/src/gen/models/Contact.ts +++ b/src/gen/models/Contact.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ContactsFilter.ts b/src/gen/models/ContactsFilter.ts index dc0ed9a89..98dcae6e5 100644 --- a/src/gen/models/ContactsFilter.ts +++ b/src/gen/models/ContactsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ContactsSort.ts b/src/gen/models/ContactsSort.ts index 11d5eab46..1673490fe 100644 --- a/src/gen/models/ContactsSort.ts +++ b/src/gen/models/ContactsSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CopyFolderRequest.ts b/src/gen/models/CopyFolderRequest.ts index 8201b5ff9..c55b652e0 100644 --- a/src/gen/models/CopyFolderRequest.ts +++ b/src/gen/models/CopyFolderRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateActivityResponse.ts b/src/gen/models/CreateActivityResponse.ts index 4120a02ae..986194d25 100644 --- a/src/gen/models/CreateActivityResponse.ts +++ b/src/gen/models/CreateActivityResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateApplicantResponse.ts b/src/gen/models/CreateApplicantResponse.ts index 6ac36aabe..2603b64b8 100644 --- a/src/gen/models/CreateApplicantResponse.ts +++ b/src/gen/models/CreateApplicantResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateApplicationResponse.ts b/src/gen/models/CreateApplicationResponse.ts index 8d496966b..715acf7dd 100644 --- a/src/gen/models/CreateApplicationResponse.ts +++ b/src/gen/models/CreateApplicationResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateBillResponse.ts b/src/gen/models/CreateBillResponse.ts index 67c201233..972dc7639 100644 --- a/src/gen/models/CreateBillResponse.ts +++ b/src/gen/models/CreateBillResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateCommentResponse.ts b/src/gen/models/CreateCommentResponse.ts index c942eba74..ac8646161 100644 --- a/src/gen/models/CreateCommentResponse.ts +++ b/src/gen/models/CreateCommentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateCompanyResponse.ts b/src/gen/models/CreateCompanyResponse.ts index c580b3778..53dd10a77 100644 --- a/src/gen/models/CreateCompanyResponse.ts +++ b/src/gen/models/CreateCompanyResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateConnectionResponse.ts b/src/gen/models/CreateConnectionResponse.ts index 850af0295..b47f33058 100644 --- a/src/gen/models/CreateConnectionResponse.ts +++ b/src/gen/models/CreateConnectionResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateConsumerResponse.ts b/src/gen/models/CreateConsumerResponse.ts index 0903d7250..844c6df52 100644 --- a/src/gen/models/CreateConsumerResponse.ts +++ b/src/gen/models/CreateConsumerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateContactResponse.ts b/src/gen/models/CreateContactResponse.ts index 2b52b3b55..eb79310f9 100644 --- a/src/gen/models/CreateContactResponse.ts +++ b/src/gen/models/CreateContactResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateCreditNoteResponse.ts b/src/gen/models/CreateCreditNoteResponse.ts index e0912239f..dfe7d52a7 100644 --- a/src/gen/models/CreateCreditNoteResponse.ts +++ b/src/gen/models/CreateCreditNoteResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateCustomMappingResponse.ts b/src/gen/models/CreateCustomMappingResponse.ts index c72c8822d..ca16e3754 100644 --- a/src/gen/models/CreateCustomMappingResponse.ts +++ b/src/gen/models/CreateCustomMappingResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateCustomerResponse.ts b/src/gen/models/CreateCustomerResponse.ts index 4a5ee3764..da9c9e6bc 100644 --- a/src/gen/models/CreateCustomerResponse.ts +++ b/src/gen/models/CreateCustomerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateDepartmentResponse.ts b/src/gen/models/CreateDepartmentResponse.ts index ee6d665cd..a773b8d8c 100644 --- a/src/gen/models/CreateDepartmentResponse.ts +++ b/src/gen/models/CreateDepartmentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateDriveGroupResponse.ts b/src/gen/models/CreateDriveGroupResponse.ts index efba4d0f3..382e7df61 100644 --- a/src/gen/models/CreateDriveGroupResponse.ts +++ b/src/gen/models/CreateDriveGroupResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateDriveResponse.ts b/src/gen/models/CreateDriveResponse.ts index d5e41c3b5..42f301cc4 100644 --- a/src/gen/models/CreateDriveResponse.ts +++ b/src/gen/models/CreateDriveResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateEcommerceCustomerResponse.ts b/src/gen/models/CreateEcommerceCustomerResponse.ts index 9fbaca0b6..f217ed263 100644 --- a/src/gen/models/CreateEcommerceCustomerResponse.ts +++ b/src/gen/models/CreateEcommerceCustomerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateEcommerceOrderResponse.ts b/src/gen/models/CreateEcommerceOrderResponse.ts index df864a227..56a0322fa 100644 --- a/src/gen/models/CreateEcommerceOrderResponse.ts +++ b/src/gen/models/CreateEcommerceOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateEmployeeResponse.ts b/src/gen/models/CreateEmployeeResponse.ts index fedfd6384..34a387caf 100644 --- a/src/gen/models/CreateEmployeeResponse.ts +++ b/src/gen/models/CreateEmployeeResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateFileRequest.ts b/src/gen/models/CreateFileRequest.ts index e7d585325..a8017b174 100644 --- a/src/gen/models/CreateFileRequest.ts +++ b/src/gen/models/CreateFileRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateFileResponse.ts b/src/gen/models/CreateFileResponse.ts index 9bb00628e..47b9505bb 100644 --- a/src/gen/models/CreateFileResponse.ts +++ b/src/gen/models/CreateFileResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateFolderRequest.ts b/src/gen/models/CreateFolderRequest.ts index 65c22abec..f408ddd04 100644 --- a/src/gen/models/CreateFolderRequest.ts +++ b/src/gen/models/CreateFolderRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateFolderResponse.ts b/src/gen/models/CreateFolderResponse.ts index 0d98fe19f..7cbbcd801 100644 --- a/src/gen/models/CreateFolderResponse.ts +++ b/src/gen/models/CreateFolderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateHrisCompanyResponse.ts b/src/gen/models/CreateHrisCompanyResponse.ts index 5df3cde7c..c5866be64 100644 --- a/src/gen/models/CreateHrisCompanyResponse.ts +++ b/src/gen/models/CreateHrisCompanyResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateInvoiceItemResponse.ts b/src/gen/models/CreateInvoiceItemResponse.ts index 6e8cc5b6e..39ff8aeb2 100644 --- a/src/gen/models/CreateInvoiceItemResponse.ts +++ b/src/gen/models/CreateInvoiceItemResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateInvoiceResponse.ts b/src/gen/models/CreateInvoiceResponse.ts index c18fe39e1..a8c48a6e8 100644 --- a/src/gen/models/CreateInvoiceResponse.ts +++ b/src/gen/models/CreateInvoiceResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateItemResponse.ts b/src/gen/models/CreateItemResponse.ts index 7ce872f41..82c8d9265 100644 --- a/src/gen/models/CreateItemResponse.ts +++ b/src/gen/models/CreateItemResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateJobResponse.ts b/src/gen/models/CreateJobResponse.ts index 5ac2ea4c1..c1f2c62ea 100644 --- a/src/gen/models/CreateJobResponse.ts +++ b/src/gen/models/CreateJobResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateJournalEntryResponse.ts b/src/gen/models/CreateJournalEntryResponse.ts index 482c5a4ea..5d1223a25 100644 --- a/src/gen/models/CreateJournalEntryResponse.ts +++ b/src/gen/models/CreateJournalEntryResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateLeadResponse.ts b/src/gen/models/CreateLeadResponse.ts index a88c85429..e0e26f90d 100644 --- a/src/gen/models/CreateLeadResponse.ts +++ b/src/gen/models/CreateLeadResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateLedgerAccountResponse.ts b/src/gen/models/CreateLedgerAccountResponse.ts index 5cf3adc1b..4cab7ffea 100644 --- a/src/gen/models/CreateLedgerAccountResponse.ts +++ b/src/gen/models/CreateLedgerAccountResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateLocationResponse.ts b/src/gen/models/CreateLocationResponse.ts index 5175f7af9..80fba4aa0 100644 --- a/src/gen/models/CreateLocationResponse.ts +++ b/src/gen/models/CreateLocationResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateMerchantResponse.ts b/src/gen/models/CreateMerchantResponse.ts index 74e7d387f..e52b9c495 100644 --- a/src/gen/models/CreateMerchantResponse.ts +++ b/src/gen/models/CreateMerchantResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateMessageResponse.ts b/src/gen/models/CreateMessageResponse.ts index 1e22ae145..fd196a903 100644 --- a/src/gen/models/CreateMessageResponse.ts +++ b/src/gen/models/CreateMessageResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateModifierGroupResponse.ts b/src/gen/models/CreateModifierGroupResponse.ts index 47f1ef67d..c95a5845a 100644 --- a/src/gen/models/CreateModifierGroupResponse.ts +++ b/src/gen/models/CreateModifierGroupResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateModifierResponse.ts b/src/gen/models/CreateModifierResponse.ts index 0dc11038a..697150a5d 100644 --- a/src/gen/models/CreateModifierResponse.ts +++ b/src/gen/models/CreateModifierResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateNoteResponse.ts b/src/gen/models/CreateNoteResponse.ts index 13780e19d..25668d49a 100644 --- a/src/gen/models/CreateNoteResponse.ts +++ b/src/gen/models/CreateNoteResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateOpportunityResponse.ts b/src/gen/models/CreateOpportunityResponse.ts index 7d349b5ca..64082b7c3 100644 --- a/src/gen/models/CreateOpportunityResponse.ts +++ b/src/gen/models/CreateOpportunityResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateOrderResponse.ts b/src/gen/models/CreateOrderResponse.ts index 582e95216..ff51730e6 100644 --- a/src/gen/models/CreateOrderResponse.ts +++ b/src/gen/models/CreateOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateOrderTypeResponse.ts b/src/gen/models/CreateOrderTypeResponse.ts index 39049a7c3..4f3f44b27 100644 --- a/src/gen/models/CreateOrderTypeResponse.ts +++ b/src/gen/models/CreateOrderTypeResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreatePaymentResponse.ts b/src/gen/models/CreatePaymentResponse.ts index 4569bc9a8..619cb282b 100644 --- a/src/gen/models/CreatePaymentResponse.ts +++ b/src/gen/models/CreatePaymentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreatePipelineResponse.ts b/src/gen/models/CreatePipelineResponse.ts index d8e792a1a..d507e2744 100644 --- a/src/gen/models/CreatePipelineResponse.ts +++ b/src/gen/models/CreatePipelineResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreatePosPaymentResponse.ts b/src/gen/models/CreatePosPaymentResponse.ts index ad6a5d5c7..0fed88dac 100644 --- a/src/gen/models/CreatePosPaymentResponse.ts +++ b/src/gen/models/CreatePosPaymentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateProductResponse.ts b/src/gen/models/CreateProductResponse.ts index 70462fc18..390a66dfc 100644 --- a/src/gen/models/CreateProductResponse.ts +++ b/src/gen/models/CreateProductResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreatePurchaseOrderResponse.ts b/src/gen/models/CreatePurchaseOrderResponse.ts index e58dc5443..6056bb57e 100644 --- a/src/gen/models/CreatePurchaseOrderResponse.ts +++ b/src/gen/models/CreatePurchaseOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateSessionResponse.ts b/src/gen/models/CreateSessionResponse.ts index b01fcf350..03d79e85d 100644 --- a/src/gen/models/CreateSessionResponse.ts +++ b/src/gen/models/CreateSessionResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateSharedLinkResponse.ts b/src/gen/models/CreateSharedLinkResponse.ts index e5eea39eb..d78ee31ba 100644 --- a/src/gen/models/CreateSharedLinkResponse.ts +++ b/src/gen/models/CreateSharedLinkResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateSupplierResponse.ts b/src/gen/models/CreateSupplierResponse.ts index 217ac14b8..0d43d0ad5 100644 --- a/src/gen/models/CreateSupplierResponse.ts +++ b/src/gen/models/CreateSupplierResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateTaxRateResponse.ts b/src/gen/models/CreateTaxRateResponse.ts index a4afdca69..d7d06d4cf 100644 --- a/src/gen/models/CreateTaxRateResponse.ts +++ b/src/gen/models/CreateTaxRateResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateTenderResponse.ts b/src/gen/models/CreateTenderResponse.ts index 9b8e06471..2cc1e4a23 100644 --- a/src/gen/models/CreateTenderResponse.ts +++ b/src/gen/models/CreateTenderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateTicketResponse.ts b/src/gen/models/CreateTicketResponse.ts index 7a88a8f20..ef4dc470b 100644 --- a/src/gen/models/CreateTicketResponse.ts +++ b/src/gen/models/CreateTicketResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateTimeOffRequestResponse.ts b/src/gen/models/CreateTimeOffRequestResponse.ts index a52cc82eb..9126d86ae 100644 --- a/src/gen/models/CreateTimeOffRequestResponse.ts +++ b/src/gen/models/CreateTimeOffRequestResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateUploadSessionRequest.ts b/src/gen/models/CreateUploadSessionRequest.ts index 1bb9be8aa..f50d9dc94 100644 --- a/src/gen/models/CreateUploadSessionRequest.ts +++ b/src/gen/models/CreateUploadSessionRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateUploadSessionResponse.ts b/src/gen/models/CreateUploadSessionResponse.ts index 79c6d5f11..90bbd6e04 100644 --- a/src/gen/models/CreateUploadSessionResponse.ts +++ b/src/gen/models/CreateUploadSessionResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateUserResponse.ts b/src/gen/models/CreateUserResponse.ts index b904068a4..309de5b0a 100644 --- a/src/gen/models/CreateUserResponse.ts +++ b/src/gen/models/CreateUserResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateWebhookRequest.ts b/src/gen/models/CreateWebhookRequest.ts index 415bf49e6..1cbbd4368 100644 --- a/src/gen/models/CreateWebhookRequest.ts +++ b/src/gen/models/CreateWebhookRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreateWebhookResponse.ts b/src/gen/models/CreateWebhookResponse.ts index 2145e1f32..f471f36d5 100644 --- a/src/gen/models/CreateWebhookResponse.ts +++ b/src/gen/models/CreateWebhookResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CreditNote.ts b/src/gen/models/CreditNote.ts index 0fab24745..a848e5798 100644 --- a/src/gen/models/CreditNote.ts +++ b/src/gen/models/CreditNote.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CrmEventType.ts b/src/gen/models/CrmEventType.ts index c5057a651..fa763d2e4 100644 --- a/src/gen/models/CrmEventType.ts +++ b/src/gen/models/CrmEventType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Currency.ts b/src/gen/models/Currency.ts index 4af1477bb..be15fc1e3 100644 --- a/src/gen/models/Currency.ts +++ b/src/gen/models/Currency.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CustomField.ts b/src/gen/models/CustomField.ts index 1100ffa4b..796bd0bb1 100644 --- a/src/gen/models/CustomField.ts +++ b/src/gen/models/CustomField.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CustomFieldFinder.ts b/src/gen/models/CustomFieldFinder.ts index 657e8907a..338489a99 100644 --- a/src/gen/models/CustomFieldFinder.ts +++ b/src/gen/models/CustomFieldFinder.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CustomMapping.ts b/src/gen/models/CustomMapping.ts index 6abf5a9fd..310bac123 100644 --- a/src/gen/models/CustomMapping.ts +++ b/src/gen/models/CustomMapping.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Customer.ts b/src/gen/models/Customer.ts index 7025a4615..8af4169bd 100644 --- a/src/gen/models/Customer.ts +++ b/src/gen/models/Customer.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/CustomersFilter.ts b/src/gen/models/CustomersFilter.ts index d644c6da2..ce11e2a81 100644 --- a/src/gen/models/CustomersFilter.ts +++ b/src/gen/models/CustomersFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Deduction.ts b/src/gen/models/Deduction.ts index 21bd0d5c6..eda4b991d 100644 --- a/src/gen/models/Deduction.ts +++ b/src/gen/models/Deduction.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteActivityResponse.ts b/src/gen/models/DeleteActivityResponse.ts index eff4a3710..dd9ac37f5 100644 --- a/src/gen/models/DeleteActivityResponse.ts +++ b/src/gen/models/DeleteActivityResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteApplicantResponse.ts b/src/gen/models/DeleteApplicantResponse.ts index 93e674042..ab4d1d450 100644 --- a/src/gen/models/DeleteApplicantResponse.ts +++ b/src/gen/models/DeleteApplicantResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteApplicationResponse.ts b/src/gen/models/DeleteApplicationResponse.ts index a836ed5c9..bb955cdbe 100644 --- a/src/gen/models/DeleteApplicationResponse.ts +++ b/src/gen/models/DeleteApplicationResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteBillResponse.ts b/src/gen/models/DeleteBillResponse.ts index 50c0afbce..813675070 100644 --- a/src/gen/models/DeleteBillResponse.ts +++ b/src/gen/models/DeleteBillResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteCommentResponse.ts b/src/gen/models/DeleteCommentResponse.ts index 31292c255..b9cbb15e4 100644 --- a/src/gen/models/DeleteCommentResponse.ts +++ b/src/gen/models/DeleteCommentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteCompanyResponse.ts b/src/gen/models/DeleteCompanyResponse.ts index c060811ac..ba7bdef09 100644 --- a/src/gen/models/DeleteCompanyResponse.ts +++ b/src/gen/models/DeleteCompanyResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteContactResponse.ts b/src/gen/models/DeleteContactResponse.ts index ccfc50c7d..c55c54797 100644 --- a/src/gen/models/DeleteContactResponse.ts +++ b/src/gen/models/DeleteContactResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteCreditNoteResponse.ts b/src/gen/models/DeleteCreditNoteResponse.ts index 7683973a9..05f15dde5 100644 --- a/src/gen/models/DeleteCreditNoteResponse.ts +++ b/src/gen/models/DeleteCreditNoteResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteCustomerResponse.ts b/src/gen/models/DeleteCustomerResponse.ts index fc1a5d49c..50e741d5f 100644 --- a/src/gen/models/DeleteCustomerResponse.ts +++ b/src/gen/models/DeleteCustomerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteDepartmentResponse.ts b/src/gen/models/DeleteDepartmentResponse.ts index 277355949..af799a209 100644 --- a/src/gen/models/DeleteDepartmentResponse.ts +++ b/src/gen/models/DeleteDepartmentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteDriveGroupResponse.ts b/src/gen/models/DeleteDriveGroupResponse.ts index 98a217828..339b8ea82 100644 --- a/src/gen/models/DeleteDriveGroupResponse.ts +++ b/src/gen/models/DeleteDriveGroupResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteDriveResponse.ts b/src/gen/models/DeleteDriveResponse.ts index 2f51088d0..778852254 100644 --- a/src/gen/models/DeleteDriveResponse.ts +++ b/src/gen/models/DeleteDriveResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteEcommerceCustomerResponse.ts b/src/gen/models/DeleteEcommerceCustomerResponse.ts index 78f7f77ba..4bac9386e 100644 --- a/src/gen/models/DeleteEcommerceCustomerResponse.ts +++ b/src/gen/models/DeleteEcommerceCustomerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteEcommerceOrderResponse.ts b/src/gen/models/DeleteEcommerceOrderResponse.ts index 15f5d77fc..e74a2b1a3 100644 --- a/src/gen/models/DeleteEcommerceOrderResponse.ts +++ b/src/gen/models/DeleteEcommerceOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteEmployeeResponse.ts b/src/gen/models/DeleteEmployeeResponse.ts index c2ad30851..ab5658b27 100644 --- a/src/gen/models/DeleteEmployeeResponse.ts +++ b/src/gen/models/DeleteEmployeeResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteFileResponse.ts b/src/gen/models/DeleteFileResponse.ts index 0f3110bf9..22ae2c20c 100644 --- a/src/gen/models/DeleteFileResponse.ts +++ b/src/gen/models/DeleteFileResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteFolderResponse.ts b/src/gen/models/DeleteFolderResponse.ts index e7b68e79c..bd03a6529 100644 --- a/src/gen/models/DeleteFolderResponse.ts +++ b/src/gen/models/DeleteFolderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteHrisCompanyResponse.ts b/src/gen/models/DeleteHrisCompanyResponse.ts index 606476127..b1e1ed95f 100644 --- a/src/gen/models/DeleteHrisCompanyResponse.ts +++ b/src/gen/models/DeleteHrisCompanyResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteInvoiceResponse.ts b/src/gen/models/DeleteInvoiceResponse.ts index fb286279f..60d87bedb 100644 --- a/src/gen/models/DeleteInvoiceResponse.ts +++ b/src/gen/models/DeleteInvoiceResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteItemResponse.ts b/src/gen/models/DeleteItemResponse.ts index c76128ffb..750d5099a 100644 --- a/src/gen/models/DeleteItemResponse.ts +++ b/src/gen/models/DeleteItemResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteJobResponse.ts b/src/gen/models/DeleteJobResponse.ts index 8a45757cf..fa7828f74 100644 --- a/src/gen/models/DeleteJobResponse.ts +++ b/src/gen/models/DeleteJobResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteJournalEntryResponse.ts b/src/gen/models/DeleteJournalEntryResponse.ts index 0c40e2819..634f05a95 100644 --- a/src/gen/models/DeleteJournalEntryResponse.ts +++ b/src/gen/models/DeleteJournalEntryResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteLeadResponse.ts b/src/gen/models/DeleteLeadResponse.ts index c6bd49a36..d9b1d59d9 100644 --- a/src/gen/models/DeleteLeadResponse.ts +++ b/src/gen/models/DeleteLeadResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteLedgerAccountResponse.ts b/src/gen/models/DeleteLedgerAccountResponse.ts index f79e2aad3..d45928d31 100644 --- a/src/gen/models/DeleteLedgerAccountResponse.ts +++ b/src/gen/models/DeleteLedgerAccountResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteLocationResponse.ts b/src/gen/models/DeleteLocationResponse.ts index 4f9424b28..f0407e5d1 100644 --- a/src/gen/models/DeleteLocationResponse.ts +++ b/src/gen/models/DeleteLocationResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteMerchantResponse.ts b/src/gen/models/DeleteMerchantResponse.ts index e5c765f28..e928fe241 100644 --- a/src/gen/models/DeleteMerchantResponse.ts +++ b/src/gen/models/DeleteMerchantResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteMessageResponse.ts b/src/gen/models/DeleteMessageResponse.ts index 0dcd7190c..481a05d69 100644 --- a/src/gen/models/DeleteMessageResponse.ts +++ b/src/gen/models/DeleteMessageResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteModifierGroupResponse.ts b/src/gen/models/DeleteModifierGroupResponse.ts index 88690c0e3..efda61a0e 100644 --- a/src/gen/models/DeleteModifierGroupResponse.ts +++ b/src/gen/models/DeleteModifierGroupResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteModifierResponse.ts b/src/gen/models/DeleteModifierResponse.ts index f75c44369..8fc471931 100644 --- a/src/gen/models/DeleteModifierResponse.ts +++ b/src/gen/models/DeleteModifierResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteNoteResponse.ts b/src/gen/models/DeleteNoteResponse.ts index 75f9ada1c..cf5dab2b3 100644 --- a/src/gen/models/DeleteNoteResponse.ts +++ b/src/gen/models/DeleteNoteResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteOpportunityResponse.ts b/src/gen/models/DeleteOpportunityResponse.ts index 753184b1c..e1abc376e 100644 --- a/src/gen/models/DeleteOpportunityResponse.ts +++ b/src/gen/models/DeleteOpportunityResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteOrderResponse.ts b/src/gen/models/DeleteOrderResponse.ts index ff19b3ef3..975034dd9 100644 --- a/src/gen/models/DeleteOrderResponse.ts +++ b/src/gen/models/DeleteOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteOrderTypeResponse.ts b/src/gen/models/DeleteOrderTypeResponse.ts index f056703bd..1e2d752ab 100644 --- a/src/gen/models/DeleteOrderTypeResponse.ts +++ b/src/gen/models/DeleteOrderTypeResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeletePaymentResponse.ts b/src/gen/models/DeletePaymentResponse.ts index b5938822a..48197b401 100644 --- a/src/gen/models/DeletePaymentResponse.ts +++ b/src/gen/models/DeletePaymentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeletePipelineResponse.ts b/src/gen/models/DeletePipelineResponse.ts index b94bdb932..68b99eb5e 100644 --- a/src/gen/models/DeletePipelineResponse.ts +++ b/src/gen/models/DeletePipelineResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeletePosPaymentResponse.ts b/src/gen/models/DeletePosPaymentResponse.ts index 3c918a8fc..5ef4ec462 100644 --- a/src/gen/models/DeletePosPaymentResponse.ts +++ b/src/gen/models/DeletePosPaymentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteProductResponse.ts b/src/gen/models/DeleteProductResponse.ts index bbf59fa2e..37404e5fe 100644 --- a/src/gen/models/DeleteProductResponse.ts +++ b/src/gen/models/DeleteProductResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeletePurchaseOrderResponse.ts b/src/gen/models/DeletePurchaseOrderResponse.ts index 7dd3212f1..b123121a6 100644 --- a/src/gen/models/DeletePurchaseOrderResponse.ts +++ b/src/gen/models/DeletePurchaseOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteSharedLinkResponse.ts b/src/gen/models/DeleteSharedLinkResponse.ts index 480f96fb5..b8ccda2f6 100644 --- a/src/gen/models/DeleteSharedLinkResponse.ts +++ b/src/gen/models/DeleteSharedLinkResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteSupplierResponse.ts b/src/gen/models/DeleteSupplierResponse.ts index 04e504432..f3eb5225b 100644 --- a/src/gen/models/DeleteSupplierResponse.ts +++ b/src/gen/models/DeleteSupplierResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteTaxRateResponse.ts b/src/gen/models/DeleteTaxRateResponse.ts index a0f3949c8..df1859999 100644 --- a/src/gen/models/DeleteTaxRateResponse.ts +++ b/src/gen/models/DeleteTaxRateResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteTenderResponse.ts b/src/gen/models/DeleteTenderResponse.ts index 69a9d62c8..2f766a637 100644 --- a/src/gen/models/DeleteTenderResponse.ts +++ b/src/gen/models/DeleteTenderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteTicketResponse.ts b/src/gen/models/DeleteTicketResponse.ts index a8cd0a51b..2906d45bd 100644 --- a/src/gen/models/DeleteTicketResponse.ts +++ b/src/gen/models/DeleteTicketResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteTimeOffRequestResponse.ts b/src/gen/models/DeleteTimeOffRequestResponse.ts index 5ed11954a..1aeb5ff29 100644 --- a/src/gen/models/DeleteTimeOffRequestResponse.ts +++ b/src/gen/models/DeleteTimeOffRequestResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteUploadSessionResponse.ts b/src/gen/models/DeleteUploadSessionResponse.ts index 358175a32..8b83f9ae8 100644 --- a/src/gen/models/DeleteUploadSessionResponse.ts +++ b/src/gen/models/DeleteUploadSessionResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteUserResponse.ts b/src/gen/models/DeleteUserResponse.ts index a731ab692..929ac8014 100644 --- a/src/gen/models/DeleteUserResponse.ts +++ b/src/gen/models/DeleteUserResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DeleteWebhookResponse.ts b/src/gen/models/DeleteWebhookResponse.ts index 512ea1d42..9d9469898 100644 --- a/src/gen/models/DeleteWebhookResponse.ts +++ b/src/gen/models/DeleteWebhookResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Department.ts b/src/gen/models/Department.ts index 7eef2c530..6e110d6b1 100644 --- a/src/gen/models/Department.ts +++ b/src/gen/models/Department.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Drive.ts b/src/gen/models/Drive.ts index 5d521b467..860432c04 100644 --- a/src/gen/models/Drive.ts +++ b/src/gen/models/Drive.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DriveGroup.ts b/src/gen/models/DriveGroup.ts index b0f68cb67..6bddfb24b 100644 --- a/src/gen/models/DriveGroup.ts +++ b/src/gen/models/DriveGroup.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DriveGroupsFilter.ts b/src/gen/models/DriveGroupsFilter.ts index 4bce333e2..c63e86749 100644 --- a/src/gen/models/DriveGroupsFilter.ts +++ b/src/gen/models/DriveGroupsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/DrivesFilter.ts b/src/gen/models/DrivesFilter.ts index 1f533c276..884cf3997 100644 --- a/src/gen/models/DrivesFilter.ts +++ b/src/gen/models/DrivesFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceAddress.ts b/src/gen/models/EcommerceAddress.ts index 28ddcc7ad..df1e7f8f6 100644 --- a/src/gen/models/EcommerceAddress.ts +++ b/src/gen/models/EcommerceAddress.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceCustomer.ts b/src/gen/models/EcommerceCustomer.ts index e6497624b..8c55ca525 100644 --- a/src/gen/models/EcommerceCustomer.ts +++ b/src/gen/models/EcommerceCustomer.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceCustomerAddresses.ts b/src/gen/models/EcommerceCustomerAddresses.ts index f812c842c..cf9685513 100644 --- a/src/gen/models/EcommerceCustomerAddresses.ts +++ b/src/gen/models/EcommerceCustomerAddresses.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceCustomersFilter.ts b/src/gen/models/EcommerceCustomersFilter.ts index 0d99ac92e..59f63eac2 100644 --- a/src/gen/models/EcommerceCustomersFilter.ts +++ b/src/gen/models/EcommerceCustomersFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceDiscount.ts b/src/gen/models/EcommerceDiscount.ts index 356a80412..550761041 100644 --- a/src/gen/models/EcommerceDiscount.ts +++ b/src/gen/models/EcommerceDiscount.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceOrder.ts b/src/gen/models/EcommerceOrder.ts index a56fd5e37..2086b00f6 100644 --- a/src/gen/models/EcommerceOrder.ts +++ b/src/gen/models/EcommerceOrder.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceOrderLineItem.ts b/src/gen/models/EcommerceOrderLineItem.ts index 812314b94..c4565e9cc 100644 --- a/src/gen/models/EcommerceOrderLineItem.ts +++ b/src/gen/models/EcommerceOrderLineItem.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceOrderStatus.ts b/src/gen/models/EcommerceOrderStatus.ts index 64dedb1cf..83893a90b 100644 --- a/src/gen/models/EcommerceOrderStatus.ts +++ b/src/gen/models/EcommerceOrderStatus.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceOrdersFilter.ts b/src/gen/models/EcommerceOrdersFilter.ts index cb2199b8a..ee0741242 100644 --- a/src/gen/models/EcommerceOrdersFilter.ts +++ b/src/gen/models/EcommerceOrdersFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceProduct.ts b/src/gen/models/EcommerceProduct.ts index 226e6b461..21488de13 100644 --- a/src/gen/models/EcommerceProduct.ts +++ b/src/gen/models/EcommerceProduct.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceProductCategories.ts b/src/gen/models/EcommerceProductCategories.ts index b7d380f77..3da2648f4 100644 --- a/src/gen/models/EcommerceProductCategories.ts +++ b/src/gen/models/EcommerceProductCategories.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceProductImages.ts b/src/gen/models/EcommerceProductImages.ts index ba3b62fcb..4757f8aa3 100644 --- a/src/gen/models/EcommerceProductImages.ts +++ b/src/gen/models/EcommerceProductImages.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceProductImages1.ts b/src/gen/models/EcommerceProductImages1.ts index 3ff354972..f543e9ef3 100644 --- a/src/gen/models/EcommerceProductImages1.ts +++ b/src/gen/models/EcommerceProductImages1.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceProductOptions.ts b/src/gen/models/EcommerceProductOptions.ts index 2663561c9..fa146ba2b 100644 --- a/src/gen/models/EcommerceProductOptions.ts +++ b/src/gen/models/EcommerceProductOptions.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceProductOptions1.ts b/src/gen/models/EcommerceProductOptions1.ts index b80e5c4d5..e3d181956 100644 --- a/src/gen/models/EcommerceProductOptions1.ts +++ b/src/gen/models/EcommerceProductOptions1.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceProductVariants.ts b/src/gen/models/EcommerceProductVariants.ts index 839d41b83..301ac6ae2 100644 --- a/src/gen/models/EcommerceProductVariants.ts +++ b/src/gen/models/EcommerceProductVariants.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EcommerceStore.ts b/src/gen/models/EcommerceStore.ts index 54f514bec..12dc753b3 100644 --- a/src/gen/models/EcommerceStore.ts +++ b/src/gen/models/EcommerceStore.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Email.ts b/src/gen/models/Email.ts index b2e32ddd9..f1a53fa8c 100644 --- a/src/gen/models/Email.ts +++ b/src/gen/models/Email.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Employee.ts b/src/gen/models/Employee.ts index fe67c52be..32f62a15a 100644 --- a/src/gen/models/Employee.ts +++ b/src/gen/models/Employee.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmployeeCompensation.ts b/src/gen/models/EmployeeCompensation.ts index 706eda9cd..ebf5128cb 100644 --- a/src/gen/models/EmployeeCompensation.ts +++ b/src/gen/models/EmployeeCompensation.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmployeeEmploymentRole.ts b/src/gen/models/EmployeeEmploymentRole.ts index fbd76abad..2a875033c 100644 --- a/src/gen/models/EmployeeEmploymentRole.ts +++ b/src/gen/models/EmployeeEmploymentRole.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmployeeJob.ts b/src/gen/models/EmployeeJob.ts index 3386c4beb..3dad08eee 100644 --- a/src/gen/models/EmployeeJob.ts +++ b/src/gen/models/EmployeeJob.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmployeeList.ts b/src/gen/models/EmployeeList.ts index 8da8f02a4..edd1a2443 100644 --- a/src/gen/models/EmployeeList.ts +++ b/src/gen/models/EmployeeList.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmployeeManager.ts b/src/gen/models/EmployeeManager.ts index 6e1011dd3..962b8a02d 100644 --- a/src/gen/models/EmployeeManager.ts +++ b/src/gen/models/EmployeeManager.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmployeePayroll.ts b/src/gen/models/EmployeePayroll.ts index 97e7ae784..aa4ae15be 100644 --- a/src/gen/models/EmployeePayroll.ts +++ b/src/gen/models/EmployeePayroll.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmployeeSchedules.ts b/src/gen/models/EmployeeSchedules.ts index c70331d46..e35d87707 100644 --- a/src/gen/models/EmployeeSchedules.ts +++ b/src/gen/models/EmployeeSchedules.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmployeesFilter.ts b/src/gen/models/EmployeesFilter.ts index 0cbbb9f9b..ab0286689 100644 --- a/src/gen/models/EmployeesFilter.ts +++ b/src/gen/models/EmployeesFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmployeesSort.ts b/src/gen/models/EmployeesSort.ts index c680b6b63..8f8eda528 100644 --- a/src/gen/models/EmployeesSort.ts +++ b/src/gen/models/EmployeesSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/EmploymentStatus.ts b/src/gen/models/EmploymentStatus.ts index 6a652454f..d9e0b14fb 100644 --- a/src/gen/models/EmploymentStatus.ts +++ b/src/gen/models/EmploymentStatus.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ExecuteWebhookResponse.ts b/src/gen/models/ExecuteWebhookResponse.ts index 3d1c09765..3e1ba3e9c 100644 --- a/src/gen/models/ExecuteWebhookResponse.ts +++ b/src/gen/models/ExecuteWebhookResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/FileStorageEventType.ts b/src/gen/models/FileStorageEventType.ts index 49f0df81b..dbbe686e3 100644 --- a/src/gen/models/FileStorageEventType.ts +++ b/src/gen/models/FileStorageEventType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/FileType.ts b/src/gen/models/FileType.ts index db679024d..ce627b409 100644 --- a/src/gen/models/FileType.ts +++ b/src/gen/models/FileType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/FilesFilter.ts b/src/gen/models/FilesFilter.ts index 0e30c81dd..0e7a722cf 100644 --- a/src/gen/models/FilesFilter.ts +++ b/src/gen/models/FilesFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/FilesSearch.ts b/src/gen/models/FilesSearch.ts index fe80d6417..2521284bc 100644 --- a/src/gen/models/FilesSearch.ts +++ b/src/gen/models/FilesSearch.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/FilesSort.ts b/src/gen/models/FilesSort.ts index 3b5cf5125..c3b7a43e8 100644 --- a/src/gen/models/FilesSort.ts +++ b/src/gen/models/FilesSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Folder.ts b/src/gen/models/Folder.ts index d4d166c44..c6eeeceed 100644 --- a/src/gen/models/Folder.ts +++ b/src/gen/models/Folder.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/FormField.ts b/src/gen/models/FormField.ts index f177525f9..a29bf42ee 100644 --- a/src/gen/models/FormField.ts +++ b/src/gen/models/FormField.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/FormFieldOption.ts b/src/gen/models/FormFieldOption.ts index c9d52d142..bf845202f 100644 --- a/src/gen/models/FormFieldOption.ts +++ b/src/gen/models/FormFieldOption.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/FormFieldOptionGroup.ts b/src/gen/models/FormFieldOptionGroup.ts index 776703b0b..8cfda0ad3 100644 --- a/src/gen/models/FormFieldOptionGroup.ts +++ b/src/gen/models/FormFieldOptionGroup.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Gender.ts b/src/gen/models/Gender.ts index e2acf2285..9123c2625 100644 --- a/src/gen/models/Gender.ts +++ b/src/gen/models/Gender.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetActivitiesResponse.ts b/src/gen/models/GetActivitiesResponse.ts index 5c1774357..daa2a27cf 100644 --- a/src/gen/models/GetActivitiesResponse.ts +++ b/src/gen/models/GetActivitiesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetActivityResponse.ts b/src/gen/models/GetActivityResponse.ts index fee115a31..f2e0aa752 100644 --- a/src/gen/models/GetActivityResponse.ts +++ b/src/gen/models/GetActivityResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetApiResourceCoverageResponse.ts b/src/gen/models/GetApiResourceCoverageResponse.ts index ab2860a58..dd9339f28 100644 --- a/src/gen/models/GetApiResourceCoverageResponse.ts +++ b/src/gen/models/GetApiResourceCoverageResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetApiResourceResponse.ts b/src/gen/models/GetApiResourceResponse.ts index 35ad34530..82f6dabcc 100644 --- a/src/gen/models/GetApiResourceResponse.ts +++ b/src/gen/models/GetApiResourceResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetApiResponse.ts b/src/gen/models/GetApiResponse.ts index c88b4eedf..fa4dabb6d 100644 --- a/src/gen/models/GetApiResponse.ts +++ b/src/gen/models/GetApiResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetApisResponse.ts b/src/gen/models/GetApisResponse.ts index 970462305..e94b57026 100644 --- a/src/gen/models/GetApisResponse.ts +++ b/src/gen/models/GetApisResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetApplicantResponse.ts b/src/gen/models/GetApplicantResponse.ts index 74c3fb13e..866fb2a4a 100644 --- a/src/gen/models/GetApplicantResponse.ts +++ b/src/gen/models/GetApplicantResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetApplicantsResponse.ts b/src/gen/models/GetApplicantsResponse.ts index 047dd42a5..5e2c1752f 100644 --- a/src/gen/models/GetApplicantsResponse.ts +++ b/src/gen/models/GetApplicantsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetApplicationResponse.ts b/src/gen/models/GetApplicationResponse.ts index 42af5f72f..50bcc0398 100644 --- a/src/gen/models/GetApplicationResponse.ts +++ b/src/gen/models/GetApplicationResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetApplicationsResponse.ts b/src/gen/models/GetApplicationsResponse.ts index 4cb3d4476..a4a6bac39 100644 --- a/src/gen/models/GetApplicationsResponse.ts +++ b/src/gen/models/GetApplicationsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetBalanceSheetResponse.ts b/src/gen/models/GetBalanceSheetResponse.ts index 983d3a6fc..470444850 100644 --- a/src/gen/models/GetBalanceSheetResponse.ts +++ b/src/gen/models/GetBalanceSheetResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetBillResponse.ts b/src/gen/models/GetBillResponse.ts index 8aa4dc76f..1e2a40162 100644 --- a/src/gen/models/GetBillResponse.ts +++ b/src/gen/models/GetBillResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetBillsResponse.ts b/src/gen/models/GetBillsResponse.ts index be6e00f62..1bd59c3a4 100644 --- a/src/gen/models/GetBillsResponse.ts +++ b/src/gen/models/GetBillsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCollectionResponse.ts b/src/gen/models/GetCollectionResponse.ts index 996d96bc4..e843781a0 100644 --- a/src/gen/models/GetCollectionResponse.ts +++ b/src/gen/models/GetCollectionResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCollectionTagsResponse.ts b/src/gen/models/GetCollectionTagsResponse.ts index 672f88e5a..ac482976c 100644 --- a/src/gen/models/GetCollectionTagsResponse.ts +++ b/src/gen/models/GetCollectionTagsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCollectionUserResponse.ts b/src/gen/models/GetCollectionUserResponse.ts index a6fedf4b4..c6503f8be 100644 --- a/src/gen/models/GetCollectionUserResponse.ts +++ b/src/gen/models/GetCollectionUserResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCollectionUsersResponse.ts b/src/gen/models/GetCollectionUsersResponse.ts index 6bc4f6332..6e480f6a0 100644 --- a/src/gen/models/GetCollectionUsersResponse.ts +++ b/src/gen/models/GetCollectionUsersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCollectionsResponse.ts b/src/gen/models/GetCollectionsResponse.ts index 11a82859e..b2e250cac 100644 --- a/src/gen/models/GetCollectionsResponse.ts +++ b/src/gen/models/GetCollectionsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCommentResponse.ts b/src/gen/models/GetCommentResponse.ts index 64df4e1a4..053c7b882 100644 --- a/src/gen/models/GetCommentResponse.ts +++ b/src/gen/models/GetCommentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCommentsResponse.ts b/src/gen/models/GetCommentsResponse.ts index b8ce6212f..914a40438 100644 --- a/src/gen/models/GetCommentsResponse.ts +++ b/src/gen/models/GetCommentsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCompaniesResponse.ts b/src/gen/models/GetCompaniesResponse.ts index 962fb9250..a4f132b29 100644 --- a/src/gen/models/GetCompaniesResponse.ts +++ b/src/gen/models/GetCompaniesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCompanyInfoResponse.ts b/src/gen/models/GetCompanyInfoResponse.ts index 657a04c32..df39fd4f2 100644 --- a/src/gen/models/GetCompanyInfoResponse.ts +++ b/src/gen/models/GetCompanyInfoResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCompanyResponse.ts b/src/gen/models/GetCompanyResponse.ts index 851266d79..124e3f655 100644 --- a/src/gen/models/GetCompanyResponse.ts +++ b/src/gen/models/GetCompanyResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConnectionResponse.ts b/src/gen/models/GetConnectionResponse.ts index dfa22bb44..4f93ad218 100644 --- a/src/gen/models/GetConnectionResponse.ts +++ b/src/gen/models/GetConnectionResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConnectionsResponse.ts b/src/gen/models/GetConnectionsResponse.ts index a94aaf8c9..bdbc786e4 100644 --- a/src/gen/models/GetConnectionsResponse.ts +++ b/src/gen/models/GetConnectionsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConnectorResourceExampleResponse.ts b/src/gen/models/GetConnectorResourceExampleResponse.ts index f16bc77af..d76c5c57e 100644 --- a/src/gen/models/GetConnectorResourceExampleResponse.ts +++ b/src/gen/models/GetConnectorResourceExampleResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConnectorResourceExampleResponseData.ts b/src/gen/models/GetConnectorResourceExampleResponseData.ts index 5156e5bd0..afdb327d0 100644 --- a/src/gen/models/GetConnectorResourceExampleResponseData.ts +++ b/src/gen/models/GetConnectorResourceExampleResponseData.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConnectorResourceResponse.ts b/src/gen/models/GetConnectorResourceResponse.ts index 25b63c4a2..4424e69ad 100644 --- a/src/gen/models/GetConnectorResourceResponse.ts +++ b/src/gen/models/GetConnectorResourceResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConnectorResponse.ts b/src/gen/models/GetConnectorResponse.ts index fe28f7b1f..245d3f873 100644 --- a/src/gen/models/GetConnectorResponse.ts +++ b/src/gen/models/GetConnectorResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConnectorsResponse.ts b/src/gen/models/GetConnectorsResponse.ts index eeb013768..1e6356bdf 100644 --- a/src/gen/models/GetConnectorsResponse.ts +++ b/src/gen/models/GetConnectorsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConsumerResponse.ts b/src/gen/models/GetConsumerResponse.ts index 70c3ba4b1..fc3c446b6 100644 --- a/src/gen/models/GetConsumerResponse.ts +++ b/src/gen/models/GetConsumerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConsumersResponse.ts b/src/gen/models/GetConsumersResponse.ts index ea25e89f9..247b957d8 100644 --- a/src/gen/models/GetConsumersResponse.ts +++ b/src/gen/models/GetConsumersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetConsumersResponseData.ts b/src/gen/models/GetConsumersResponseData.ts index 7bea57906..ae6ce4d58 100644 --- a/src/gen/models/GetConsumersResponseData.ts +++ b/src/gen/models/GetConsumersResponseData.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetContactResponse.ts b/src/gen/models/GetContactResponse.ts index cbf703f83..82ee1f970 100644 --- a/src/gen/models/GetContactResponse.ts +++ b/src/gen/models/GetContactResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetContactsResponse.ts b/src/gen/models/GetContactsResponse.ts index d81b93324..cfab88867 100644 --- a/src/gen/models/GetContactsResponse.ts +++ b/src/gen/models/GetContactsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCreditNoteResponse.ts b/src/gen/models/GetCreditNoteResponse.ts index a686fb9fe..7df0e23d2 100644 --- a/src/gen/models/GetCreditNoteResponse.ts +++ b/src/gen/models/GetCreditNoteResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCreditNotesResponse.ts b/src/gen/models/GetCreditNotesResponse.ts index 5c67cf78a..1b9b31eb7 100644 --- a/src/gen/models/GetCreditNotesResponse.ts +++ b/src/gen/models/GetCreditNotesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCustomFieldsResponse.ts b/src/gen/models/GetCustomFieldsResponse.ts index db0881d05..70c6b3d8b 100644 --- a/src/gen/models/GetCustomFieldsResponse.ts +++ b/src/gen/models/GetCustomFieldsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCustomMappingResponse.ts b/src/gen/models/GetCustomMappingResponse.ts index 38b06867b..f230f5d09 100644 --- a/src/gen/models/GetCustomMappingResponse.ts +++ b/src/gen/models/GetCustomMappingResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCustomerResponse.ts b/src/gen/models/GetCustomerResponse.ts index c532142b5..3a724ccab 100644 --- a/src/gen/models/GetCustomerResponse.ts +++ b/src/gen/models/GetCustomerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetCustomersResponse.ts b/src/gen/models/GetCustomersResponse.ts index 05d3497af..f0db05263 100644 --- a/src/gen/models/GetCustomersResponse.ts +++ b/src/gen/models/GetCustomersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetDepartmentResponse.ts b/src/gen/models/GetDepartmentResponse.ts index 785d642c5..7d19107b4 100644 --- a/src/gen/models/GetDepartmentResponse.ts +++ b/src/gen/models/GetDepartmentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetDepartmentsResponse.ts b/src/gen/models/GetDepartmentsResponse.ts index bf4e8da84..c2fab48c2 100644 --- a/src/gen/models/GetDepartmentsResponse.ts +++ b/src/gen/models/GetDepartmentsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetDriveGroupResponse.ts b/src/gen/models/GetDriveGroupResponse.ts index 39140c24b..674057d06 100644 --- a/src/gen/models/GetDriveGroupResponse.ts +++ b/src/gen/models/GetDriveGroupResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetDriveGroupsResponse.ts b/src/gen/models/GetDriveGroupsResponse.ts index 32f44ed40..dd2eab922 100644 --- a/src/gen/models/GetDriveGroupsResponse.ts +++ b/src/gen/models/GetDriveGroupsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetDriveResponse.ts b/src/gen/models/GetDriveResponse.ts index e25fbbdf2..5f94739da 100644 --- a/src/gen/models/GetDriveResponse.ts +++ b/src/gen/models/GetDriveResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetDrivesResponse.ts b/src/gen/models/GetDrivesResponse.ts index 4aa61fb55..a1879847f 100644 --- a/src/gen/models/GetDrivesResponse.ts +++ b/src/gen/models/GetDrivesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetEcommerceCustomerResponse.ts b/src/gen/models/GetEcommerceCustomerResponse.ts index a641b2153..5a5cbd3bd 100644 --- a/src/gen/models/GetEcommerceCustomerResponse.ts +++ b/src/gen/models/GetEcommerceCustomerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetEcommerceCustomersResponse.ts b/src/gen/models/GetEcommerceCustomersResponse.ts index d8957f74a..3e9db44cd 100644 --- a/src/gen/models/GetEcommerceCustomersResponse.ts +++ b/src/gen/models/GetEcommerceCustomersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetEcommerceOrderResponse.ts b/src/gen/models/GetEcommerceOrderResponse.ts index 808d0ca97..db5742d73 100644 --- a/src/gen/models/GetEcommerceOrderResponse.ts +++ b/src/gen/models/GetEcommerceOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetEcommerceOrdersResponse.ts b/src/gen/models/GetEcommerceOrdersResponse.ts index 5f516b56e..a519c71bc 100644 --- a/src/gen/models/GetEcommerceOrdersResponse.ts +++ b/src/gen/models/GetEcommerceOrdersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetEmployeePayrollResponse.ts b/src/gen/models/GetEmployeePayrollResponse.ts index 66990dec5..7f1d396f5 100644 --- a/src/gen/models/GetEmployeePayrollResponse.ts +++ b/src/gen/models/GetEmployeePayrollResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetEmployeePayrollsResponse.ts b/src/gen/models/GetEmployeePayrollsResponse.ts index 5b030711f..8b49e1f6b 100644 --- a/src/gen/models/GetEmployeePayrollsResponse.ts +++ b/src/gen/models/GetEmployeePayrollsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetEmployeeResponse.ts b/src/gen/models/GetEmployeeResponse.ts index e06ba66a6..339edcbc6 100644 --- a/src/gen/models/GetEmployeeResponse.ts +++ b/src/gen/models/GetEmployeeResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetEmployeeSchedulesResponse.ts b/src/gen/models/GetEmployeeSchedulesResponse.ts index 6edcd18d9..3d53dd4dd 100644 --- a/src/gen/models/GetEmployeeSchedulesResponse.ts +++ b/src/gen/models/GetEmployeeSchedulesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetEmployeesResponse.ts b/src/gen/models/GetEmployeesResponse.ts index d6d469d1c..80d804c54 100644 --- a/src/gen/models/GetEmployeesResponse.ts +++ b/src/gen/models/GetEmployeesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetFileResponse.ts b/src/gen/models/GetFileResponse.ts index 1adc07962..6d7d7a65a 100644 --- a/src/gen/models/GetFileResponse.ts +++ b/src/gen/models/GetFileResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetFilesResponse.ts b/src/gen/models/GetFilesResponse.ts index f2742c8e1..d17245fe1 100644 --- a/src/gen/models/GetFilesResponse.ts +++ b/src/gen/models/GetFilesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetFolderResponse.ts b/src/gen/models/GetFolderResponse.ts index 7c7a8209f..46cd8d363 100644 --- a/src/gen/models/GetFolderResponse.ts +++ b/src/gen/models/GetFolderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetFoldersResponse.ts b/src/gen/models/GetFoldersResponse.ts index 885f66f82..549358f54 100644 --- a/src/gen/models/GetFoldersResponse.ts +++ b/src/gen/models/GetFoldersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetHrisCompaniesResponse.ts b/src/gen/models/GetHrisCompaniesResponse.ts index 11a73cffa..df416c284 100644 --- a/src/gen/models/GetHrisCompaniesResponse.ts +++ b/src/gen/models/GetHrisCompaniesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetHrisCompanyResponse.ts b/src/gen/models/GetHrisCompanyResponse.ts index 83d24a5a6..6e5af92ad 100644 --- a/src/gen/models/GetHrisCompanyResponse.ts +++ b/src/gen/models/GetHrisCompanyResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetHrisJobResponse.ts b/src/gen/models/GetHrisJobResponse.ts index dd2413b70..4709a9297 100644 --- a/src/gen/models/GetHrisJobResponse.ts +++ b/src/gen/models/GetHrisJobResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetHrisJobsResponse.ts b/src/gen/models/GetHrisJobsResponse.ts index 777629bc7..ab468d251 100644 --- a/src/gen/models/GetHrisJobsResponse.ts +++ b/src/gen/models/GetHrisJobsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetInvoiceItemResponse.ts b/src/gen/models/GetInvoiceItemResponse.ts index aded7f8e5..ee4e9721a 100644 --- a/src/gen/models/GetInvoiceItemResponse.ts +++ b/src/gen/models/GetInvoiceItemResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetInvoiceItemsResponse.ts b/src/gen/models/GetInvoiceItemsResponse.ts index e2059c236..a16cc886a 100644 --- a/src/gen/models/GetInvoiceItemsResponse.ts +++ b/src/gen/models/GetInvoiceItemsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetInvoiceResponse.ts b/src/gen/models/GetInvoiceResponse.ts index e72a63b1e..f9fb9675f 100644 --- a/src/gen/models/GetInvoiceResponse.ts +++ b/src/gen/models/GetInvoiceResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetInvoicesResponse.ts b/src/gen/models/GetInvoicesResponse.ts index 03e35b328..12a529cb4 100644 --- a/src/gen/models/GetInvoicesResponse.ts +++ b/src/gen/models/GetInvoicesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetItemResponse.ts b/src/gen/models/GetItemResponse.ts index 0198fc91c..bb9f5a8e3 100644 --- a/src/gen/models/GetItemResponse.ts +++ b/src/gen/models/GetItemResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetItemsResponse.ts b/src/gen/models/GetItemsResponse.ts index 12ececf77..9ee0a1672 100644 --- a/src/gen/models/GetItemsResponse.ts +++ b/src/gen/models/GetItemsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetJobResponse.ts b/src/gen/models/GetJobResponse.ts index 55ed77547..d9eaaa79c 100644 --- a/src/gen/models/GetJobResponse.ts +++ b/src/gen/models/GetJobResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetJobsResponse.ts b/src/gen/models/GetJobsResponse.ts index eedc2b835..721e3f085 100644 --- a/src/gen/models/GetJobsResponse.ts +++ b/src/gen/models/GetJobsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetJournalEntriesResponse.ts b/src/gen/models/GetJournalEntriesResponse.ts index fea8f56b7..9a47baf77 100644 --- a/src/gen/models/GetJournalEntriesResponse.ts +++ b/src/gen/models/GetJournalEntriesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetJournalEntryResponse.ts b/src/gen/models/GetJournalEntryResponse.ts index 69f01215f..f9c853352 100644 --- a/src/gen/models/GetJournalEntryResponse.ts +++ b/src/gen/models/GetJournalEntryResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetLeadResponse.ts b/src/gen/models/GetLeadResponse.ts index 97e96ec36..b26ae0fb6 100644 --- a/src/gen/models/GetLeadResponse.ts +++ b/src/gen/models/GetLeadResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetLeadsResponse.ts b/src/gen/models/GetLeadsResponse.ts index 714853527..53944bf79 100644 --- a/src/gen/models/GetLeadsResponse.ts +++ b/src/gen/models/GetLeadsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetLedgerAccountResponse.ts b/src/gen/models/GetLedgerAccountResponse.ts index 101d20d71..2b6457dcb 100644 --- a/src/gen/models/GetLedgerAccountResponse.ts +++ b/src/gen/models/GetLedgerAccountResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetLedgerAccountsResponse.ts b/src/gen/models/GetLedgerAccountsResponse.ts index c0deb068f..3fc2208e4 100644 --- a/src/gen/models/GetLedgerAccountsResponse.ts +++ b/src/gen/models/GetLedgerAccountsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetLocationResponse.ts b/src/gen/models/GetLocationResponse.ts index 87b5cec0c..3a3d9fb25 100644 --- a/src/gen/models/GetLocationResponse.ts +++ b/src/gen/models/GetLocationResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetLocationsResponse.ts b/src/gen/models/GetLocationsResponse.ts index 15568c56d..d7fa9017e 100644 --- a/src/gen/models/GetLocationsResponse.ts +++ b/src/gen/models/GetLocationsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetLogsResponse.ts b/src/gen/models/GetLogsResponse.ts index 140c54748..c69593d08 100644 --- a/src/gen/models/GetLogsResponse.ts +++ b/src/gen/models/GetLogsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetMerchantResponse.ts b/src/gen/models/GetMerchantResponse.ts index 7625a151e..94037d8d3 100644 --- a/src/gen/models/GetMerchantResponse.ts +++ b/src/gen/models/GetMerchantResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetMerchantsResponse.ts b/src/gen/models/GetMerchantsResponse.ts index 6ccc59c7a..9dfa128fa 100644 --- a/src/gen/models/GetMerchantsResponse.ts +++ b/src/gen/models/GetMerchantsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetMessageResponse.ts b/src/gen/models/GetMessageResponse.ts index 97f6e71a6..612f8f634 100644 --- a/src/gen/models/GetMessageResponse.ts +++ b/src/gen/models/GetMessageResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetMessagesResponse.ts b/src/gen/models/GetMessagesResponse.ts index 572f8eb7a..815934ac6 100644 --- a/src/gen/models/GetMessagesResponse.ts +++ b/src/gen/models/GetMessagesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetModifierGroupResponse.ts b/src/gen/models/GetModifierGroupResponse.ts index b19047d52..f36050fa1 100644 --- a/src/gen/models/GetModifierGroupResponse.ts +++ b/src/gen/models/GetModifierGroupResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetModifierGroupsResponse.ts b/src/gen/models/GetModifierGroupsResponse.ts index 24fed6f67..1f98c17b6 100644 --- a/src/gen/models/GetModifierGroupsResponse.ts +++ b/src/gen/models/GetModifierGroupsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetModifierResponse.ts b/src/gen/models/GetModifierResponse.ts index bbc463cb8..42a6ba093 100644 --- a/src/gen/models/GetModifierResponse.ts +++ b/src/gen/models/GetModifierResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetModifiersResponse.ts b/src/gen/models/GetModifiersResponse.ts index e2488e325..c477fd39b 100644 --- a/src/gen/models/GetModifiersResponse.ts +++ b/src/gen/models/GetModifiersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetNoteResponse.ts b/src/gen/models/GetNoteResponse.ts index 821e8ad47..4b6219890 100644 --- a/src/gen/models/GetNoteResponse.ts +++ b/src/gen/models/GetNoteResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetNotesResponse.ts b/src/gen/models/GetNotesResponse.ts index a2509c1bd..f10cbd274 100644 --- a/src/gen/models/GetNotesResponse.ts +++ b/src/gen/models/GetNotesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetOpportunitiesResponse.ts b/src/gen/models/GetOpportunitiesResponse.ts index 411a11da4..db5afb3a3 100644 --- a/src/gen/models/GetOpportunitiesResponse.ts +++ b/src/gen/models/GetOpportunitiesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetOpportunityResponse.ts b/src/gen/models/GetOpportunityResponse.ts index 146e41364..6e9eaf82b 100644 --- a/src/gen/models/GetOpportunityResponse.ts +++ b/src/gen/models/GetOpportunityResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetOrderResponse.ts b/src/gen/models/GetOrderResponse.ts index b64e15a9b..e2b099c6f 100644 --- a/src/gen/models/GetOrderResponse.ts +++ b/src/gen/models/GetOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetOrderTypeResponse.ts b/src/gen/models/GetOrderTypeResponse.ts index 456b28f7c..59d812dac 100644 --- a/src/gen/models/GetOrderTypeResponse.ts +++ b/src/gen/models/GetOrderTypeResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetOrderTypesResponse.ts b/src/gen/models/GetOrderTypesResponse.ts index 427c7a704..72a5a34fa 100644 --- a/src/gen/models/GetOrderTypesResponse.ts +++ b/src/gen/models/GetOrderTypesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetOrdersResponse.ts b/src/gen/models/GetOrdersResponse.ts index e8650b664..10f851d37 100644 --- a/src/gen/models/GetOrdersResponse.ts +++ b/src/gen/models/GetOrdersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPaymentResponse.ts b/src/gen/models/GetPaymentResponse.ts index b0921251f..f27ccbc43 100644 --- a/src/gen/models/GetPaymentResponse.ts +++ b/src/gen/models/GetPaymentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPaymentsResponse.ts b/src/gen/models/GetPaymentsResponse.ts index a1582c8b4..25bc999b2 100644 --- a/src/gen/models/GetPaymentsResponse.ts +++ b/src/gen/models/GetPaymentsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPayrollResponse.ts b/src/gen/models/GetPayrollResponse.ts index d6da5f4ab..d8f41fb1a 100644 --- a/src/gen/models/GetPayrollResponse.ts +++ b/src/gen/models/GetPayrollResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPayrollsResponse.ts b/src/gen/models/GetPayrollsResponse.ts index 1fd899d40..546d5894d 100644 --- a/src/gen/models/GetPayrollsResponse.ts +++ b/src/gen/models/GetPayrollsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPipelineResponse.ts b/src/gen/models/GetPipelineResponse.ts index 542f16c7c..a1c6f60af 100644 --- a/src/gen/models/GetPipelineResponse.ts +++ b/src/gen/models/GetPipelineResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPipelinesResponse.ts b/src/gen/models/GetPipelinesResponse.ts index 6acdd3d93..938c1ace5 100644 --- a/src/gen/models/GetPipelinesResponse.ts +++ b/src/gen/models/GetPipelinesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPosPaymentResponse.ts b/src/gen/models/GetPosPaymentResponse.ts index ed7cb7df5..a26e30e5c 100644 --- a/src/gen/models/GetPosPaymentResponse.ts +++ b/src/gen/models/GetPosPaymentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPosPaymentsResponse.ts b/src/gen/models/GetPosPaymentsResponse.ts index d1446bb21..585a19d76 100644 --- a/src/gen/models/GetPosPaymentsResponse.ts +++ b/src/gen/models/GetPosPaymentsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetProductResponse.ts b/src/gen/models/GetProductResponse.ts index b517668f0..3c90b2f3b 100644 --- a/src/gen/models/GetProductResponse.ts +++ b/src/gen/models/GetProductResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetProductsResponse.ts b/src/gen/models/GetProductsResponse.ts index a813b80bd..0b4e02d2c 100644 --- a/src/gen/models/GetProductsResponse.ts +++ b/src/gen/models/GetProductsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetProfitAndLossResponse.ts b/src/gen/models/GetProfitAndLossResponse.ts index 93a01c885..0df14c020 100644 --- a/src/gen/models/GetProfitAndLossResponse.ts +++ b/src/gen/models/GetProfitAndLossResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPurchaseOrderResponse.ts b/src/gen/models/GetPurchaseOrderResponse.ts index 91b381cba..a4dc4f66b 100644 --- a/src/gen/models/GetPurchaseOrderResponse.ts +++ b/src/gen/models/GetPurchaseOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetPurchaseOrdersResponse.ts b/src/gen/models/GetPurchaseOrdersResponse.ts index 9f84731c1..deccebe0c 100644 --- a/src/gen/models/GetPurchaseOrdersResponse.ts +++ b/src/gen/models/GetPurchaseOrdersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetResourceExampleResponse.ts b/src/gen/models/GetResourceExampleResponse.ts index ec05b0615..1db2b9d7f 100644 --- a/src/gen/models/GetResourceExampleResponse.ts +++ b/src/gen/models/GetResourceExampleResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetSharedLinkResponse.ts b/src/gen/models/GetSharedLinkResponse.ts index 388718aed..75cdf9387 100644 --- a/src/gen/models/GetSharedLinkResponse.ts +++ b/src/gen/models/GetSharedLinkResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetSharedLinksResponse.ts b/src/gen/models/GetSharedLinksResponse.ts index acedfd10b..0caa6371a 100644 --- a/src/gen/models/GetSharedLinksResponse.ts +++ b/src/gen/models/GetSharedLinksResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetStoreResponse.ts b/src/gen/models/GetStoreResponse.ts index 9b82943fd..ab377db2d 100644 --- a/src/gen/models/GetStoreResponse.ts +++ b/src/gen/models/GetStoreResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetStoresResponse.ts b/src/gen/models/GetStoresResponse.ts index 4b6a07e25..907429604 100644 --- a/src/gen/models/GetStoresResponse.ts +++ b/src/gen/models/GetStoresResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetSupplierResponse.ts b/src/gen/models/GetSupplierResponse.ts index c9da83667..196e9dda3 100644 --- a/src/gen/models/GetSupplierResponse.ts +++ b/src/gen/models/GetSupplierResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetSuppliersResponse.ts b/src/gen/models/GetSuppliersResponse.ts index 66a77e5ca..0ea4d1393 100644 --- a/src/gen/models/GetSuppliersResponse.ts +++ b/src/gen/models/GetSuppliersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetTaxRateResponse.ts b/src/gen/models/GetTaxRateResponse.ts index 4915b5d44..72be006a7 100644 --- a/src/gen/models/GetTaxRateResponse.ts +++ b/src/gen/models/GetTaxRateResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetTaxRatesResponse.ts b/src/gen/models/GetTaxRatesResponse.ts index 10a57ead5..86923fa6e 100644 --- a/src/gen/models/GetTaxRatesResponse.ts +++ b/src/gen/models/GetTaxRatesResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetTenderResponse.ts b/src/gen/models/GetTenderResponse.ts index 4a0884390..3df409f37 100644 --- a/src/gen/models/GetTenderResponse.ts +++ b/src/gen/models/GetTenderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetTendersResponse.ts b/src/gen/models/GetTendersResponse.ts index 59cd30262..df3775eb0 100644 --- a/src/gen/models/GetTendersResponse.ts +++ b/src/gen/models/GetTendersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetTicketResponse.ts b/src/gen/models/GetTicketResponse.ts index 2bce38266..f52644d8f 100644 --- a/src/gen/models/GetTicketResponse.ts +++ b/src/gen/models/GetTicketResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetTicketsResponse.ts b/src/gen/models/GetTicketsResponse.ts index 89e3831cd..f0a2d072e 100644 --- a/src/gen/models/GetTicketsResponse.ts +++ b/src/gen/models/GetTicketsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetTimeOffRequestResponse.ts b/src/gen/models/GetTimeOffRequestResponse.ts index ace1db821..24558978f 100644 --- a/src/gen/models/GetTimeOffRequestResponse.ts +++ b/src/gen/models/GetTimeOffRequestResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetTimeOffRequestsResponse.ts b/src/gen/models/GetTimeOffRequestsResponse.ts index e00bbee93..426059a1c 100644 --- a/src/gen/models/GetTimeOffRequestsResponse.ts +++ b/src/gen/models/GetTimeOffRequestsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetUploadSessionResponse.ts b/src/gen/models/GetUploadSessionResponse.ts index facd3b5e6..98565c9f8 100644 --- a/src/gen/models/GetUploadSessionResponse.ts +++ b/src/gen/models/GetUploadSessionResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetUserResponse.ts b/src/gen/models/GetUserResponse.ts index 75ccab741..cdeb5c329 100644 --- a/src/gen/models/GetUserResponse.ts +++ b/src/gen/models/GetUserResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetUsersResponse.ts b/src/gen/models/GetUsersResponse.ts index f115d8c4f..e1c7a902a 100644 --- a/src/gen/models/GetUsersResponse.ts +++ b/src/gen/models/GetUsersResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetWebhookEventLogsResponse.ts b/src/gen/models/GetWebhookEventLogsResponse.ts index 73af35e64..6a09ce054 100644 --- a/src/gen/models/GetWebhookEventLogsResponse.ts +++ b/src/gen/models/GetWebhookEventLogsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetWebhookResponse.ts b/src/gen/models/GetWebhookResponse.ts index b0b092beb..96b36a131 100644 --- a/src/gen/models/GetWebhookResponse.ts +++ b/src/gen/models/GetWebhookResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/GetWebhooksResponse.ts b/src/gen/models/GetWebhooksResponse.ts index 26c29f40e..3d16cdf12 100644 --- a/src/gen/models/GetWebhooksResponse.ts +++ b/src/gen/models/GetWebhooksResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/HrisCompany.ts b/src/gen/models/HrisCompany.ts index 9006eb166..5b2d76e1c 100644 --- a/src/gen/models/HrisCompany.ts +++ b/src/gen/models/HrisCompany.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/HrisEventType.ts b/src/gen/models/HrisEventType.ts index 10f8f1ac6..4d73834a5 100644 --- a/src/gen/models/HrisEventType.ts +++ b/src/gen/models/HrisEventType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/HrisJob.ts b/src/gen/models/HrisJob.ts index ccd0539fc..12f8626d6 100644 --- a/src/gen/models/HrisJob.ts +++ b/src/gen/models/HrisJob.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/HrisJobLocation.ts b/src/gen/models/HrisJobLocation.ts index a05b85f55..742b191fc 100644 --- a/src/gen/models/HrisJobLocation.ts +++ b/src/gen/models/HrisJobLocation.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/HrisJobs.ts b/src/gen/models/HrisJobs.ts index 633c9347b..1e3613109 100644 --- a/src/gen/models/HrisJobs.ts +++ b/src/gen/models/HrisJobs.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/IntegrationState.ts b/src/gen/models/IntegrationState.ts index c66199f89..46fdb7b97 100644 --- a/src/gen/models/IntegrationState.ts +++ b/src/gen/models/IntegrationState.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Invoice.ts b/src/gen/models/Invoice.ts index 6a58f3f52..6377ce5ca 100644 --- a/src/gen/models/Invoice.ts +++ b/src/gen/models/Invoice.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/InvoiceItem.ts b/src/gen/models/InvoiceItem.ts index 2fb81c277..b4a9a6e02 100644 --- a/src/gen/models/InvoiceItem.ts +++ b/src/gen/models/InvoiceItem.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/InvoiceItemSalesDetails.ts b/src/gen/models/InvoiceItemSalesDetails.ts index 939d9fba5..66b3fc357 100644 --- a/src/gen/models/InvoiceItemSalesDetails.ts +++ b/src/gen/models/InvoiceItemSalesDetails.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/InvoiceItemsFilter.ts b/src/gen/models/InvoiceItemsFilter.ts index 8b90d2365..10be176c0 100644 --- a/src/gen/models/InvoiceItemsFilter.ts +++ b/src/gen/models/InvoiceItemsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/InvoiceLineItem.ts b/src/gen/models/InvoiceLineItem.ts index 9639da70e..f906b007c 100644 --- a/src/gen/models/InvoiceLineItem.ts +++ b/src/gen/models/InvoiceLineItem.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/InvoiceResponse.ts b/src/gen/models/InvoiceResponse.ts index a0d52ba5b..30fd08eec 100644 --- a/src/gen/models/InvoiceResponse.ts +++ b/src/gen/models/InvoiceResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/InvoicesSort.ts b/src/gen/models/InvoicesSort.ts index bd2be6227..83e16bce3 100644 --- a/src/gen/models/InvoicesSort.ts +++ b/src/gen/models/InvoicesSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/IssueTrackingEventType.ts b/src/gen/models/IssueTrackingEventType.ts index 7d63bbc45..6ea9fae84 100644 --- a/src/gen/models/IssueTrackingEventType.ts +++ b/src/gen/models/IssueTrackingEventType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/IssuesFilter.ts b/src/gen/models/IssuesFilter.ts index a943e1571..376a7b84a 100644 --- a/src/gen/models/IssuesFilter.ts +++ b/src/gen/models/IssuesFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Item.ts b/src/gen/models/Item.ts index af7db87c3..2c7ad3479 100644 --- a/src/gen/models/Item.ts +++ b/src/gen/models/Item.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Job.ts b/src/gen/models/Job.ts index 8f687059a..db482ea85 100644 --- a/src/gen/models/Job.ts +++ b/src/gen/models/Job.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/JobLinks.ts b/src/gen/models/JobLinks.ts index 2fb799482..485efd873 100644 --- a/src/gen/models/JobLinks.ts +++ b/src/gen/models/JobLinks.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/JobSalary.ts b/src/gen/models/JobSalary.ts index a2da1ce82..3417f9803 100644 --- a/src/gen/models/JobSalary.ts +++ b/src/gen/models/JobSalary.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/JobStatus.ts b/src/gen/models/JobStatus.ts index 9e9f7acb8..c915df23f 100644 --- a/src/gen/models/JobStatus.ts +++ b/src/gen/models/JobStatus.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/JournalEntry.ts b/src/gen/models/JournalEntry.ts index 1d4f439bb..5345c1958 100644 --- a/src/gen/models/JournalEntry.ts +++ b/src/gen/models/JournalEntry.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/JournalEntryLineItem.ts b/src/gen/models/JournalEntryLineItem.ts index a39d10808..737c65c48 100644 --- a/src/gen/models/JournalEntryLineItem.ts +++ b/src/gen/models/JournalEntryLineItem.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Lead.ts b/src/gen/models/Lead.ts index 1df779eff..000e3a316 100644 --- a/src/gen/models/Lead.ts +++ b/src/gen/models/Lead.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LeadEventType.ts b/src/gen/models/LeadEventType.ts index 4c5f5eef3..599473466 100644 --- a/src/gen/models/LeadEventType.ts +++ b/src/gen/models/LeadEventType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LeadsFilter.ts b/src/gen/models/LeadsFilter.ts index 471c3b608..858986e9e 100644 --- a/src/gen/models/LeadsFilter.ts +++ b/src/gen/models/LeadsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LeadsSort.ts b/src/gen/models/LeadsSort.ts index b37313d96..fbe4143c7 100644 --- a/src/gen/models/LeadsSort.ts +++ b/src/gen/models/LeadsSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LedgerAccount.ts b/src/gen/models/LedgerAccount.ts index cffb6e240..e610f7fe5 100644 --- a/src/gen/models/LedgerAccount.ts +++ b/src/gen/models/LedgerAccount.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LedgerAccountCategories.ts b/src/gen/models/LedgerAccountCategories.ts index fc011e231..68419c968 100644 --- a/src/gen/models/LedgerAccountCategories.ts +++ b/src/gen/models/LedgerAccountCategories.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LedgerAccountParentAccount.ts b/src/gen/models/LedgerAccountParentAccount.ts index 837786b8f..c4cb9627b 100644 --- a/src/gen/models/LedgerAccountParentAccount.ts +++ b/src/gen/models/LedgerAccountParentAccount.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LedgerAccounts.ts b/src/gen/models/LedgerAccounts.ts index db1781901..22c0d487c 100644 --- a/src/gen/models/LedgerAccounts.ts +++ b/src/gen/models/LedgerAccounts.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedConnectorResource.ts b/src/gen/models/LinkedConnectorResource.ts index 6a3d4070b..4ca3249be 100644 --- a/src/gen/models/LinkedConnectorResource.ts +++ b/src/gen/models/LinkedConnectorResource.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedCustomer.ts b/src/gen/models/LinkedCustomer.ts index 6cfb7be3c..94f38031a 100644 --- a/src/gen/models/LinkedCustomer.ts +++ b/src/gen/models/LinkedCustomer.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedEcommerceCustomer.ts b/src/gen/models/LinkedEcommerceCustomer.ts index d87f52468..891be8f58 100644 --- a/src/gen/models/LinkedEcommerceCustomer.ts +++ b/src/gen/models/LinkedEcommerceCustomer.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedEcommerceOrder.ts b/src/gen/models/LinkedEcommerceOrder.ts index 31b015d8f..fec940aba 100644 --- a/src/gen/models/LinkedEcommerceOrder.ts +++ b/src/gen/models/LinkedEcommerceOrder.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedFolder.ts b/src/gen/models/LinkedFolder.ts index 6c985a86d..057559765 100644 --- a/src/gen/models/LinkedFolder.ts +++ b/src/gen/models/LinkedFolder.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedInvoiceItem.ts b/src/gen/models/LinkedInvoiceItem.ts index 299c26925..54a156175 100644 --- a/src/gen/models/LinkedInvoiceItem.ts +++ b/src/gen/models/LinkedInvoiceItem.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedLedgerAccount.ts b/src/gen/models/LinkedLedgerAccount.ts index 65d4a197d..d714b5e85 100644 --- a/src/gen/models/LinkedLedgerAccount.ts +++ b/src/gen/models/LinkedLedgerAccount.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedParentCustomer.ts b/src/gen/models/LinkedParentCustomer.ts index 94f16cfea..4d6086ad4 100644 --- a/src/gen/models/LinkedParentCustomer.ts +++ b/src/gen/models/LinkedParentCustomer.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedSupplier.ts b/src/gen/models/LinkedSupplier.ts index ac73b3ccb..57eaa66e6 100644 --- a/src/gen/models/LinkedSupplier.ts +++ b/src/gen/models/LinkedSupplier.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedTaxRate.ts b/src/gen/models/LinkedTaxRate.ts index 49bdb2b05..57309258e 100644 --- a/src/gen/models/LinkedTaxRate.ts +++ b/src/gen/models/LinkedTaxRate.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LinkedTrackingCategory.ts b/src/gen/models/LinkedTrackingCategory.ts index e05a11516..14d46f133 100644 --- a/src/gen/models/LinkedTrackingCategory.ts +++ b/src/gen/models/LinkedTrackingCategory.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Links.ts b/src/gen/models/Links.ts index 0e77bacc6..0b558f0bd 100644 --- a/src/gen/models/Links.ts +++ b/src/gen/models/Links.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Location.ts b/src/gen/models/Location.ts index c7b82bfdd..4542d3515 100644 --- a/src/gen/models/Location.ts +++ b/src/gen/models/Location.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Log.ts b/src/gen/models/Log.ts index de506a161..cec401fb0 100644 --- a/src/gen/models/Log.ts +++ b/src/gen/models/Log.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/LogsFilter.ts b/src/gen/models/LogsFilter.ts index f1be32d66..4822d0f7b 100644 --- a/src/gen/models/LogsFilter.ts +++ b/src/gen/models/LogsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Merchant.ts b/src/gen/models/Merchant.ts index a74df5a38..07d586e3b 100644 --- a/src/gen/models/Merchant.ts +++ b/src/gen/models/Merchant.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Message.ts b/src/gen/models/Message.ts index 6f6d3476d..69b507e90 100644 --- a/src/gen/models/Message.ts +++ b/src/gen/models/Message.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Meta.ts b/src/gen/models/Meta.ts index d0ee02a90..9c2767088 100644 --- a/src/gen/models/Meta.ts +++ b/src/gen/models/Meta.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/MetaCursors.ts b/src/gen/models/MetaCursors.ts index f1d0992ec..0fcf1a738 100644 --- a/src/gen/models/MetaCursors.ts +++ b/src/gen/models/MetaCursors.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ModelError.ts b/src/gen/models/ModelError.ts index d4e9c2810..4920c2a7b 100644 --- a/src/gen/models/ModelError.ts +++ b/src/gen/models/ModelError.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Modifier.ts b/src/gen/models/Modifier.ts index 07c3cdb18..dbe7b2c40 100644 --- a/src/gen/models/Modifier.ts +++ b/src/gen/models/Modifier.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ModifierGroup.ts b/src/gen/models/ModifierGroup.ts index e6ca6ad65..7e3036de9 100644 --- a/src/gen/models/ModifierGroup.ts +++ b/src/gen/models/ModifierGroup.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ModifierGroupFilter.ts b/src/gen/models/ModifierGroupFilter.ts index b740b16a3..d9969b91c 100644 --- a/src/gen/models/ModifierGroupFilter.ts +++ b/src/gen/models/ModifierGroupFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/NotFoundResponse.ts b/src/gen/models/NotFoundResponse.ts index f678651d6..17910f7cf 100644 --- a/src/gen/models/NotFoundResponse.ts +++ b/src/gen/models/NotFoundResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/NotImplementedResponse.ts b/src/gen/models/NotImplementedResponse.ts index 881cd3dcc..a86ed0ace 100644 --- a/src/gen/models/NotImplementedResponse.ts +++ b/src/gen/models/NotImplementedResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Note.ts b/src/gen/models/Note.ts index 82ec4aa40..2aa2497e5 100644 --- a/src/gen/models/Note.ts +++ b/src/gen/models/Note.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OAuthGrantType.ts b/src/gen/models/OAuthGrantType.ts index f8a71600b..53674009a 100644 --- a/src/gen/models/OAuthGrantType.ts +++ b/src/gen/models/OAuthGrantType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Offer.ts b/src/gen/models/Offer.ts index 252e5032a..a2e49115c 100644 --- a/src/gen/models/Offer.ts +++ b/src/gen/models/Offer.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OpportunitiesFilter.ts b/src/gen/models/OpportunitiesFilter.ts index 04d57e9f6..44d3175b8 100644 --- a/src/gen/models/OpportunitiesFilter.ts +++ b/src/gen/models/OpportunitiesFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OpportunitiesSort.ts b/src/gen/models/OpportunitiesSort.ts index 20885f56e..3fe42645d 100644 --- a/src/gen/models/OpportunitiesSort.ts +++ b/src/gen/models/OpportunitiesSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Opportunity.ts b/src/gen/models/Opportunity.ts index b4a118f0e..b900a6146 100644 --- a/src/gen/models/Opportunity.ts +++ b/src/gen/models/Opportunity.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Order.ts b/src/gen/models/Order.ts index 02c168780..77fd299e0 100644 --- a/src/gen/models/Order.ts +++ b/src/gen/models/Order.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderCustomers.ts b/src/gen/models/OrderCustomers.ts index fbea33ced..b8da3f863 100644 --- a/src/gen/models/OrderCustomers.ts +++ b/src/gen/models/OrderCustomers.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderDiscounts.ts b/src/gen/models/OrderDiscounts.ts index bd4e1cb53..941383d6f 100644 --- a/src/gen/models/OrderDiscounts.ts +++ b/src/gen/models/OrderDiscounts.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderFulfillments.ts b/src/gen/models/OrderFulfillments.ts index ddcd7bfef..7ab27f6e3 100644 --- a/src/gen/models/OrderFulfillments.ts +++ b/src/gen/models/OrderFulfillments.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderLineItems.ts b/src/gen/models/OrderLineItems.ts index c9f891c1b..d0e7f08fe 100644 --- a/src/gen/models/OrderLineItems.ts +++ b/src/gen/models/OrderLineItems.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderPayments.ts b/src/gen/models/OrderPayments.ts index 7c5ae1107..7f121dbba 100644 --- a/src/gen/models/OrderPayments.ts +++ b/src/gen/models/OrderPayments.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderPickupDetails.ts b/src/gen/models/OrderPickupDetails.ts index 2d6cbe06b..3fa095b07 100644 --- a/src/gen/models/OrderPickupDetails.ts +++ b/src/gen/models/OrderPickupDetails.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderPickupDetailsCurbsidePickupDetails.ts b/src/gen/models/OrderPickupDetailsCurbsidePickupDetails.ts index 53342cfba..e63deff71 100644 --- a/src/gen/models/OrderPickupDetailsCurbsidePickupDetails.ts +++ b/src/gen/models/OrderPickupDetailsCurbsidePickupDetails.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderPickupDetailsRecipient.ts b/src/gen/models/OrderPickupDetailsRecipient.ts index 36fd2e612..3cfcd0fe6 100644 --- a/src/gen/models/OrderPickupDetailsRecipient.ts +++ b/src/gen/models/OrderPickupDetailsRecipient.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderRefunds.ts b/src/gen/models/OrderRefunds.ts index b1b9f36c8..6b4c6c4ac 100644 --- a/src/gen/models/OrderRefunds.ts +++ b/src/gen/models/OrderRefunds.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderTenders.ts b/src/gen/models/OrderTenders.ts index 024ccb2b6..8a109a9ee 100644 --- a/src/gen/models/OrderTenders.ts +++ b/src/gen/models/OrderTenders.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/OrderType.ts b/src/gen/models/OrderType.ts index dc5407213..5b6ca9697 100644 --- a/src/gen/models/OrderType.ts +++ b/src/gen/models/OrderType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Owner.ts b/src/gen/models/Owner.ts index 8c4477350..c70235e78 100644 --- a/src/gen/models/Owner.ts +++ b/src/gen/models/Owner.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PaginationCoverage.ts b/src/gen/models/PaginationCoverage.ts index 5b540ae17..86bff19eb 100644 --- a/src/gen/models/PaginationCoverage.ts +++ b/src/gen/models/PaginationCoverage.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PassThroughQuery.ts b/src/gen/models/PassThroughQuery.ts index 0b11d318d..a6c179b7a 100644 --- a/src/gen/models/PassThroughQuery.ts +++ b/src/gen/models/PassThroughQuery.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Payment.ts b/src/gen/models/Payment.ts index 35931be3c..78575dc16 100644 --- a/src/gen/models/Payment.ts +++ b/src/gen/models/Payment.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PaymentAllocations.ts b/src/gen/models/PaymentAllocations.ts index f3d7c77da..fedf5de69 100644 --- a/src/gen/models/PaymentAllocations.ts +++ b/src/gen/models/PaymentAllocations.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PaymentCard.ts b/src/gen/models/PaymentCard.ts index cab13ea7a..6fcb65835 100644 --- a/src/gen/models/PaymentCard.ts +++ b/src/gen/models/PaymentCard.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PaymentFrequency.ts b/src/gen/models/PaymentFrequency.ts index 5695e05c8..27667174d 100644 --- a/src/gen/models/PaymentFrequency.ts +++ b/src/gen/models/PaymentFrequency.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PaymentRequiredResponse.ts b/src/gen/models/PaymentRequiredResponse.ts index 6c38288a4..658a01e40 100644 --- a/src/gen/models/PaymentRequiredResponse.ts +++ b/src/gen/models/PaymentRequiredResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PaymentUnit.ts b/src/gen/models/PaymentUnit.ts index 9609ada79..56042f372 100644 --- a/src/gen/models/PaymentUnit.ts +++ b/src/gen/models/PaymentUnit.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PaymentsFilter.ts b/src/gen/models/PaymentsFilter.ts index aa8a5f775..497db564b 100644 --- a/src/gen/models/PaymentsFilter.ts +++ b/src/gen/models/PaymentsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Payroll.ts b/src/gen/models/Payroll.ts index da68cbafd..e60cf245a 100644 --- a/src/gen/models/Payroll.ts +++ b/src/gen/models/Payroll.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PayrollTotals.ts b/src/gen/models/PayrollTotals.ts index 2775f22e3..ea2c26ecc 100644 --- a/src/gen/models/PayrollTotals.ts +++ b/src/gen/models/PayrollTotals.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PayrollsFilter.ts b/src/gen/models/PayrollsFilter.ts index 5872cf9eb..28c08154f 100644 --- a/src/gen/models/PayrollsFilter.ts +++ b/src/gen/models/PayrollsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Person.ts b/src/gen/models/Person.ts index 7dd09e6cc..ff6ac1f57 100644 --- a/src/gen/models/Person.ts +++ b/src/gen/models/Person.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PhoneNumber.ts b/src/gen/models/PhoneNumber.ts index 67bb38826..634f56865 100644 --- a/src/gen/models/PhoneNumber.ts +++ b/src/gen/models/PhoneNumber.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Pipeline.ts b/src/gen/models/Pipeline.ts index 64fc06019..db9fc75c2 100644 --- a/src/gen/models/Pipeline.ts +++ b/src/gen/models/Pipeline.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PipelineStages.ts b/src/gen/models/PipelineStages.ts index 087e58aa6..733d7f333 100644 --- a/src/gen/models/PipelineStages.ts +++ b/src/gen/models/PipelineStages.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PosBankAccount.ts b/src/gen/models/PosBankAccount.ts index 61634c07a..4caba0ae8 100644 --- a/src/gen/models/PosBankAccount.ts +++ b/src/gen/models/PosBankAccount.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PosBankAccountAchDetails.ts b/src/gen/models/PosBankAccountAchDetails.ts index 838f581db..9eb61282d 100644 --- a/src/gen/models/PosBankAccountAchDetails.ts +++ b/src/gen/models/PosBankAccountAchDetails.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PosPayment.ts b/src/gen/models/PosPayment.ts index 1da921316..8093f5815 100644 --- a/src/gen/models/PosPayment.ts +++ b/src/gen/models/PosPayment.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PosPaymentCardDetails.ts b/src/gen/models/PosPaymentCardDetails.ts index ce7f8530f..93ed6cc27 100644 --- a/src/gen/models/PosPaymentCardDetails.ts +++ b/src/gen/models/PosPaymentCardDetails.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PosPaymentExternalDetails.ts b/src/gen/models/PosPaymentExternalDetails.ts index 27ccf0237..0909370f1 100644 --- a/src/gen/models/PosPaymentExternalDetails.ts +++ b/src/gen/models/PosPaymentExternalDetails.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Price.ts b/src/gen/models/Price.ts index 7d5d08af5..fd827838d 100644 --- a/src/gen/models/Price.ts +++ b/src/gen/models/Price.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProbationPeriod.ts b/src/gen/models/ProbationPeriod.ts index 29985b0de..a93aacf1a 100644 --- a/src/gen/models/ProbationPeriod.ts +++ b/src/gen/models/ProbationPeriod.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLoss.ts b/src/gen/models/ProfitAndLoss.ts index 028c8e89c..4baf0d34e 100644 --- a/src/gen/models/ProfitAndLoss.ts +++ b/src/gen/models/ProfitAndLoss.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLossExpenses.ts b/src/gen/models/ProfitAndLossExpenses.ts index b5129f72d..4f6e5e229 100644 --- a/src/gen/models/ProfitAndLossExpenses.ts +++ b/src/gen/models/ProfitAndLossExpenses.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLossFilter.ts b/src/gen/models/ProfitAndLossFilter.ts index 36e30ee36..c288c0a4b 100644 --- a/src/gen/models/ProfitAndLossFilter.ts +++ b/src/gen/models/ProfitAndLossFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLossGrossProfit.ts b/src/gen/models/ProfitAndLossGrossProfit.ts index e71bd89cf..1e767da8b 100644 --- a/src/gen/models/ProfitAndLossGrossProfit.ts +++ b/src/gen/models/ProfitAndLossGrossProfit.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLossIncome.ts b/src/gen/models/ProfitAndLossIncome.ts index f4e14c61c..45f0ab226 100644 --- a/src/gen/models/ProfitAndLossIncome.ts +++ b/src/gen/models/ProfitAndLossIncome.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLossNetIncome.ts b/src/gen/models/ProfitAndLossNetIncome.ts index 3cfa3e27d..7511277fd 100644 --- a/src/gen/models/ProfitAndLossNetIncome.ts +++ b/src/gen/models/ProfitAndLossNetIncome.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLossNetOperatingIncome.ts b/src/gen/models/ProfitAndLossNetOperatingIncome.ts index e7ce4b7b5..74b7d3897 100644 --- a/src/gen/models/ProfitAndLossNetOperatingIncome.ts +++ b/src/gen/models/ProfitAndLossNetOperatingIncome.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLossRecord.ts b/src/gen/models/ProfitAndLossRecord.ts index 963fb711e..d99c6a2e8 100644 --- a/src/gen/models/ProfitAndLossRecord.ts +++ b/src/gen/models/ProfitAndLossRecord.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLossRecords.ts b/src/gen/models/ProfitAndLossRecords.ts index 4f4b5de3a..5342aaea2 100644 --- a/src/gen/models/ProfitAndLossRecords.ts +++ b/src/gen/models/ProfitAndLossRecords.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ProfitAndLossSection.ts b/src/gen/models/ProfitAndLossSection.ts index eeb43349f..c85d73de4 100644 --- a/src/gen/models/ProfitAndLossSection.ts +++ b/src/gen/models/ProfitAndLossSection.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/PurchaseOrder.ts b/src/gen/models/PurchaseOrder.ts index 617ca5ca7..1b1e5df46 100644 --- a/src/gen/models/PurchaseOrder.ts +++ b/src/gen/models/PurchaseOrder.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/RequestCountAllocation.ts b/src/gen/models/RequestCountAllocation.ts index 803c028b9..26cca7453 100644 --- a/src/gen/models/RequestCountAllocation.ts +++ b/src/gen/models/RequestCountAllocation.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ResolveWebhookResponse.ts b/src/gen/models/ResolveWebhookResponse.ts index c29760c41..375125992 100644 --- a/src/gen/models/ResolveWebhookResponse.ts +++ b/src/gen/models/ResolveWebhookResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ResourceExample.ts b/src/gen/models/ResourceExample.ts index 18b2e6746..ac053b533 100644 --- a/src/gen/models/ResourceExample.ts +++ b/src/gen/models/ResourceExample.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ResourceStatus.ts b/src/gen/models/ResourceStatus.ts index 16c150b8f..cd1098064 100644 --- a/src/gen/models/ResourceStatus.ts +++ b/src/gen/models/ResourceStatus.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Schedule.ts b/src/gen/models/Schedule.ts index 242bd2f07..0b1f5129e 100644 --- a/src/gen/models/Schedule.ts +++ b/src/gen/models/Schedule.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ScheduleWorkPattern.ts b/src/gen/models/ScheduleWorkPattern.ts index 22e0e43f8..0179f3a7c 100644 --- a/src/gen/models/ScheduleWorkPattern.ts +++ b/src/gen/models/ScheduleWorkPattern.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ScheduleWorkPatternOddWeeks.ts b/src/gen/models/ScheduleWorkPatternOddWeeks.ts index 2a8733313..889b83b8b 100644 --- a/src/gen/models/ScheduleWorkPatternOddWeeks.ts +++ b/src/gen/models/ScheduleWorkPatternOddWeeks.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SchemaSupport.ts b/src/gen/models/SchemaSupport.ts index c64d231e1..c5da9c6b3 100644 --- a/src/gen/models/SchemaSupport.ts +++ b/src/gen/models/SchemaSupport.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ServiceCharge.ts b/src/gen/models/ServiceCharge.ts index 62e99e7c9..74058da02 100644 --- a/src/gen/models/ServiceCharge.ts +++ b/src/gen/models/ServiceCharge.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/ServiceCharges.ts b/src/gen/models/ServiceCharges.ts index b05f9644a..9b203d311 100644 --- a/src/gen/models/ServiceCharges.ts +++ b/src/gen/models/ServiceCharges.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Session.ts b/src/gen/models/Session.ts index 2333cfc72..23092c93b 100644 --- a/src/gen/models/Session.ts +++ b/src/gen/models/Session.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SessionSettings.ts b/src/gen/models/SessionSettings.ts index f28c7e358..7187f5e11 100644 --- a/src/gen/models/SessionSettings.ts +++ b/src/gen/models/SessionSettings.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SessionTheme.ts b/src/gen/models/SessionTheme.ts index f555b4366..f298c5bc9 100644 --- a/src/gen/models/SessionTheme.ts +++ b/src/gen/models/SessionTheme.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SharedLink.ts b/src/gen/models/SharedLink.ts index a76eb05da..f0eccdd6e 100644 --- a/src/gen/models/SharedLink.ts +++ b/src/gen/models/SharedLink.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SharedLinkTarget.ts b/src/gen/models/SharedLinkTarget.ts index c7b39dacd..6bfd21d63 100644 --- a/src/gen/models/SharedLinkTarget.ts +++ b/src/gen/models/SharedLinkTarget.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SimpleFormFieldOption.ts b/src/gen/models/SimpleFormFieldOption.ts index 767747230..9578e0f05 100644 --- a/src/gen/models/SimpleFormFieldOption.ts +++ b/src/gen/models/SimpleFormFieldOption.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SocialLink.ts b/src/gen/models/SocialLink.ts index f441e61fd..0163e5376 100644 --- a/src/gen/models/SocialLink.ts +++ b/src/gen/models/SocialLink.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SortDirection.ts b/src/gen/models/SortDirection.ts index 1c94ca5bb..226a16dec 100644 --- a/src/gen/models/SortDirection.ts +++ b/src/gen/models/SortDirection.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Status.ts b/src/gen/models/Status.ts index f14cfe591..8f1691af6 100644 --- a/src/gen/models/Status.ts +++ b/src/gen/models/Status.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Supplier.ts b/src/gen/models/Supplier.ts index 4015f479a..1e8307c90 100644 --- a/src/gen/models/Supplier.ts +++ b/src/gen/models/Supplier.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SuppliersFilter.ts b/src/gen/models/SuppliersFilter.ts index fa1b4cde1..cb6e2d9c7 100644 --- a/src/gen/models/SuppliersFilter.ts +++ b/src/gen/models/SuppliersFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SupportedProperty.ts b/src/gen/models/SupportedProperty.ts index 2676d97f2..7fee8dd6e 100644 --- a/src/gen/models/SupportedProperty.ts +++ b/src/gen/models/SupportedProperty.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/SupportedPropertyChildProperties.ts b/src/gen/models/SupportedPropertyChildProperties.ts index e49dcc107..2d53037ce 100644 --- a/src/gen/models/SupportedPropertyChildProperties.ts +++ b/src/gen/models/SupportedPropertyChildProperties.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Tax.ts b/src/gen/models/Tax.ts index ba66a2672..01008a605 100644 --- a/src/gen/models/Tax.ts +++ b/src/gen/models/Tax.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/TaxRate.ts b/src/gen/models/TaxRate.ts index 5db177d3b..387cefe18 100644 --- a/src/gen/models/TaxRate.ts +++ b/src/gen/models/TaxRate.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/TaxRatesFilter.ts b/src/gen/models/TaxRatesFilter.ts index 22dce6fbb..b9b1310e1 100644 --- a/src/gen/models/TaxRatesFilter.ts +++ b/src/gen/models/TaxRatesFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Team.ts b/src/gen/models/Team.ts index 5fa05bc01..b95db3720 100644 --- a/src/gen/models/Team.ts +++ b/src/gen/models/Team.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Tender.ts b/src/gen/models/Tender.ts index 16bfc7905..b4aa216fd 100644 --- a/src/gen/models/Tender.ts +++ b/src/gen/models/Tender.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Ticket.ts b/src/gen/models/Ticket.ts index 074a7e6fe..1a2e6b388 100644 --- a/src/gen/models/Ticket.ts +++ b/src/gen/models/Ticket.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/TicketsSort.ts b/src/gen/models/TicketsSort.ts index 064a72bc4..8b2bd0641 100644 --- a/src/gen/models/TicketsSort.ts +++ b/src/gen/models/TicketsSort.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/TimeOffRequest.ts b/src/gen/models/TimeOffRequest.ts index cea9b91b0..33e90f17e 100644 --- a/src/gen/models/TimeOffRequest.ts +++ b/src/gen/models/TimeOffRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/TimeOffRequestNotes.ts b/src/gen/models/TimeOffRequestNotes.ts index 8ffbc8f4a..860ca562b 100644 --- a/src/gen/models/TimeOffRequestNotes.ts +++ b/src/gen/models/TimeOffRequestNotes.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/TimeOffRequestsFilter.ts b/src/gen/models/TimeOffRequestsFilter.ts index b8c74700d..ca34f905e 100644 --- a/src/gen/models/TimeOffRequestsFilter.ts +++ b/src/gen/models/TimeOffRequestsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/TooManyRequestsResponse.ts b/src/gen/models/TooManyRequestsResponse.ts index 58907a08c..a1b1560d4 100644 --- a/src/gen/models/TooManyRequestsResponse.ts +++ b/src/gen/models/TooManyRequestsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/TooManyRequestsResponseDetail.ts b/src/gen/models/TooManyRequestsResponseDetail.ts index cd10e2a95..e47ef0e31 100644 --- a/src/gen/models/TooManyRequestsResponseDetail.ts +++ b/src/gen/models/TooManyRequestsResponseDetail.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/TrackingItem.ts b/src/gen/models/TrackingItem.ts index e0d1a09c5..7433b3f06 100644 --- a/src/gen/models/TrackingItem.ts +++ b/src/gen/models/TrackingItem.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UnauthorizedResponse.ts b/src/gen/models/UnauthorizedResponse.ts index 673e7c144..b6c51f59f 100644 --- a/src/gen/models/UnauthorizedResponse.ts +++ b/src/gen/models/UnauthorizedResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UnexpectedErrorResponse.ts b/src/gen/models/UnexpectedErrorResponse.ts index 015545ef4..a9589cde5 100644 --- a/src/gen/models/UnexpectedErrorResponse.ts +++ b/src/gen/models/UnexpectedErrorResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UnifiedApiId.ts b/src/gen/models/UnifiedApiId.ts index eccbcb401..5e572288f 100644 --- a/src/gen/models/UnifiedApiId.ts +++ b/src/gen/models/UnifiedApiId.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UnifiedFile.ts b/src/gen/models/UnifiedFile.ts index ce66bba9d..407a3fa3c 100644 --- a/src/gen/models/UnifiedFile.ts +++ b/src/gen/models/UnifiedFile.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UnifiedFilePermissions.ts b/src/gen/models/UnifiedFilePermissions.ts index 4bebf85aa..ea0557488 100644 --- a/src/gen/models/UnifiedFilePermissions.ts +++ b/src/gen/models/UnifiedFilePermissions.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UnprocessableResponse.ts b/src/gen/models/UnprocessableResponse.ts index 9c98effe1..251b5f80e 100644 --- a/src/gen/models/UnprocessableResponse.ts +++ b/src/gen/models/UnprocessableResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateActivityResponse.ts b/src/gen/models/UpdateActivityResponse.ts index 6ceed3857..0211467f2 100644 --- a/src/gen/models/UpdateActivityResponse.ts +++ b/src/gen/models/UpdateActivityResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateApplicantResponse.ts b/src/gen/models/UpdateApplicantResponse.ts index 08a3017f8..fff182f72 100644 --- a/src/gen/models/UpdateApplicantResponse.ts +++ b/src/gen/models/UpdateApplicantResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateApplicationResponse.ts b/src/gen/models/UpdateApplicationResponse.ts index 71c423b0c..aa6828e74 100644 --- a/src/gen/models/UpdateApplicationResponse.ts +++ b/src/gen/models/UpdateApplicationResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateBillResponse.ts b/src/gen/models/UpdateBillResponse.ts index 8a826ed5c..a2cfcb8f5 100644 --- a/src/gen/models/UpdateBillResponse.ts +++ b/src/gen/models/UpdateBillResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateCommentResponse.ts b/src/gen/models/UpdateCommentResponse.ts index 86e11a9b8..328737ac5 100644 --- a/src/gen/models/UpdateCommentResponse.ts +++ b/src/gen/models/UpdateCommentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateCompanyResponse.ts b/src/gen/models/UpdateCompanyResponse.ts index d64a88105..ea724b815 100644 --- a/src/gen/models/UpdateCompanyResponse.ts +++ b/src/gen/models/UpdateCompanyResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateConnectionResponse.ts b/src/gen/models/UpdateConnectionResponse.ts index 47c433fb2..e53846db2 100644 --- a/src/gen/models/UpdateConnectionResponse.ts +++ b/src/gen/models/UpdateConnectionResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateConsumerRequest.ts b/src/gen/models/UpdateConsumerRequest.ts index be462c49c..a0f3eceee 100644 --- a/src/gen/models/UpdateConsumerRequest.ts +++ b/src/gen/models/UpdateConsumerRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateConsumerResponse.ts b/src/gen/models/UpdateConsumerResponse.ts index d5a5e6299..94b5e56e5 100644 --- a/src/gen/models/UpdateConsumerResponse.ts +++ b/src/gen/models/UpdateConsumerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateContactResponse.ts b/src/gen/models/UpdateContactResponse.ts index 28174bde7..4283b996f 100644 --- a/src/gen/models/UpdateContactResponse.ts +++ b/src/gen/models/UpdateContactResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateCreditNoteResponse.ts b/src/gen/models/UpdateCreditNoteResponse.ts index 64ecea572..3c5862993 100644 --- a/src/gen/models/UpdateCreditNoteResponse.ts +++ b/src/gen/models/UpdateCreditNoteResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateCustomMappingResponse.ts b/src/gen/models/UpdateCustomMappingResponse.ts index 6e01aa747..45e2511c0 100644 --- a/src/gen/models/UpdateCustomMappingResponse.ts +++ b/src/gen/models/UpdateCustomMappingResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateCustomerResponse.ts b/src/gen/models/UpdateCustomerResponse.ts index 978946054..1a96b1e6d 100644 --- a/src/gen/models/UpdateCustomerResponse.ts +++ b/src/gen/models/UpdateCustomerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateDepartmentResponse.ts b/src/gen/models/UpdateDepartmentResponse.ts index 7451804fb..d5eb9ac8b 100644 --- a/src/gen/models/UpdateDepartmentResponse.ts +++ b/src/gen/models/UpdateDepartmentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateDriveGroupResponse.ts b/src/gen/models/UpdateDriveGroupResponse.ts index f02533c60..35a722a94 100644 --- a/src/gen/models/UpdateDriveGroupResponse.ts +++ b/src/gen/models/UpdateDriveGroupResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateDriveResponse.ts b/src/gen/models/UpdateDriveResponse.ts index e749d08b2..e9e3cb746 100644 --- a/src/gen/models/UpdateDriveResponse.ts +++ b/src/gen/models/UpdateDriveResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateEcommerceCustomerResponse.ts b/src/gen/models/UpdateEcommerceCustomerResponse.ts index 36993cd59..786154a43 100644 --- a/src/gen/models/UpdateEcommerceCustomerResponse.ts +++ b/src/gen/models/UpdateEcommerceCustomerResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateEcommerceOrderResponse.ts b/src/gen/models/UpdateEcommerceOrderResponse.ts index dc74a3496..de1f1c3a9 100644 --- a/src/gen/models/UpdateEcommerceOrderResponse.ts +++ b/src/gen/models/UpdateEcommerceOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateEmployeeResponse.ts b/src/gen/models/UpdateEmployeeResponse.ts index f528836fe..044e66c91 100644 --- a/src/gen/models/UpdateEmployeeResponse.ts +++ b/src/gen/models/UpdateEmployeeResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateFileRequest.ts b/src/gen/models/UpdateFileRequest.ts index 8225f01a8..08b12dbd2 100644 --- a/src/gen/models/UpdateFileRequest.ts +++ b/src/gen/models/UpdateFileRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateFileResponse.ts b/src/gen/models/UpdateFileResponse.ts index a452456e1..8deb0a94d 100644 --- a/src/gen/models/UpdateFileResponse.ts +++ b/src/gen/models/UpdateFileResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateFolderRequest.ts b/src/gen/models/UpdateFolderRequest.ts index 70d7346ac..81228fc56 100644 --- a/src/gen/models/UpdateFolderRequest.ts +++ b/src/gen/models/UpdateFolderRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateFolderResponse.ts b/src/gen/models/UpdateFolderResponse.ts index 5671f563c..ec52eea8b 100644 --- a/src/gen/models/UpdateFolderResponse.ts +++ b/src/gen/models/UpdateFolderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateHrisCompanyResponse.ts b/src/gen/models/UpdateHrisCompanyResponse.ts index 4458b1b2b..284db2928 100644 --- a/src/gen/models/UpdateHrisCompanyResponse.ts +++ b/src/gen/models/UpdateHrisCompanyResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateInvoiceItemsResponse.ts b/src/gen/models/UpdateInvoiceItemsResponse.ts index 1601b18d4..37a57f13f 100644 --- a/src/gen/models/UpdateInvoiceItemsResponse.ts +++ b/src/gen/models/UpdateInvoiceItemsResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateInvoiceResponse.ts b/src/gen/models/UpdateInvoiceResponse.ts index 126475bcc..f4a992444 100644 --- a/src/gen/models/UpdateInvoiceResponse.ts +++ b/src/gen/models/UpdateInvoiceResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateItemResponse.ts b/src/gen/models/UpdateItemResponse.ts index 4b18dadc5..39148bc56 100644 --- a/src/gen/models/UpdateItemResponse.ts +++ b/src/gen/models/UpdateItemResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateJobResponse.ts b/src/gen/models/UpdateJobResponse.ts index a81b1b087..66db3f726 100644 --- a/src/gen/models/UpdateJobResponse.ts +++ b/src/gen/models/UpdateJobResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateJournalEntryResponse.ts b/src/gen/models/UpdateJournalEntryResponse.ts index 4620f876e..0d2abaaac 100644 --- a/src/gen/models/UpdateJournalEntryResponse.ts +++ b/src/gen/models/UpdateJournalEntryResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateLeadResponse.ts b/src/gen/models/UpdateLeadResponse.ts index b60462bbb..da600765b 100644 --- a/src/gen/models/UpdateLeadResponse.ts +++ b/src/gen/models/UpdateLeadResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateLedgerAccountResponse.ts b/src/gen/models/UpdateLedgerAccountResponse.ts index fecec7627..55d9ade90 100644 --- a/src/gen/models/UpdateLedgerAccountResponse.ts +++ b/src/gen/models/UpdateLedgerAccountResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateLocationResponse.ts b/src/gen/models/UpdateLocationResponse.ts index e26ea9d75..3b6d1f685 100644 --- a/src/gen/models/UpdateLocationResponse.ts +++ b/src/gen/models/UpdateLocationResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateMerchantResponse.ts b/src/gen/models/UpdateMerchantResponse.ts index a5e4358fe..78713349f 100644 --- a/src/gen/models/UpdateMerchantResponse.ts +++ b/src/gen/models/UpdateMerchantResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateMessageResponse.ts b/src/gen/models/UpdateMessageResponse.ts index 6e7882293..8552deb83 100644 --- a/src/gen/models/UpdateMessageResponse.ts +++ b/src/gen/models/UpdateMessageResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateModifierGroupResponse.ts b/src/gen/models/UpdateModifierGroupResponse.ts index 82357c1ed..21f0e636f 100644 --- a/src/gen/models/UpdateModifierGroupResponse.ts +++ b/src/gen/models/UpdateModifierGroupResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateModifierResponse.ts b/src/gen/models/UpdateModifierResponse.ts index cc5fe799d..71275aa84 100644 --- a/src/gen/models/UpdateModifierResponse.ts +++ b/src/gen/models/UpdateModifierResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateNoteResponse.ts b/src/gen/models/UpdateNoteResponse.ts index dbf91ac4e..36b98ecd3 100644 --- a/src/gen/models/UpdateNoteResponse.ts +++ b/src/gen/models/UpdateNoteResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateOpportunityResponse.ts b/src/gen/models/UpdateOpportunityResponse.ts index b8bd04630..dd8e6bdea 100644 --- a/src/gen/models/UpdateOpportunityResponse.ts +++ b/src/gen/models/UpdateOpportunityResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateOrderResponse.ts b/src/gen/models/UpdateOrderResponse.ts index 3e24ca5eb..2507f25f3 100644 --- a/src/gen/models/UpdateOrderResponse.ts +++ b/src/gen/models/UpdateOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateOrderTypeResponse.ts b/src/gen/models/UpdateOrderTypeResponse.ts index c573f168b..f816b8f6d 100644 --- a/src/gen/models/UpdateOrderTypeResponse.ts +++ b/src/gen/models/UpdateOrderTypeResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdatePaymentResponse.ts b/src/gen/models/UpdatePaymentResponse.ts index 71295283c..d1fd2f779 100644 --- a/src/gen/models/UpdatePaymentResponse.ts +++ b/src/gen/models/UpdatePaymentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdatePipelineResponse.ts b/src/gen/models/UpdatePipelineResponse.ts index 2a0cc752a..e8c5af340 100644 --- a/src/gen/models/UpdatePipelineResponse.ts +++ b/src/gen/models/UpdatePipelineResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdatePosPaymentResponse.ts b/src/gen/models/UpdatePosPaymentResponse.ts index 3606d800a..ed8f70961 100644 --- a/src/gen/models/UpdatePosPaymentResponse.ts +++ b/src/gen/models/UpdatePosPaymentResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateProductResponse.ts b/src/gen/models/UpdateProductResponse.ts index 1a889e43e..bb7da8e8a 100644 --- a/src/gen/models/UpdateProductResponse.ts +++ b/src/gen/models/UpdateProductResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdatePurchaseOrderResponse.ts b/src/gen/models/UpdatePurchaseOrderResponse.ts index 23ba3ed6c..ee90a14ab 100644 --- a/src/gen/models/UpdatePurchaseOrderResponse.ts +++ b/src/gen/models/UpdatePurchaseOrderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateSharedLinkResponse.ts b/src/gen/models/UpdateSharedLinkResponse.ts index e6e90bf7c..4c5815383 100644 --- a/src/gen/models/UpdateSharedLinkResponse.ts +++ b/src/gen/models/UpdateSharedLinkResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateSupplierResponse.ts b/src/gen/models/UpdateSupplierResponse.ts index bf8981bf9..3d6c30f57 100644 --- a/src/gen/models/UpdateSupplierResponse.ts +++ b/src/gen/models/UpdateSupplierResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateTaxRateResponse.ts b/src/gen/models/UpdateTaxRateResponse.ts index d9a424216..ab79f903b 100644 --- a/src/gen/models/UpdateTaxRateResponse.ts +++ b/src/gen/models/UpdateTaxRateResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateTenderResponse.ts b/src/gen/models/UpdateTenderResponse.ts index bbe1752ac..65161bec0 100644 --- a/src/gen/models/UpdateTenderResponse.ts +++ b/src/gen/models/UpdateTenderResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateTicketResponse.ts b/src/gen/models/UpdateTicketResponse.ts index 50d2a654d..f8a809d58 100644 --- a/src/gen/models/UpdateTicketResponse.ts +++ b/src/gen/models/UpdateTicketResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateTimeOffRequestResponse.ts b/src/gen/models/UpdateTimeOffRequestResponse.ts index bcfc44638..3be2e7c56 100644 --- a/src/gen/models/UpdateTimeOffRequestResponse.ts +++ b/src/gen/models/UpdateTimeOffRequestResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateUploadSessionResponse.ts b/src/gen/models/UpdateUploadSessionResponse.ts index 13e51f1af..1586739cb 100644 --- a/src/gen/models/UpdateUploadSessionResponse.ts +++ b/src/gen/models/UpdateUploadSessionResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateUserResponse.ts b/src/gen/models/UpdateUserResponse.ts index a13dc0931..20c28e7d9 100644 --- a/src/gen/models/UpdateUserResponse.ts +++ b/src/gen/models/UpdateUserResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateWebhookRequest.ts b/src/gen/models/UpdateWebhookRequest.ts index 85cdb7901..62148da5e 100644 --- a/src/gen/models/UpdateWebhookRequest.ts +++ b/src/gen/models/UpdateWebhookRequest.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UpdateWebhookResponse.ts b/src/gen/models/UpdateWebhookResponse.ts index 15dbe9e14..dfb4c2038 100644 --- a/src/gen/models/UpdateWebhookResponse.ts +++ b/src/gen/models/UpdateWebhookResponse.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/UploadSession.ts b/src/gen/models/UploadSession.ts index 5f6e91beb..fd2d674da 100644 --- a/src/gen/models/UploadSession.ts +++ b/src/gen/models/UploadSession.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/User.ts b/src/gen/models/User.ts index 09c09b3dc..2b0af86a9 100644 --- a/src/gen/models/User.ts +++ b/src/gen/models/User.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/VaultEventType.ts b/src/gen/models/VaultEventType.ts index 121b303a2..e92bab260 100644 --- a/src/gen/models/VaultEventType.ts +++ b/src/gen/models/VaultEventType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/VirtualWebhooks.ts b/src/gen/models/VirtualWebhooks.ts index aee74a939..e40b09969 100644 --- a/src/gen/models/VirtualWebhooks.ts +++ b/src/gen/models/VirtualWebhooks.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/WalletDetails.ts b/src/gen/models/WalletDetails.ts index 9fdaef9d7..3c7479c61 100644 --- a/src/gen/models/WalletDetails.ts +++ b/src/gen/models/WalletDetails.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Webhook.ts b/src/gen/models/Webhook.ts index 00b87c82a..6b558522f 100644 --- a/src/gen/models/Webhook.ts +++ b/src/gen/models/Webhook.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/WebhookEvent.ts b/src/gen/models/WebhookEvent.ts index db8515054..7e041e4cc 100644 --- a/src/gen/models/WebhookEvent.ts +++ b/src/gen/models/WebhookEvent.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/WebhookEventLog.ts b/src/gen/models/WebhookEventLog.ts index caf6f2830..a3f37e6c3 100644 --- a/src/gen/models/WebhookEventLog.ts +++ b/src/gen/models/WebhookEventLog.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/WebhookEventLogAttempts.ts b/src/gen/models/WebhookEventLogAttempts.ts index 2c5aa1247..7e7f76ce5 100644 --- a/src/gen/models/WebhookEventLogAttempts.ts +++ b/src/gen/models/WebhookEventLogAttempts.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/WebhookEventLogsFilter.ts b/src/gen/models/WebhookEventLogsFilter.ts index 7af59f3ed..bb0731e9b 100644 --- a/src/gen/models/WebhookEventLogsFilter.ts +++ b/src/gen/models/WebhookEventLogsFilter.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/WebhookEventLogsFilterService.ts b/src/gen/models/WebhookEventLogsFilterService.ts index c43cfea38..c01883027 100644 --- a/src/gen/models/WebhookEventLogsFilterService.ts +++ b/src/gen/models/WebhookEventLogsFilterService.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/WebhookEventType.ts b/src/gen/models/WebhookEventType.ts index a4be292b0..9175ebff7 100644 --- a/src/gen/models/WebhookEventType.ts +++ b/src/gen/models/WebhookEventType.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/WebhookSubscription.ts b/src/gen/models/WebhookSubscription.ts index 9a09442a5..415bf2f8e 100644 --- a/src/gen/models/WebhookSubscription.ts +++ b/src/gen/models/WebhookSubscription.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/WebhookSupport.ts b/src/gen/models/WebhookSupport.ts index 7f7543144..66a708915 100644 --- a/src/gen/models/WebhookSupport.ts +++ b/src/gen/models/WebhookSupport.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/models/Website.ts b/src/gen/models/Website.ts index 1b1c24ff6..d09da6a9f 100644 --- a/src/gen/models/Website.ts +++ b/src/gen/models/Website.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/gen/runtime.ts b/src/gen/runtime.ts index 49fbe62a7..dfe8ecc1c 100644 --- a/src/gen/runtime.ts +++ b/src/gen/runtime.ts @@ -4,7 +4,7 @@ * Apideck * The Apideck OpenAPI Spec: SDK Optimized * - * The version of the OpenAPI document: 9.9.3 + * The version of the OpenAPI document: 10.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/yarn.lock b/yarn.lock index 25f6a10dd..2d1d9e4fe 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2822,9 +2822,9 @@ ecc-jsbn@~0.1.1: safer-buffer "^2.1.0" electron-to-chromium@^1.4.535: - version "1.4.565" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.565.tgz#205f3746a759ec3c43bce98b9eef5445f2721ea9" - integrity sha512-XbMoT6yIvg2xzcbs5hCADi0dXBh4//En3oFXmtPX+jiyyiCTiM9DGFT2SLottjpEs9Z8Mh8SqahbR96MaHfuSg== + version "1.4.566" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.566.tgz#5c5ba1d2dc895f4887043f0cc7e61798c7e5919a" + integrity sha512-mv+fAy27uOmTVlUULy15U3DVJ+jg+8iyKH1bpwboCRhtDC69GKf1PPTZvEIhCyDr81RFqfxZJYrbgp933a1vtg== emittery@^0.13.1: version "0.13.1" From b3ff641f20c5af70cc3c6751e5f4af926ea2a4b8 Mon Sep 17 00:00:00 2001 From: Tim Haselaars <> Date: Tue, 24 Oct 2023 21:01:59 +0200 Subject: [PATCH 5/9] Github: Bump node version --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5639343bc..403ad94a2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: - name: 'Setup Node.js' uses: actions/setup-node@v2 with: - node-version: '14.x' + node-version: '16.x' cache: yarn - name: Install dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14f901a68..76cbdf79b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: - name: 'Setup Node.js' uses: actions/setup-node@v2 with: - node-version: '14.x' + node-version: '16.x' cache: yarn - name: Install dependencies From a1d4dc02072ec9879b2ed8042999fa49f76897ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 09:19:43 +0000 Subject: [PATCH 6/9] Automated update by SDK Generator version:3.0.0 commit:f553e4a --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- yarn.lock | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 403ad94a2..5639343bc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: - name: 'Setup Node.js' uses: actions/setup-node@v2 with: - node-version: '16.x' + node-version: '14.x' cache: yarn - name: Install dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 76cbdf79b..14f901a68 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: - name: 'Setup Node.js' uses: actions/setup-node@v2 with: - node-version: '16.x' + node-version: '14.x' cache: yarn - name: Install dependencies diff --git a/yarn.lock b/yarn.lock index 2d1d9e4fe..e7d596a18 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2328,9 +2328,9 @@ camelcase@^6.0.0, camelcase@^6.2.0: integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== caniuse-lite@^1.0.30001541: - version "1.0.30001553" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001553.tgz#e64e7dc8fd4885cd246bb476471420beb5e474b5" - integrity sha512-N0ttd6TrFfuqKNi+pMgWJTb9qrdJu4JSpgPFLe/lrD19ugC6fZgF0pUewRowDwzdDnb9V41mFcdlYgl/PyKf4A== + version "1.0.30001554" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001554.tgz#ba80d88dff9acbc0cd4b7535fc30e0191c5e2e2a" + integrity sha512-A2E3U//MBwbJVzebddm1YfNp7Nud5Ip+IPn4BozBmn4KqVX7AvluoIDFWjsv5OkGnKUXQVmMSoMKLa3ScCblcQ== capture-exit@^2.0.0: version "2.0.0" From 6058e74d9df4aa23929af4d4a38491e5b7966b86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 10:04:04 +0000 Subject: [PATCH 7/9] Automated update by SDK Generator version:3.0.0 commit:fc1d6a7 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 89c2b5dbc..16e83d296 100644 --- a/README.md +++ b/README.md @@ -194,4 +194,4 @@ Open an [issue][3]! [1]: https://apideck.com [2]: https://developers.apideck.com/ [3]: https://github.com/apideck-libraries/node-sdk/issues/new -[4]: https://github.com/apideck-libraries/node-sdk/blob/master/LICENSE +[4]: https://github.com/apideck-libraries/node-sdk/blob/main/LICENSE From 8058b09f72341285d20f030d93f721859a5789d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 11:56:22 +0000 Subject: [PATCH 8/9] Automated update by SDK Generator version:3.0.0 commit:2db0800 --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- src/gen/models/CustomField.ts | 104 +++++++++++++++++----------------- 3 files changed, 53 insertions(+), 55 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5639343bc..403ad94a2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: - name: 'Setup Node.js' uses: actions/setup-node@v2 with: - node-version: '14.x' + node-version: '16.x' cache: yarn - name: Install dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14f901a68..76cbdf79b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: - name: 'Setup Node.js' uses: actions/setup-node@v2 with: - node-version: '14.x' + node-version: '16.x' cache: yarn - name: Install dependencies diff --git a/src/gen/models/CustomField.ts b/src/gen/models/CustomField.ts index 796bd0bb1..764817642 100644 --- a/src/gen/models/CustomField.ts +++ b/src/gen/models/CustomField.ts @@ -5,78 +5,76 @@ * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.0.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ -import { exists, mapValues } from '../runtime'; - +import { exists } from '../runtime' /** - * + * * @export * @interface CustomField */ export interface CustomField { - /** - * Unique identifier for the custom field. - * @type {string} - * @memberof CustomField - */ - id: string | null; - /** - * Name of the custom field. - * @type {string} - * @memberof CustomField - */ - name?: string | null; - /** - * More information about the custom field - * @type {string} - * @memberof CustomField - */ - description?: string | null; - /** - * - * @type {string | number | boolean | object | Array | Array} - * @memberof CustomField - */ - value?: string | number | boolean | object | Array | Array | null; + /** + * Unique identifier for the custom field. + * @type {string} + * @memberof CustomField + */ + id: string | null + /** + * Name of the custom field. + * @type {string} + * @memberof CustomField + */ + name?: string | null + /** + * More information about the custom field + * @type {string} + * @memberof CustomField + */ + description?: string | null + /** + * + * @type {string | number | boolean | object | Array | Array} + * @memberof CustomField + */ + value?: string | number | boolean | object | Array | Array | null } export function CustomFieldFromJSON(json: any): CustomField { - return CustomFieldFromJSONTyped(json, false); + return CustomFieldFromJSONTyped(json, false) } export function CustomFieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomField { - if ((json === undefined) || (json === null)) { - return json; - } - return { - - 'id': json['id'], - 'name': !exists(json, 'name') ? undefined : json['name'], - 'description': !exists(json, 'description') ? undefined : json['description'], - 'value': !exists(json, 'value') ? undefined : >(json['value']), - }; + if (json === undefined || json === null) { + return json + } + return { + id: json['id'], + name: !exists(json, 'name') ? undefined : json['name'], + description: !exists(json, 'description') ? undefined : json['description'], + value: !exists(json, 'value') + ? undefined + : | Array>json['value'] + } } export function CustomFieldToJSON(value?: CustomField | null): any { - if (value === undefined) { - return undefined; - } - if (value === null) { - return null; - } - return { - - 'id': value.id, - 'name': value.name, - 'description': value.description, - 'value': >(value.value), - }; + if (value === undefined) { + return undefined + } + if (value === null) { + return null + } + return { + id: value.id, + name: value.name, + description: value.description, + value: | Array>value.value + } } - From 37b2b2584177ec0b9c76c5ccc835d5b1dee06391 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 12:43:47 +0000 Subject: [PATCH 9/9] Automated update by SDK Generator version:3.0.0 commit:76be29d --- src/gen/tests/apis/VaultApiTest.api.test.ts | 2608 +++++++++---------- 1 file changed, 1274 insertions(+), 1334 deletions(-) diff --git a/src/gen/tests/apis/VaultApiTest.api.test.ts b/src/gen/tests/apis/VaultApiTest.api.test.ts index bad34b8ec..a61013741 100644 --- a/src/gen/tests/apis/VaultApiTest.api.test.ts +++ b/src/gen/tests/apis/VaultApiTest.api.test.ts @@ -1,38 +1,29 @@ -import fetch from 'node-fetch-commonjs'; -import { - Apideck, - Configuration -} from '../../../'; +import fetch from 'node-fetch-commonjs' +import { Apideck } from '../../../' -import { - VaultApi -}from '../../'; - -const {Response} = jest.requireActual('node-fetch-commonjs') - -jest.mock('node-fetch-commonjs', () => jest.fn()); +const { Response } = jest.requireActual('node-fetch-commonjs') +jest.mock('node-fetch-commonjs', () => jest.fn()) const basePath = 'https://example.com' const methodResponse = { - 'All': { + All: { status: 'OK', data: [] } } describe('VaultApi', () => { - describe('#connectionSettingsAll', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}/{resource}/config' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -40,147 +31,137 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: [ - 'opportunities', - 'companies', - 'contacts', - 'leads' - ], - resource_schema_support: [ - 'leads' - ], - resource_settings_support: [ - 'leads' - ], - validation_support: true, - schema_support: true, - settings_required_for_authorization: [ - 'client_id', - 'client_secret' - ], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: [ - 'crm.contact.created' - ], - downstream_event_types: [ - 'contacts.CREATED' - ], - execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - custom_mappings: [ - { - id: 'hris+employees+first_aid_training', - label: 'First Aid Training', - description: 'First Aid Training completed after 2019-01-01', - value: '$.root.training.first_aid', - key: 'first_aid_training', - required: false, - custom_field: true, - consumer_id: 'test_user_id' - } - ], - updated_at: 1616662325753 - } -} as any + status_code: 200, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: + 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: + 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: + 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], + resource_schema_support: ['leads'], + resource_settings_support: ['leads'], + validation_support: true, + schema_support: true, + settings_required_for_authorization: ['client_id', 'client_secret'], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: ['crm.contact.created'], + downstream_event_types: ['contacts.CREATED'], + execute_url: + 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - unifiedApi: 'crm', - serviceId: 'pipedrive', - resource: 'leads' -} as any + unifiedApi: 'crm', + serviceId: 'pipedrive', + resource: 'leads' + } as any const current = await vault.connectionSettingsAll(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#connectionSettingsUpdate', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}/{resource}/config' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -188,178 +169,168 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: [ - 'opportunities', - 'companies', - 'contacts', - 'leads' - ], - resource_schema_support: [ - 'leads' - ], - resource_settings_support: [ - 'leads' - ], - validation_support: true, - schema_support: true, - settings_required_for_authorization: [ - 'client_id', - 'client_secret' - ], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: [ - 'crm.contact.created' - ], - downstream_event_types: [ - 'contacts.CREATED' - ], - execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - custom_mappings: [ - { - id: 'hris+employees+first_aid_training', - label: 'First Aid Training', - description: 'First Aid Training completed after 2019-01-01', - value: '$.root.training.first_aid', - key: 'first_aid_training', - required: false, - custom_field: true, - consumer_id: 'test_user_id' - } - ], - updated_at: 1616662325753 - } -} as any + status_code: 200, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: + 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: + 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: + 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], + resource_schema_support: ['leads'], + resource_settings_support: ['leads'], + validation_support: true, + schema_support: true, + settings_required_for_authorization: ['client_id', 'client_secret'], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: ['crm.contact.created'], + downstream_event_types: ['contacts.CREATED'], + execute_url: + 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm', - resource: 'leads', - connection: { - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - configuration: [ - { + serviceId: 'pipedrive', + unifiedApi: 'crm', resource: 'leads', - defaults: [ - { - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - custom_mappings: [ - { - value: '$.root.training.first_aid' - } - ] - } -} as any + connection: { + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + configuration: [ + { + resource: 'leads', + defaults: [ + { + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + custom_mappings: [ + { + value: '$.root.training.first_aid' + } + ] + } + } as any const current = await vault.connectionSettingsUpdate(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#connectionsAll', () => { const endpoint = '/vault/connections' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -367,170 +338,160 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: [ - { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - [Object] - ] - } - ], - configurable_resources: [ - 'opportunities', - 'companies', - 'contacts', - 'leads' - ], - resource_schema_support: [ - 'leads' - ], - resource_settings_support: [ - 'leads' - ], - validation_support: true, - schema_support: true, - settings_required_for_authorization: [ - 'client_id', - 'client_secret' - ], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: [ - 'crm.contact.created' - ], - downstream_event_types: [ - 'contacts.CREATED' - ], - execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - custom_mappings: [ - { - id: 'hris+employees+first_aid_training', - label: 'First Aid Training', - description: 'First Aid Training completed after 2019-01-01', - value: '$.root.training.first_aid', - key: 'first_aid_training', - required: false, - custom_field: true, - consumer_id: 'test_user_id' - } - ], - updated_at: 1616662325753 - } - ] -} as any + status_code: 200, + status: 'OK', + data: [ + { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: + 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: + 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: + 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [[Object]] + } + ], + configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], + resource_schema_support: ['leads'], + resource_settings_support: ['leads'], + validation_support: true, + schema_support: true, + settings_required_for_authorization: ['client_id', 'client_secret'], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: ['crm.contact.created'], + downstream_event_types: ['contacts.CREATED'], + execute_url: + 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } + ] + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = {} as any const current = await vault.connectionsAll(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#connectionsDelete', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() }) it('should call Apideck with expected params', async () => { - const mockedResponse: Record = {}as any + const mockedResponse: Record = {} as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm' -} as any + serviceId: 'pipedrive', + unifiedApi: 'crm' + } as any const current = await vault.connectionsDelete(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#connectionsImport', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}/import' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -538,162 +499,154 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 201, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: [ - 'opportunities', - 'companies', - 'contacts', - 'leads' - ], - resource_schema_support: [ - 'leads' - ], - resource_settings_support: [ - 'leads' - ], - validation_support: true, - schema_support: true, - settings_required_for_authorization: [ - 'client_id', - 'client_secret' - ], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: [ - 'crm.contact.created' - ], - downstream_event_types: [ - 'contacts.CREATED' - ], - execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - custom_mappings: [ - { - id: 'hris+employees+first_aid_training', - label: 'First Aid Training', - description: 'First Aid Training completed after 2019-01-01', - value: '$.root.training.first_aid', - key: 'first_aid_training', - required: false, - custom_field: true, - consumer_id: 'test_user_id' - } - ], - updated_at: 1616662325753 - } -} as any + status_code: 201, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: + 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: + 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: + 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], + resource_schema_support: ['leads'], + resource_settings_support: ['leads'], + validation_support: true, + schema_support: true, + settings_required_for_authorization: ['client_id', 'client_secret'], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: ['crm.contact.created'], + downstream_event_types: ['contacts.CREATED'], + execute_url: + 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm', - connection: { - credentials: { - access_token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c', - refresh_token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.cThIIoDvwdueQB468K5xDc5633seEFoqwxjF_xSJyQQ' - }, - settings: { - instance_url: 'https://eu28.salesforce.com' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - } - } -} as any + serviceId: 'pipedrive', + unifiedApi: 'crm', + connection: { + credentials: { + access_token: + 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c', + refresh_token: + 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.cThIIoDvwdueQB468K5xDc5633seEFoqwxjF_xSJyQQ' + }, + settings: { + instance_url: 'https://eu28.salesforce.com' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + } + } + } as any const current = await vault.connectionsImport(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#connectionsOne', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -701,146 +654,136 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: [ - 'opportunities', - 'companies', - 'contacts', - 'leads' - ], - resource_schema_support: [ - 'leads' - ], - resource_settings_support: [ - 'leads' - ], - validation_support: true, - schema_support: true, - settings_required_for_authorization: [ - 'client_id', - 'client_secret' - ], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: [ - 'crm.contact.created' - ], - downstream_event_types: [ - 'contacts.CREATED' - ], - execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - custom_mappings: [ - { - id: 'hris+employees+first_aid_training', - label: 'First Aid Training', - description: 'First Aid Training completed after 2019-01-01', - value: '$.root.training.first_aid', - key: 'first_aid_training', - required: false, - custom_field: true, - consumer_id: 'test_user_id' - } - ], - updated_at: 1616662325753 - } -} as any + status_code: 200, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: + 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: + 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: + 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], + resource_schema_support: ['leads'], + resource_settings_support: ['leads'], + validation_support: true, + schema_support: true, + settings_required_for_authorization: ['client_id', 'client_secret'], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: ['crm.contact.created'], + downstream_event_types: ['contacts.CREATED'], + execute_url: + 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm' -} as any + serviceId: 'pipedrive', + unifiedApi: 'crm' + } as any const current = await vault.connectionsOne(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#connectionsUpdate', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -848,176 +791,166 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - id: 'crm+salesforce', - service_id: 'salesforce', - name: 'Salesforce', - tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - unified_api: 'crm', - state: 'authorized', - integration_state: 'configured', - auth_type: 'oauth2', - oauth_grant_type: 'authorization_code', - status: 'live', - enabled: true, - website: 'https://www.salesforce.com', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - authorize_url: 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', - revoke_url: 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - form_fields: [ - { - id: 'instance_url', - label: 'Instance url', - value: 'https://eu28.salesforce.com', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: false - }, - { - id: 'api_key', - label: 'API Key', - value: '123455677', - placeholder: '', - mask: false, - type: 'text', - required: true, - disabled: false, - custom_field: false, - sensitive: true - } - ], - configuration: [ - { - resource: 'leads', - defaults: [ - { - target: 'custom_fields', - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - configurable_resources: [ - 'opportunities', - 'companies', - 'contacts', - 'leads' - ], - resource_schema_support: [ - 'leads' - ], - resource_settings_support: [ - 'leads' - ], - validation_support: true, - schema_support: true, - settings_required_for_authorization: [ - 'client_id', - 'client_secret' - ], - subscriptions: [ - { - downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', - unify_event_types: [ - 'crm.contact.created' - ], - downstream_event_types: [ - 'contacts.CREATED' - ], - execute_url: 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', - created_at: '2020-10-01T12:00:00.000Z' - } - ], - has_guide: true, - created_at: 1615563533390, - custom_mappings: [ - { - id: 'hris+employees+first_aid_training', - label: 'First Aid Training', - description: 'First Aid Training completed after 2019-01-01', - value: '$.root.training.first_aid', - key: 'first_aid_training', - required: false, - custom_field: true, - consumer_id: 'test_user_id' - } - ], - updated_at: 1616662325753 - } -} as any + status_code: 200, + status: 'OK', + data: { + id: 'crm+salesforce', + service_id: 'salesforce', + name: 'Salesforce', + tag_line: + 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + unified_api: 'crm', + state: 'authorized', + integration_state: 'configured', + auth_type: 'oauth2', + oauth_grant_type: 'authorization_code', + status: 'live', + enabled: true, + website: 'https://www.salesforce.com', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + authorize_url: + 'https://unify.apideck.com/vault/authorize/salesforce/<application-id>?state=<state>', + revoke_url: + 'https://unify.apideck.com/vault/revoke/salesforce/<application-id>?state=<state>', + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + form_fields: [ + { + id: 'instance_url', + label: 'Instance url', + value: 'https://eu28.salesforce.com', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: false + }, + { + id: 'api_key', + label: 'API Key', + value: '123455677', + placeholder: '', + mask: false, + type: 'text', + required: true, + disabled: false, + custom_field: false, + sensitive: true + } + ], + configuration: [ + { + resource: 'leads', + defaults: [ + { + target: 'custom_fields', + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + configurable_resources: ['opportunities', 'companies', 'contacts', 'leads'], + resource_schema_support: ['leads'], + resource_settings_support: ['leads'], + validation_support: true, + schema_support: true, + settings_required_for_authorization: ['client_id', 'client_secret'], + subscriptions: [ + { + downstream_id: '5f5f5f5f5f5f5f5f5f5f5f5f', + unify_event_types: ['crm.contact.created'], + downstream_event_types: ['contacts.CREATED'], + execute_url: + 'https://unify.apideck.com/webhook/w/{lookupIdToken}/{serviceId}?e={downstreamEventType}', + created_at: '2020-10-01T12:00:00.000Z' + } + ], + has_guide: true, + created_at: 1615563533390, + custom_mappings: [ + { + id: 'hris+employees+first_aid_training', + label: 'First Aid Training', + description: 'First Aid Training completed after 2019-01-01', + value: '$.root.training.first_aid', + key: 'first_aid_training', + required: false, + custom_field: true, + consumer_id: 'test_user_id' + } + ], + updated_at: 1616662325753 + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - serviceId: 'pipedrive', - unifiedApi: 'crm', - connection: { - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com', - api_key: '12345xxxxxx' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' - }, - plan: 'enterprise' - }, - configuration: [ - { - resource: 'leads', - defaults: [ - { - id: 'ProductInterest', - options: [Array], - value: 'GC5000 series' - } - ] - } - ], - custom_mappings: [ - { - value: '$.root.training.first_aid' - } - ] - } -} as any + serviceId: 'pipedrive', + unifiedApi: 'crm', + connection: { + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com', + api_key: '12345xxxxxx' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + configuration: [ + { + resource: 'leads', + defaults: [ + { + id: 'ProductInterest', + options: [Array], + value: 'GC5000 series' + } + ] + } + ], + custom_mappings: [ + { + value: '$.root.training.first_aid' + } + ] + } + } as any const current = await vault.connectionsUpdate(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#consumerRequestCountsAll', () => { const endpoint = '/vault/consumers/{consumer_id}/stats' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -1025,44 +958,46 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - application_id: '1111', - consumer_id: 'test_user_id', - start_datetime: '2021-05-01T12:00:00.000Z', - end_datetime: '2021-05-10T12:00:00.000Z', - aggregated_request_count: 40, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 - } - } -} as any + status_code: 200, + status: 'OK', + data: { + application_id: '1111', + consumer_id: 'test_user_id', + start_datetime: '2021-05-01T12:00:00.000Z', + end_datetime: '2021-05-10T12:00:00.000Z', + aggregated_request_count: 40, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + } + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - consumerId: 'test_user_id', - startDatetime: '2021-05-01T12:00:00.000Z', - endDatetime: '2021-05-30T12:00:00.000Z' -} as any + consumerId: 'test_user_id', + startDatetime: '2021-05-01T12:00:00.000Z', + endDatetime: '2021-05-30T12:00:00.000Z' + } as any const current = await vault.consumerRequestCountsAll(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#consumersAdd', () => { const endpoint = '/vault/consumers' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -1070,89 +1005,89 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - consumer_id: 'test_consumer_id', - application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - connections: [ - { - id: '1111+test_user_id', - name: 'Salesforce', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - website: 'https://www.salesforce.com', - tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - service_id: 'teamleader', - unified_api: 'crm', - consumer_id: 'test_user_id', - auth_type: 'oauth2', - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' + status_code: 200, + status: 'OK', + data: { + consumer_id: 'test_consumer_id', + application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' }, - plan: 'enterprise' - }, - created_at: '2020-09-19T12:18:37.071Z', - updated_at: '2020-09-19T12:18:37.071Z', - state: 'authorized' - } - ], - services: [ - 'salesforce', - 'stripe' - ], - aggregated_request_count: 101, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 - }, - created: '2021-05-07T12:55:42.242Z', - modified: '2021-05-07T12:55:42.242Z', - request_count_updated: '2021-05-07T12:55:42.242Z' - } -} as any + connections: [ + { + id: '1111+test_user_id', + name: 'Salesforce', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + website: 'https://www.salesforce.com', + tag_line: + 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + service_id: 'teamleader', + unified_api: 'crm', + consumer_id: 'test_user_id', + auth_type: 'oauth2', + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + created_at: '2020-09-19T12:18:37.071Z', + updated_at: '2020-09-19T12:18:37.071Z', + state: 'authorized' + } + ], + services: ['salesforce', 'stripe'], + aggregated_request_count: 101, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + }, + created: '2021-05-07T12:55:42.242Z', + modified: '2021-05-07T12:55:42.242Z', + request_count_updated: '2021-05-07T12:55:42.242Z' + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - consumer: { - consumer_id: 'test_consumer_id', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - } - } -} as any + consumer: { + consumer_id: 'test_consumer_id', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + } + } + } as any const current = await vault.consumersAdd(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#consumersAll', () => { const endpoint = '/vault/consumers' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -1160,66 +1095,65 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: [ - { - consumer_id: 'test_consumer_id', - application_id: '1111', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - aggregated_request_count: 101, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 - }, - created: '2021-05-07T12:55:42.242Z', - modified: '2021-05-07T12:55:42.242Z', - request_count_updated: '2021-05-07T12:55:42.242Z', - services: [ - 'salesforce', - 'stripe' - ] - } - ], - meta: { - items_on_page: 50, - cursors: { - previous: 'em9oby1jcm06OnBhZ2U6OjE=', - current: 'em9oby1jcm06OnBhZ2U6OjI=', - next: 'em9oby1jcm06OnBhZ2U6OjM=' - } - }, - links: { - previous: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D', - current: 'https://unify.apideck.com/crm/companies', - next: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM' - } -} as any + status_code: 200, + status: 'OK', + data: [ + { + consumer_id: 'test_consumer_id', + application_id: '1111', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + }, + aggregated_request_count: 101, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + }, + created: '2021-05-07T12:55:42.242Z', + modified: '2021-05-07T12:55:42.242Z', + request_count_updated: '2021-05-07T12:55:42.242Z', + services: ['salesforce', 'stripe'] + } + ], + meta: { + items_on_page: 50, + cursors: { + previous: 'em9oby1jcm06OnBhZ2U6OjE=', + current: 'em9oby1jcm06OnBhZ2U6OjI=', + next: 'em9oby1jcm06OnBhZ2U6OjM=' + } + }, + links: { + previous: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D', + current: 'https://unify.apideck.com/crm/companies', + next: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM' + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = {} as any const current = await vault.consumersAll(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#consumersDelete', () => { const endpoint = '/vault/consumers/{consumer_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -1227,33 +1161,35 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - consumer_id: 'test_consumer_id' - } -} as any + status_code: 200, + status: 'OK', + data: { + consumer_id: 'test_consumer_id' + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - consumerId: 'test_user_id' -} as any + consumerId: 'test_user_id' + } as any const current = await vault.consumersDelete(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#consumersOne', () => { const endpoint = '/vault/consumers/{consumer_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -1261,81 +1197,81 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - consumer_id: 'test_consumer_id', - application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - connections: [ - { - id: '1111+test_user_id', - name: 'Salesforce', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - website: 'https://www.salesforce.com', - tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - service_id: 'teamleader', - unified_api: 'crm', - consumer_id: 'test_user_id', - auth_type: 'oauth2', - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' + status_code: 200, + status: 'OK', + data: { + consumer_id: 'test_consumer_id', + application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' }, - plan: 'enterprise' - }, - created_at: '2020-09-19T12:18:37.071Z', - updated_at: '2020-09-19T12:18:37.071Z', - state: 'authorized' - } - ], - services: [ - 'salesforce', - 'stripe' - ], - aggregated_request_count: 101, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 - }, - created: '2021-05-07T12:55:42.242Z', - modified: '2021-05-07T12:55:42.242Z', - request_count_updated: '2021-05-07T12:55:42.242Z' - } -} as any + connections: [ + { + id: '1111+test_user_id', + name: 'Salesforce', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + website: 'https://www.salesforce.com', + tag_line: + 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + service_id: 'teamleader', + unified_api: 'crm', + consumer_id: 'test_user_id', + auth_type: 'oauth2', + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + created_at: '2020-09-19T12:18:37.071Z', + updated_at: '2020-09-19T12:18:37.071Z', + state: 'authorized' + } + ], + services: ['salesforce', 'stripe'], + aggregated_request_count: 101, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + }, + created: '2021-05-07T12:55:42.242Z', + modified: '2021-05-07T12:55:42.242Z', + request_count_updated: '2021-05-07T12:55:42.242Z' + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - consumerId: 'test_user_id' -} as any + consumerId: 'test_user_id' + } as any const current = await vault.consumersOne(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#consumersUpdate', () => { const endpoint = '/vault/consumers/{consumer_id}' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -1343,90 +1279,90 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - consumer_id: 'test_consumer_id', - application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - connections: [ - { - id: '1111+test_user_id', - name: 'Salesforce', - icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', - logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', - website: 'https://www.salesforce.com', - tag_line: 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', - service_id: 'teamleader', - unified_api: 'crm', - consumer_id: 'test_user_id', - auth_type: 'oauth2', - enabled: true, - settings: { - instance_url: 'https://eu28.salesforce.com' - }, - metadata: { - account: { - name: 'My Company', - id: 'c01458a5-7276-41ce-bc19-639906b0450a' + status_code: 200, + status: 'OK', + data: { + consumer_id: 'test_consumer_id', + application_id: 'dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX', + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' }, - plan: 'enterprise' - }, - created_at: '2020-09-19T12:18:37.071Z', - updated_at: '2020-09-19T12:18:37.071Z', - state: 'authorized' - } - ], - services: [ - 'salesforce', - 'stripe' - ], - aggregated_request_count: 101, - request_counts: { - unify: 100, - proxy: 10, - vault: 21 - }, - created: '2021-05-07T12:55:42.242Z', - modified: '2021-05-07T12:55:42.242Z', - request_count_updated: '2021-05-07T12:55:42.242Z' - } -} as any + connections: [ + { + id: '1111+test_user_id', + name: 'Salesforce', + icon: 'https://res.cloudinary.com/apideck/image/upload/v1529456047/catalog/salesforce/icon128x128.png', + logo: 'https://c1.sfdcstatic.com/content/dam/web/en_us/www/images/home/logo-salesforce-m.svg', + website: 'https://www.salesforce.com', + tag_line: + 'CRM software solutions and enterprise cloud computing from Salesforce, the leader in customer relationship management (CRM) and PaaS. Free 30 day trial.', + service_id: 'teamleader', + unified_api: 'crm', + consumer_id: 'test_user_id', + auth_type: 'oauth2', + enabled: true, + settings: { + instance_url: 'https://eu28.salesforce.com' + }, + metadata: { + account: { + name: 'My Company', + id: 'c01458a5-7276-41ce-bc19-639906b0450a' + }, + plan: 'enterprise' + }, + created_at: '2020-09-19T12:18:37.071Z', + updated_at: '2020-09-19T12:18:37.071Z', + state: 'authorized' + } + ], + services: ['salesforce', 'stripe'], + aggregated_request_count: 101, + request_counts: { + unify: 100, + proxy: 10, + vault: 21 + }, + created: '2021-05-07T12:55:42.242Z', + modified: '2021-05-07T12:55:42.242Z', + request_count_updated: '2021-05-07T12:55:42.242Z' + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - consumerId: 'test_user_id', - consumer: { - metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - } - } -} as any + consumerId: 'test_user_id', + consumer: { + metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + } + } + } as any const current = await vault.consumersUpdate(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#customFieldsAll', () => { const endpoint = '/vault/connections/{unified_api}/{service_id}/{resource}/custom-fields' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -1434,42 +1370,44 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: [ - { - id: '123456', - name: 'SSN', - description: 'Employee Level', - value: '495172776', - finder: "$['data']['custom_fields'][?(@['custom_field_id']===123456)]" - } - ] -} as any + status_code: 200, + status: 'OK', + data: [ + { + id: '123456', + name: 'SSN', + description: 'Employee Level', + value: '495172776', + finder: 'string' + } + ] + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - unifiedApi: 'crm', - serviceId: 'pipedrive', - resource: 'leads' -} as any + unifiedApi: 'crm', + serviceId: 'pipedrive', + resource: 'leads' + } as any const current = await vault.customFieldsAll(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#logsAll', () => { const endpoint = '/vault/logs' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -1477,73 +1415,75 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: [ - { - api_style: 'REST', - base_url: 'unify.apideck.com', - child_request: false, - consumer_id: 'test-consumer', - duration: 2220.379304, - error_message: 'Refresh token is invalid', - execution: 2248, - has_children: false, - http_method: 'GET', - id: '0b5f7480-5550-4f5c-a5fc-3c01ac43dd0f', - latency: '27.620695999999953===', - operation: { - id: 'connectionsAll', - name: 'Get All Connections' - }, - parent_id: '0b5f7480-5550-4f5c-a5fc-3c01ac43dd0f', - path: '/vault/connections', - sandbox: false, - service: { - id: 'apideck-vault', - name: 'Apideck Vault' - }, - source_ip: '94.227.131.238', - status_code: 200, - success: true, - timestamp: '2021-07-12T14:26:17.420Z', - unified_api: 'vault' - } - ], - meta: { - items_on_page: 50, - cursors: { - previous: 'em9oby1jcm06OnBhZ2U6OjE=', - current: 'em9oby1jcm06OnBhZ2U6OjI=', - next: 'em9oby1jcm06OnBhZ2U6OjM=' - } - }, - links: { - previous: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D', - current: 'https://unify.apideck.com/crm/companies', - next: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM' - } -} as any + status_code: 200, + status: 'OK', + data: [ + { + api_style: 'REST', + base_url: 'unify.apideck.com', + child_request: false, + consumer_id: 'test-consumer', + duration: 2220.379304, + error_message: 'Refresh token is invalid', + execution: 2248, + has_children: false, + http_method: 'GET', + id: '0b5f7480-5550-4f5c-a5fc-3c01ac43dd0f', + latency: '27.620695999999953===', + operation: { + id: 'connectionsAll', + name: 'Get All Connections' + }, + parent_id: '0b5f7480-5550-4f5c-a5fc-3c01ac43dd0f', + path: '/vault/connections', + sandbox: false, + service: { + id: 'apideck-vault', + name: 'Apideck Vault' + }, + source_ip: '94.227.131.238', + status_code: 200, + success: true, + timestamp: '2021-07-12T14:26:17.420Z', + unified_api: 'vault' + } + ], + meta: { + items_on_page: 50, + cursors: { + previous: 'em9oby1jcm06OnBhZ2U6OjE=', + current: 'em9oby1jcm06OnBhZ2U6OjI=', + next: 'em9oby1jcm06OnBhZ2U6OjM=' + } + }, + links: { + previous: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D', + current: 'https://unify.apideck.com/crm/companies', + next: 'https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM' + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = {} as any const current = await vault.logsAll(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) describe('#sessionsCreate', () => { const endpoint = '/vault/sessions' const config = { - apiKey: 'REPLACE_WITH_API_KEY', - appId: 'REPLACE_WITH_APP_ID', - consumerId: 'REPLACE_WITH_CONSUMER_ID' -} - const apideck = new Apideck({...config, basePath: basePath}) + apiKey: 'REPLACE_WITH_API_KEY', + appId: 'REPLACE_WITH_APP_ID', + consumerId: 'REPLACE_WITH_CONSUMER_ID' + } + const apideck = new Apideck({ ...config, basePath: basePath }) afterEach(() => { jest.clearAllMocks() @@ -1551,71 +1491,71 @@ describe('VaultApi', () => { it('should call Apideck with expected params', async () => { const mockedResponse: Record = { - status_code: 200, - status: 'OK', - data: { - session_uri: 'http://vault.apideck.com/session/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdW1lcl9pZCI6InRlc3RfdXNlcl9pZCIsImFwcGxpY2F0aW9uX2lkIj', - session_token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdW1lcl9pZCI6InRlc3RfdXNlcl9pZCIsImFwcGxpY2F0aW9uX2lkIj' - } -} as any + status_code: 200, + status: 'OK', + data: { + session_uri: + 'http://vault.apideck.com/session/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdW1lcl9pZCI6InRlc3RfdXNlcl9pZCIsImFwcGxpY2F0aW9uX2lkIj', + session_token: + 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb25zdW1lcl9pZCI6InRlc3RfdXNlcl9pZCIsImFwcGxpY2F0aW9uX2lkIj' + } + } as any - (fetch as jest.MockedFunction).mockResolvedValueOnce(Promise.resolve(new Response(JSON.stringify(mockedResponse)))); + ;(fetch as jest.MockedFunction).mockResolvedValueOnce( + Promise.resolve(new Response(JSON.stringify(mockedResponse))) + ) - const { vault } = apideck; + const { vault } = apideck const params = { - session: { - consumer_metadata: { - account_name: 'SpaceX', - user_name: 'Elon Musk', - email: 'elon@musk.com', - image: 'https://www.spacex.com/static/images/share.jpg' - }, - redirect_uri: 'https://mysaas.com/dashboard', - settings: { - unified_apis: [ - 'crm' - ], - hide_resource_settings: false, - sandbox_mode: false, - isolation_mode: false, - session_length: '30m', - show_logs: true, - show_suggestions: false, - show_sidebar: true, - auto_redirect: false, - hide_guides: false, - allow_actions: [ - 'delete' - ] - }, - theme: { - favicon: 'https://res.cloudinary.com/apideck/icons/intercom', - logo: 'https://res.cloudinary.com/apideck/icons/intercom', - primary_color: '#286efa', - sidepanel_background_color: '#286efa', - sidepanel_text_color: '#FFFFFF', - vault_name: 'Intercom', - privacy_url: 'https://compliance.apideck.com/privacy-policy', - terms_url: 'https://www.termsfeed.com/terms-conditions/957c85c1b089ae9e3219c83eff65377e' - }, - custom_consumer_settings: { - feature_flag_1: true, - tax_rates: [ - { - id: '6', - label: '6%' - }, - { - id: '21', - label: '21%' + session: { + consumer_metadata: { + account_name: 'SpaceX', + user_name: 'Elon Musk', + email: 'elon@musk.com', + image: 'https://www.spacex.com/static/images/share.jpg' + }, + redirect_uri: 'https://mysaas.com/dashboard', + settings: { + unified_apis: ['crm'], + hide_resource_settings: false, + sandbox_mode: false, + isolation_mode: false, + session_length: '30m', + show_logs: true, + show_suggestions: false, + show_sidebar: true, + auto_redirect: false, + hide_guides: false, + allow_actions: ['delete'] + }, + theme: { + favicon: 'https://res.cloudinary.com/apideck/icons/intercom', + logo: 'https://res.cloudinary.com/apideck/icons/intercom', + primary_color: '#286efa', + sidepanel_background_color: '#286efa', + sidepanel_text_color: '#FFFFFF', + vault_name: 'Intercom', + privacy_url: 'https://compliance.apideck.com/privacy-policy', + terms_url: 'https://www.termsfeed.com/terms-conditions/957c85c1b089ae9e3219c83eff65377e' + }, + custom_consumer_settings: { + feature_flag_1: true, + tax_rates: [ + { + id: '6', + label: '6%' + }, + { + id: '21', + label: '21%' + } + ] + } } - ] - } - } -} as any + } as any const current = await vault.sessionsCreate(params) - expect(fetch).toHaveBeenCalledTimes(1); - }); - }); -}); + expect(fetch).toHaveBeenCalledTimes(1) + }) + }) +})