Skip to content

Commit

Permalink
Automated update by SDK Generator (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklloyd authored Oct 22, 2024
1 parent 4be47b2 commit 2d3c66e
Show file tree
Hide file tree
Showing 709 changed files with 3,577 additions and 2,325 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apideck/node",
"version": "3.4.2",
"version": "3.4.3",
"description": "Apideck Node.js SDK",
"keywords": [
"apideck",
Expand Down
2 changes: 1 addition & 1 deletion src/Apideck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class Apideck {
'x-apideck-app-id': config.appId,
'x-apideck-consumer-id': config.consumerId || '',
'x-apideck-service-id': config?.serviceId || '',
'user-agent': 'Apideck-node-sdk/3.4.2 Unify-spec/10.7.5'
'user-agent': 'Apideck-node-sdk/3.4.3 Unify-spec/10.7.7'
}
})

Expand Down
14 changes: 14 additions & 0 deletions src/gen/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,18 @@ BalanceSheet.md
BalanceSheetAccount.md
BalanceSheetAccountRecord.md
BalanceSheetAccounts.md
BalanceSheetAssetsAccount.md
BalanceSheetEquityAccount.md
BalanceSheetFilter.md
BalanceSheetLiabilitiesAccount.md
BalanceSheetReports.md
BalanceSheetUncategorizedItemsAccount.md
BankAccount.md
Benefit.md
Bill.md
BillLineItem.md
BillPayment.md
BillPaymentAllocations.md
BillsFilter.md
BillsSort.md
Branch.md
Expand Down Expand Up @@ -346,6 +351,7 @@ GetCreditNoteResponse.md
GetCreditNotesResponse.md
GetCustomFieldsResponse.md
GetCustomMappingResponse.md
GetCustomMappingsResponse.md
GetCustomerResponse.md
GetCustomersResponse.md
GetDepartmentResponse.md
Expand Down Expand Up @@ -696,6 +702,7 @@ VaultApi.md
VaultApiTest.api.test.ts
VaultEventType.md
VirtualWebhooks.md
VirtualWebhooksResources.md
WalletDetails.md
Webhook.md
WebhookApi.md
Expand Down Expand Up @@ -762,13 +769,18 @@ models/BalanceSheet.ts
models/BalanceSheetAccount.ts
models/BalanceSheetAccountRecord.ts
models/BalanceSheetAccounts.ts
models/BalanceSheetAssetsAccount.ts
models/BalanceSheetEquityAccount.ts
models/BalanceSheetFilter.ts
models/BalanceSheetLiabilitiesAccount.ts
models/BalanceSheetReports.ts
models/BalanceSheetUncategorizedItemsAccount.ts
models/BankAccount.ts
models/Benefit.ts
models/Bill.ts
models/BillLineItem.ts
models/BillPayment.ts
models/BillPaymentAllocations.ts
models/BillsFilter.ts
models/BillsSort.ts
models/Branch.ts
Expand Down Expand Up @@ -1046,6 +1058,7 @@ models/GetCreditNoteResponse.ts
models/GetCreditNotesResponse.ts
models/GetCustomFieldsResponse.ts
models/GetCustomMappingResponse.ts
models/GetCustomMappingsResponse.ts
models/GetCustomerResponse.ts
models/GetCustomersResponse.ts
models/GetDepartmentResponse.ts
Expand Down Expand Up @@ -1385,6 +1398,7 @@ models/ValidateConnectionStateResponse.ts
models/ValidateConnectionStateResponseData.ts
models/VaultEventType.ts
models/VirtualWebhooks.ts
models/VirtualWebhooksResources.ts
models/WalletDetails.ts
models/Webhook.ts
models/WebhookEvent.ts
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/AccountingApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/AtsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/ConnectorApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
9 changes: 7 additions & 2 deletions src/gen/apis/CrmApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down Expand Up @@ -253,6 +253,7 @@ export interface CrmApiContactsOneRequest {
serviceId?: string
raw?: boolean
fields?: string | null
filter?: ContactsFilter
}

export interface CrmApiContactsUpdateRequest {
Expand Down Expand Up @@ -1487,6 +1488,10 @@ export class CrmApi extends runtime.BaseAPI {
queryParameters['fields'] = requestParameters.fields
}

if (requestParameters.filter !== undefined) {
queryParameters['filter'] = requestParameters.filter
}

const headerParameters: runtime.HTTPHeaders = {}

if (requestParameters.consumerId !== undefined && requestParameters.consumerId !== null) {
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/EcommerceApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/FileStorageApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/HrisApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/IssueTrackingApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/LeadApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/PosApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
4 changes: 2 additions & 2 deletions src/gen/apis/SmsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.7.5
*
* The version of the OpenAPI document: 10.7.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
Expand Down
Loading

0 comments on commit 2d3c66e

Please sign in to comment.